ÿØÿÛ C 

ÿØÿÛ C 

@import "../scss/variable.scss";

.news-details-left-section {
    .news-details-img {
        width: 100%;
        height: 460px;
        @media (max-width: 767px) {
            height: 315px;
        }
    }

    .tags {
        .tag {
            padding: 8px 25px;
            border: 1px solid $gray-200;
            border-radius: 5px;
            background-color: $white;

            a {
                color: $gray;
            }

            &:hover,
            .active {
                background-color: $primary;

                a {
                    color: $white !important;
                }
            }
        }
    }

    .comment-section {
        border-top: 1px solid $gray-200;
        border-bottom: 1px solid $gray-200;

        .comment-box {
            border-bottom: 1px solid $gray-200;

            .media {
                .media-img {
                    width: 50px;
                    height: 50px;
                    min-width: 50px;
                    border-radius: 50px;
                }
            }
        }
    }

    .post-comment-section {
        .form-control {
            padding: 18px 25px;
            border: 1px solid $gray-200;
            outline: 0;
            @media (max-width: 480px) {
                padding: 14px 20px;
            }

            &:focus {
                box-shadow: none;
            }
        }
    }
}
