/* ========================================
   BLOG PAGES - COMPLETE PREMIUM STYLES
======================================== */

/* Blog Listing Hero */
.blog-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/hero-slider-2.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 100px;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.9) 0%, rgba(10, 85, 82, 0.85) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: #C9A961;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.blog-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.blog-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 50px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}



/* Blog Card Modern */
.blog-card-modern {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
     box-shadow: 0 25px 60px rgb(0 0 0 / 4%);
    border-color: #C9A961;
    border-radius: 6px;
}



.blog-card-modern:hover::before {
    width: 100%;
}



.blog-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: rgb(27 30 30 / 44%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
   
}

.blog-card-modern:hover .blog-card-overlay {
    opacity: 1;
}

.read-more-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}


.read-more-icon i {
    font-size: 16px;
    color: #ffffff;
}

.blog-card-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(201, 169, 97, 0.95);
    color: #ffffff;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    z-index: 2;
}

.blog-card-body {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: #C9A961;
}

.blog-card-title {
    margin-bottom: 15px;
}
.blog-detail-section p{
    font-size:16px;
    color: #444;
        font-weight: 400;
}

.blog-card-title a {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card-title a:hover {
    color: #0d6b68;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d6b68;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    
    position: relative;
}

.blog-card-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A961;
    
}


.blog-card-link:hover {
    color: #C9A961;
  
}

/* Empty Blogs */
.empty-blogs {
    padding: 100px 0;
}

.empty-icon i {
    font-size: 72px;
    color: #ddd;
}

.empty-title {
    font-size: 28px;
    color: #666;
    margin-bottom: 12px;
}

.empty-text {
    font-size: 16px;
    color: #999;
}

/* ========================================
   BLOG DETAIL PAGE
======================================== */

/* Blog Detail Hero */
.blog-detail-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
}

.blog-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.88) 0%, rgba(10, 85, 82, 0.88) 100%);
    z-index: 1;
}

.blog-detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.blog-detail-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.meta-category {
    background: rgba(201, 169, 97, 0.3);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-separator {
    color: rgba(255, 255, 255, 0.5);
}

.blog-detail-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.blog-detail-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
}

.blog-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail-breadcrumb a:hover {
    color: #C9A961;
}

.blog-detail-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.blog-detail-breadcrumb .current {
    color: #C9A961;
}

/* Blog Detail Content */
.blog-detail-section {
    padding: 50px 0;
    background: #ffffff;
}
.wp-block-heading{
     font-size: 22px;   
}
.blog-detail-section .wp-block-heading b, .blog-detail-section .wp-block-heading strong {
    font-size: 22px; 
}

.blog-detail-section  b, strong {
font-weight: 600;
}

.blog-detail-article {
    background: #ffffff;
}

.blog-detail-featured-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
   
}

.blog-detail-featured-image img {
    width: 100%;
    height: auto;
}

.blog-detail-content-wrapper {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}


.blog-detail-content-wrapper h3,
.blog-detail-content-wrapper h4 {
   color: #1a1a1a;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
}
.blog-detail-content-wrapper h2{
        font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
}

.blog-detail-content-wrapper p {
    margin-bottom: 20px;
}

.blog-detail-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
}

.blog-detail-content-wrapper ul,
.blog-detail-content-wrapper ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.blog-detail-content-wrapper li {
    margin-bottom: 10px;
}

/* Blog Footer */
.blog-detail-footer {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 30px;
}

.blog-detail-tags,
.blog-detail-share {
    flex: 1;
    min-width: 200px;
}

.tags-title,
.share-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: rgba(13, 107, 104, 0.08);
    color: #0d6b68;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(13, 107, 104, 0.2);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.blog-detail-navigation {
    margin-top: 40px;
}

.btn-back-to-blogs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0d6b68 0%, #0a5552 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    
   
}

.btn-back-to-blogs:hover {
    background: linear-gradient(135deg, #C9A961 0%, #8C6842 100%);
   
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}


.sidebar-widget {
   background: #ffffff;
    padding: 30px;
    border-radius: 12px;
   
    margin-bottom: 30px;
        border: 1px solid rgb(231 216 184);
}
.share-buttons a:hover {
    color: #ffffff !important;
}
.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.widget-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #C9A961;
}

/* Related Posts */
.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post-item {
    display: flex;
    gap: 15px;
}

.related-post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.related-post-item:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content {
    flex: 1;
}

.related-post-date {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.related-post-date i {
    color: #C9A961;
}

.related-post-title a {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    transition: all 0.3s ease;
}

.related-post-title a:hover {
    color: #0d6b68;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud-item {
    background: rgba(13, 107, 104, 0.05);
    color: #0d6b68;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(13, 107, 104, 0.15);
    transition: all 0.3s ease;
}

.tag-cloud-item:hover {
    background: #0d6b68;
    color: #ffffff;
    border-color: #0d6b68;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #0d6b68 0%, #0a5552 100%);
    position: relative;
    overflow: hidden;
}

.cta-widget::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
}

.cta-widget-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cta-icon i {
    font-size: 32px;
    color: #C9A961;
}

.cta-widget-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-widget-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-widget-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #C9A961;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-widget-btn:hover {
    background: #ffffff;
    color: #0d6b68;
   
}

/* Responsive Blog Details */
@media (max-width: 991px) {
    .blog-hero-title {
        font-size: 42px;
    }
    
    .blog-grid-section {
        padding: 50px 0;
    }
    
    .blog-card-image {
        height: 240px;
    }
    
    .blog-detail-hero {
        min-height: 400px;
        padding: 150px 0 80px;
    }
    
    .blog-detail-title {
        font-size: 36px;
    }
    
    .blog-detail-section {
        padding: 50px 0;
    }
    
    .blog-sidebar {
        position: static;
        
    }
}

@media (max-width: 767px) {
    .blog-hero-section {
        min-height: 350px;
        padding: 130px 0 80px;
    }
    
    .blog-hero-title {
        font-size: 32px;
    }
    
    .blog-hero-desc {
        font-size: 16px;
    }
    
    .blog-grid-section {
        padding: 30px 0;
    }
    
    .blog-card-image {
        height: 220px;
    }
    
    .blog-card-body {
        padding: 20px 18px;
    }
    
    .blog-detail-hero {
        min-height: 350px;
        padding: 130px 0 60px;
    }
    
    .blog-detail-meta-top {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-detail-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .blog-detail-section {
        padding: 30px 0;
    }
    .blog-detail-featured-image {
    margin-bottom: 30px;
   
   
}

    
    .blog-detail-content-wrapper {
        font-size: 16px;
    }
    
    .blog-detail-footer {
        flex-direction: column;
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
    }
    
    .widget-title {
        font-size: 18px;
    }
}
.cta-widget .cta-widget-text{
    font-size: 16px;
    color: #ffffff !important;
}