/*
* Premium Blog Styles for YASHODA ORGANIC
* Modern, professional design with animations and effects
*/

/* Base Styles & Variables */
:root {
    --primary-color: #1e8c0e;
    --primary-light: #36b526;
    --primary-dark: #2a6e20;
    --accent-color: #ffb300;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Hero Section */
.yo-blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/blog/blog-hero.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    position: relative;
    margin-bottom: 50px;
}

.yo-blog-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.yo-blog-hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.yo-blog-search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.yo-blog-search input {
    width: 100%;
    height: 60px;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    outline: none;
}

.yo-blog-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 50px;
    width: 50px;
    border: none;
    border-radius: 50%;
    background-color: #8BC34A;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.yo-blog-search button:hover {
    background-color: #689F38;
}

/* Main Blog Content */
.yo-blog-main {
    padding: 0 0 80px;
    background-color: var(--background-light);
}

.yo-section-title {
    position: relative;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    padding-bottom: 15px;
}

.yo-section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #8BC34A;
}

.text-center .yo-section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Featured Posts Slider */
.yo-featured-posts-wrapper {
    margin-bottom: 50px;
    overflow: hidden;
}

.yo-featured-posts-slider {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.yo-featured-post {
    display: flex !important;
    flex-direction: row;
    background: #fff;
    height: 480px;
}

.yo-featured-post-image {
    flex: 0 0 55%;
    overflow: hidden;
}

.yo-featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.yo-featured-post:hover .yo-featured-post-image img {
    transform: scale(1.05);
}

.yo-featured-post-content {
    flex: 0 0 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yo-post-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: #8BC34A;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 15px;
}

.yo-post-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #333;
}

.yo-post-excerpt {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.yo-post-meta {
    margin-bottom: 20px;
    color: #888;
    font-size: 14px;
}

.yo-post-meta span {
    margin-right: 15px;
}

.yo-post-meta i {
    margin-right: 5px;
    color: #8BC34A;
}

.yo-post-link {
    display: inline-block;
    color: #8BC34A;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
}

.yo-post-link:hover {
    color: #689F38;
}

.yo-post-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.yo-post-link:hover i {
    transform: translateX(5px);
}

/* Slick Slider Customization */
.yo-featured-posts-slider .slick-prev,
.yo-featured-posts-slider .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s;
}

.yo-featured-posts-slider .slick-prev {
    left: 20px;
}

.yo-featured-posts-slider .slick-next {
    right: 20px;
}

.yo-featured-posts-slider .slick-prev:hover,
.yo-featured-posts-slider .slick-next:hover {
    background: #fff;
}

.yo-featured-posts-slider .slick-dots {
    bottom: 20px;
}

.yo-featured-posts-slider .slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.7;
}

.yo-featured-posts-slider .slick-dots li.slick-active button:before {
    color: #8BC34A;
    opacity: 1;
}

/* Blog Posts */
.yo-blog-posts {
    margin-bottom: 40px;
}

.yo-blog-post {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.yo-blog-post:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.yo-blog-post-image {
    position: relative;
    overflow: hidden;
}

.yo-blog-post-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.yo-blog-post:hover .yo-blog-post-image img {
    transform: scale(1.05);
}

.yo-post-date {
    position: absolute;
    right: 20px;
    bottom: -20px;
    background: #8BC34A;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    padding-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.yo-post-date .day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.yo-post-date .month {
    font-size: 14px;
    text-transform: uppercase;
}

.yo-blog-post-content {
    padding: 30px;
}

.yo-post-categories {
    margin-bottom: 10px;
}

.yo-post-categories a {
    color: #8BC34A;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.yo-post-categories a:hover {
    color: #689F38;
}

.yo-blog-post-title {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.yo-blog-post-title a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.yo-blog-post-title a:hover {
    color: #8BC34A;
}

.yo-read-more {
    display: inline-block;
    margin-top: 15px;
    color: #8BC34A;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.yo-read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.yo-read-more:hover {
    color: #689F38;
}

.yo-read-more:hover i {
    transform: translateX(5px);
}

/* Blog Pagination */
.yo-blog-pagination {
    text-align: center;
    margin-top: 40px;
}

.yo-blog-pagination ul {
    display: inline-flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.yo-blog-pagination ul li {
    margin: 0 5px;
}

.yo-blog-pagination ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #f5f5f5;
    color: #666;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.yo-blog-pagination ul li a:hover,
.yo-blog-pagination ul li a.active {
    background: #8BC34A;
    color: #fff;
}

/* Sidebar */
.yo-blog-sidebar {
    position: sticky;
    top: 100px;
}

.yo-sidebar-widget {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.yo-widget-title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.yo-widget-title:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #8BC34A;
}

.yo-about-widget img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.yo-social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    color: #666;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.yo-social-links a:hover {
    background: #8BC34A;
    color: #fff;
}

.yo-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yo-category-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.yo-category-list li:last-child {
    border-bottom: none;
}

.yo-category-list li a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.yo-category-list li a:hover {
    color: #8BC34A;
}

.yo-category-list li a span {
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    transition: all 0.3s;
}

.yo-category-list li a:hover span {
    background: #8BC34A;
    color: #fff;
}

.yo-popular-posts {
    display: flex;
    flex-direction: column;
}

.yo-popular-post {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.yo-popular-post:last-child {
    border-bottom: none;
}

.yo-popular-post-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.yo-popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.yo-popular-post:hover .yo-popular-post-image img {
    transform: scale(1.05);
}

.yo-popular-post-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.yo-popular-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.yo-popular-post-content h4 a:hover {
    color: #8BC34A;
}

.yo-newsletter-widget {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    color: #fff;
}

.yo-newsletter-widget .yo-widget-title {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.yo-newsletter-widget .yo-widget-title:after {
    background: #fff;
}

.yo-newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.9);
}

.yo-newsletter-form button {
    width: 100%;
    padding: 12px;
    border: 2px solid #fff;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.yo-newsletter-form button:hover {
    background: #f2f2f2;
}

.yo-tags-cloud {
    display: flex;
    flex-wrap: wrap;
}

.yo-tags-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f5f5;
    color: #666;
    border-radius: 20px;
    margin: 0 8px 8px 0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.yo-tags-cloud a:hover {
    background: #8BC34A;
    color: #fff;
}

/* Authors Section */
.yo-blog-authors-section {
    background: #f9f9f9;
    padding: 80px 0;
    margin-bottom: 60px;
}

.yo-blog-authors {
    margin-top: 40px;
}

.yo-blog-author {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    margin: 10px;
    transition: all 0.3s;
}

.yo-blog-author:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.yo-author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid rgba(139, 195, 74, 0.2);
}

.yo-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yo-author-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.yo-author-role {
    color: #8BC34A;
    font-weight: 600;
    margin-bottom: 15px;
}

.yo-author-bio {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.yo-author-social a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: #f5f5f5;
    color: #666;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s;
    text-decoration: none;
}

.yo-author-social a:hover {
    background: #8BC34A;
    color: #fff;
}

/* Newsletter Section */
.yo-blog-newsletter-section {
    margin-bottom: 60px;
}

.yo-blog-newsletter-container {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    border-radius: 10px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.yo-newsletter-content {
    color: #fff;
}

.yo-newsletter-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.yo-newsletter-form-inline {
    display: flex;
    margin-top: 20px;
}

.yo-newsletter-form-inline input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    border: none;
    border-radius: 25px 0 0 25px;
    background: rgba(255, 255, 255, 0.9);
}

.yo-newsletter-form-inline button {
    height: 50px;
    padding: 0 25px;
    border: none;
    border-radius: 0 25px 25px 0;
    background: #fff;
    color: #8BC34A;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.yo-newsletter-form-inline button:hover {
    background: #f2f2f2;
}

/* Setup Notice Styles */
.yo-blog-setup-notice {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 0 0 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FFC107;
}

.yo-notice-icon {
    background: #FFC107;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.yo-blog-setup-notice h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.yo-notice-steps {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.yo-blog-preview {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px dashed #ccc;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .yo-featured-post {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .yo-blog-hero {
        padding: 80px 0;
    }
    
    .yo-blog-hero-title {
        font-size: 40px;
    }
    
    .yo-featured-post {
        flex-direction: column;
        height: auto;
    }
    
    .yo-featured-post-image, 
    .yo-featured-post-content {
        flex: 0 0 100%;
    }
    
    .yo-featured-post-image img {
        height: 350px;
    }
    
    .yo-blog-sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .yo-blog-hero {
        padding: 60px 0;
    }
    
    .yo-blog-hero-title {
        font-size: 32px;
    }
    
    .yo-blog-hero-subtitle {
        font-size: 18px;
    }
    
    .yo-blog-search input {
        height: 50px;
    }
    
    .yo-blog-search button {
        height: 40px;
        width: 40px;
        right: 5px;
        top: 5px;
    }
    
    .yo-featured-post-content {
        padding: 25px;
    }
    
    .yo-post-title {
        font-size: 24px;
    }
    
    .yo-blog-newsletter-container {
        padding: 30px;
    }
    
    .yo-newsletter-form-inline {
        flex-direction: column;
    }
    
    .yo-newsletter-form-inline input,
    .yo-newsletter-form-inline button {
        width: 100%;
        border-radius: 25px;
    }
    
    .yo-newsletter-form-inline button {
        margin-top: 15px;
    }
} 

/* Blog Single Post Styles */
.yo-blog-page-title {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/blog/blog-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.yo-blog-page-title h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.yo-blog-breadcrumb {
    font-size: 14px;
}

.yo-blog-breadcrumb a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.yo-blog-breadcrumb a:hover {
    opacity: 1;
}

.yo-blog-breadcrumb span {
    opacity: 1;
}

.yo-blog-single {
    padding: 0 0 80px;
    background-color: var(--background-light);
}

.yo-blog-single-post {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
}

.yo-post-featured-image {
    position: relative;
    overflow: hidden;
}

.yo-post-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.yo-blog-single-post .yo-post-meta {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
}

.yo-post-content {
    padding: 30px;
    color: var(--text-color);
    line-height: 1.8;
}

.yo-post-content h1,
.yo-post-content h2,
.yo-post-content h3,
.yo-post-content h4,
.yo-post-content h5,
.yo-post-content h6 {
    margin: 30px 0 15px;
    color: var(--text-color);
}

.yo-post-content p {
    margin-bottom: 20px;
}

.yo-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.yo-post-content blockquote {
    margin: 30px 0;
    padding: 20px 30px 20px 60px;
    background-color: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    position: relative;
}

.yo-post-content blockquote::before {
    content: "\f10d";
    font-family: FontAwesome;
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 24px;
}

.yo-post-tags {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
}

.yo-tag-label {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 10px;
}

.yo-post-tags a {
    display: inline-block;
    background-color: #f5f5f5;
    padding: 4px 12px;
    margin-right: 8px;
    border-radius: 3px;
    color: var(--text-light);
    font-size: 13px;
    transition: var(--transition);
}

.yo-post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.yo-post-share {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.yo-share-label {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 15px;
}

.yo-post-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    font-size: 14px;
    transition: var(--transition);
}

.yo-post-share a.facebook {
    background-color: #3b5998;
}

.yo-post-share a.twitter {
    background-color: #1da1f2;
}

.yo-post-share a.pinterest {
    background-color: #bd081c;
}

.yo-post-share a.linkedin {
    background-color: #0077b5;
}

.yo-post-share a:hover {
    transform: translateY(-3px);
}

.yo-post-author-bio {
    padding: 30px;
    display: flex;
    border-top: 1px solid var(--border-color);
    background-color: #f9f9f9;
}

.yo-author-avatar {
    flex: 0 0 100px;
    margin-right: 20px;
}

.yo-author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.yo-author-info {
    flex: 1;
}

.yo-author-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.yo-author-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.yo-author-description {
    margin-bottom: 15px;
}

.yo-author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text-color);
    margin-right: 8px;
    transition: var(--transition);
}

.yo-author-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Related Posts */
.yo-related-posts {
    margin-bottom: 40px;
}

.yo-related-post {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.yo-related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.yo-related-post-image {
    position: relative;
    overflow: hidden;
}

.yo-related-post-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.yo-related-post:hover .yo-related-post-image img {
    transform: scale(1.05);
}

.yo-related-post-title {
    padding: 15px 15px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.yo-related-post-title a {
    color: var(--text-color);
    transition: var(--transition);
}

.yo-related-post-title a:hover {
    color: var(--primary-color);
}

.yo-related-post-excerpt {
    padding: 0 15px 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Comments Section */
.yo-comments-section {
    margin-bottom: 40px;
}

.yo-comments-list {
    margin-bottom: 40px;
}

.yo-comment {
    display: flex;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.yo-comment.yo-comment-reply {
    margin-left: 60px;
    background-color: #f9f9f9;
}

.yo-comment-avatar {
    flex: 0 0 60px;
    margin-right: 20px;
}

.yo-comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.yo-comment-content {
    flex: 1;
}

.yo-comment-meta {
    margin-bottom: 10px;
}

.yo-comment-author {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.yo-comment-date {
    font-size: 14px;
    color: var(--text-light);
}

.yo-comment-text {
    margin-bottom: 15px;
}

.yo-comment-reply a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.yo-comment-reply a:hover {
    color: var(--primary-dark);
}

.yo-comment-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.yo-comment-form .form-group {
    margin-bottom: 20px;
}

.yo-comment-form .form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.yo-comment-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(30, 140, 14, 0.1);
}

.yo-comment-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.yo-comment-submit:hover {
    background-color: var(--primary-dark);
} 