/* ========================================
   NEWS DETAIL PAGE - CHI TIẾT TIN TỨC
   ======================================== */

.news-detail-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0 30px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-green);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item:hover {
    color: var(--color-green-light);
}

.breadcrumb-separator {
    color: #ccc;
    font-weight: 300;
}

.breadcrumb-current {
    color: #888;
    font-weight: 400;
}

/* ========================================
   ARTICLE LAYOUT
   ======================================== */
.news-detail-article {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ========================================
   ARTICLE HEADER
   ======================================== */
.article-header {
    padding: 50px 60px 30px;
    text-align: center;
}

.article-category {
    margin-bottom: 20px;
}

.category-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-badge.project {
    background: linear-gradient(135deg, #e8f5f0, #d4ebe3);
    color: var(--color-green);
    border: 2px solid var(--color-green-light);
}

.category-badge.product {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    border: 2px solid #ffb74d;
}

.category-badge.event {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #6a1b9a;
    border: 2px solid #ba68c8;
}

.category-badge.media {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    color: #c2185b;
    border: 2px solid #f06292;
}

.article-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-green);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.meta-item svg {
    color: var(--color-green-light);
}

/* ========================================
   FEATURED IMAGE
   ======================================== */
.article-featured-image {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    object-fit: cover;
    /* border-radius: 24px; */
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 30px;
    background: linear-gradient(to top, rgba(2, 67, 47, 0.9), transparent);
    color: white;
    font-size: 0.9rem;
    font-style: italic;
}

/* ========================================
   ARTICLE CONTENT
   ======================================== */
.article-content {
    padding: 50px 60px;
    line-height: 1.9;
    color: #333;
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-green);
    margin-bottom: 30px;
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(73, 136, 81, 0.05), rgba(2, 67, 47, 0.05));
    border-left: 5px solid var(--color-green);
    border-radius: 0 10px 10px 0;
}

.article-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: justify;
}

.article-subheading {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--color-green);
    font-weight: 700;
    margin: 40px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   ARTICLE HIGHLIGHT BOX
   ======================================== */
.article-highlight {
    display: flex;
    gap: 20px;
    padding: 30px;
    margin: 35px 0;
    background: linear-gradient(135deg, #f0f9f4, #e8f5f0);
    border-radius: 15px;
    border-left: 5px solid var(--color-green-light);
}

.article-highlight svg {
    flex-shrink: 0;
    color: var(--color-green-light);
}

.article-highlight p {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-green);
}

/* ========================================
   STATISTICS SECTION
   ======================================== */
.article-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin: 40px 0;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(2, 67, 47, 0.03), rgba(73, 136, 81, 0.03));
    border-radius: 15px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(2, 67, 47, 0.15);
}

.stat-number {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-green);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.article-quote {
    position: relative;
    padding: 40px 50px 40px 90px;
    margin: 40px 0;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    border-radius: 15px;
    color: white;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    color: rgba(255, 255, 255, 0.3);
}

.article-quote p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
    color: white;
}

.article-quote cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
}

/* ========================================
   ARTICLE FOOTER
   ======================================== */
.article-footer {
    padding: 40px 60px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.article-tags svg {
    color: var(--color-green);
}

.tag {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border: 2px solid var(--color-green-light);
    border-radius: 20px;
    color: var(--color-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background: var(--color-green);
    color: white;
    transform: translateY(-2px);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.share-label {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #0d5bbd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.share-btn.zalo {
    background: #0180c7;
    color: white;
}

.share-btn.zalo:hover {
    background: #016299;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(1, 128, 199, 0.4);
}

/* ========================================
   RELATED NEWS SECTION
   ======================================== */
.related-news {
    margin: 60px 0;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--color-green);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(2, 67, 47, 0.15);
}

.related-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-image {
    height: 220px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-item:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 25px;
}

.related-date {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}

.related-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--color-green);
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.related-item:hover .related-title {
    color: var(--color-green-light);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    margin: 80px 0 40px;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-light) 100%);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-cta.primary {
    background: white;
    color: var(--color-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta.secondary:hover {
    background: white;
    color: var(--color-green);
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE - TABLET (< 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .article-header {
        padding: 40px 40px 25px;
    }

    .article-content {
        padding: 40px;
    }

    .article-footer {
        padding: 30px 40px;
    }

    .article-featured-image {
        min-height: 350px;
        max-height: 500px;
    }

    .article-featured-image img {
        min-height: 350px;
        max-height: 500px;
    }

    .article-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
}

/* ========================================
   RESPONSIVE - TABLET (< 768px)
   ======================================== */
@media (max-width: 768px) {
    .news-detail-wrapper {
        padding: 30px 20px;
    }

    .breadcrumb {
        font-size: 0.8rem;
        padding: 10px 0 20px;
    }

    .article-header {
        padding: 30px 25px 20px;
    }

    .article-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .article-meta {
        gap: 20px;
    }

    .article-featured-image {
        min-height: 280px;
        max-height: 400px;
    }

    .article-featured-image img {
        min-height: 280px;
        max-height: 400px;
    }

    .article-content {
        padding: 30px 25px;
    }

    .article-lead {
        font-size: 1.1rem;
        padding: 20px;
    }

    .article-content p {
        font-size: 1rem;
    }

    .article-subheading {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }

    .article-highlight {
        flex-direction: column;
        padding: 25px;
    }

    .article-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .article-quote {
        padding: 30px 30px 30px 70px;
    }

    .quote-icon {
        width: 36px;
        height: 36px;
        top: 25px;
        left: 20px;
    }

    .article-quote p {
        font-size: 1.1rem;
    }

    .article-footer {
        padding: 25px;
    }

    .article-tags {
        gap: 10px;
    }

    .tag {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .cta-section {
        margin: 60px 0 30px;
        padding: 60px 30px;
    }

    .cta-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta {
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (< 480px)
   ======================================== */
@media (max-width: 480px) {
    .news-detail-wrapper {
        padding: 20px 15px;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    .article-header {
        padding: 25px 20px 15px;
    }

    .category-badge {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .article-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .meta-item {
        font-size: 0.85rem;
    }

    .article-featured-image {
        min-height: 240px;
        max-height: 350px;
    }

    .article-featured-image img {
        min-height: 240px;
        max-height: 350px;
    }

    .image-caption {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .article-content {
        padding: 25px 20px;
    }

    .article-lead {
        font-size: 1rem;
        padding: 18px;
    }

    .article-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .article-subheading {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }

    .article-highlight {
        padding: 20px;
        margin: 25px 0;
    }

    .article-highlight p {
        font-size: 1rem;
    }

    .article-stats {
        padding: 25px 15px;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .article-quote {
        padding: 25px 20px 25px 60px;
        margin: 30px 0;
    }

    .quote-icon {
        width: 32px;
        height: 32px;
        top: 20px;
        left: 15px;
    }

    .article-quote p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .article-quote cite {
        font-size: 0.85rem;
    }

    .article-footer {
        padding: 20px;
    }

    .article-tags {
        gap: 8px;
    }

    .tag {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    .article-share {
        gap: 12px;
    }

    .share-label {
        font-size: 0.85rem;
    }

    .share-btn {
        width: 40px;
        height: 40px;
    }

    .share-btn svg {
        width: 18px;
        height: 18px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .related-image {
        height: 180px;
    }

    .related-content {
        padding: 20px;
    }

    .related-date {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .related-title {
        font-size: 1rem;
    }

    .cta-section {
        margin: 50px 0 20px;
        padding: 50px 20px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .btn-cta {
        font-size: 0.95rem;
        padding: 14px 30px;
    }
}

/* thamquantaubehaudaiduong */
/* ========================================
   CUSTOM STYLES FOR OYSTER FARM PAGE
   (Thêm vào cuối file news-detail.css nếu cần)
   ======================================== */

/* Tùy chỉnh màu sắc chủ đề cho trang bè hàu - có thể bỏ qua nếu dùng màu mặc định */
.oyster-theme .article-title,
.oyster-theme .article-lead,
.oyster-theme .article-subheading {
    color: #0077be;
    /* Màu xanh biển */
}

.oyster-theme .category-badge.project {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #0277bd;
    border: 2px solid #4fc3f7;
}

.oyster-theme .article-highlight {
    background: linear-gradient(135deg, #e1f5fe, #b3e5fc);
    border-left: 5px solid #0288d1;
}

.oyster-theme .article-highlight p {
    color: #01579b;
}

.oyster-theme .article-quote {
    background: linear-gradient(135deg, #0288d1, #0277bd);
}

.oyster-theme .stat-number {
    color: #0277bd;
}

.oyster-theme .tag {
    border-color: #4fc3f7;
    color: #0277bd;
}

.oyster-theme .tag:hover {
    background: #0288d1;
    color: white;
}

/* Tùy chỉnh cho hình ảnh bè hàu - overlay màu xanh biển */
.oyster-theme .article-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(2, 119, 189, 0.1));
    pointer-events: none;
}

/* Responsive cho các thiết bị nhỏ */
@media (max-width: 768px) {
    .oyster-theme .article-stats {
        grid-template-columns: 1fr;
    }
}