/* ===== NEWS DETAIL PAGE STYLES ===== */
/* Phong cách: Industrial × Asian, tuân thủ thương hiệu AIRPORT MEETING PLACE – CAFÉ & RENDEZVOUS */

/* ===== HERO SECTION ===== */
.news_detail_hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
    padding: 3rem 0 2rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.news_detail_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5c4c 0%, #a0695a 50%, #8b5c4c 100%);
}

.news_detail_breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.breadcrumb_item {
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb_item:hover {
    color: #8b5c4c;
    background: rgba(139, 92, 76, 0.08);
    transform: translateY(-1px);
}

.breadcrumb_item i {
    font-size: 0.85rem;
}

.breadcrumb_separator {
    color: #cbd5e0;
    font-size: 0.8rem;
    margin: 0 0.25rem;
}

.breadcrumb_current {
    color: #2d3748;
    font-weight: 600;
    max-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0.5rem 0;
}

/* ===== CONTENT SECTION ===== */
.news_detail_content {
    background: #f9f9f6;
    padding: 4rem 0;
    min-height: 60vh;
}

.news_detail_container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3.5rem;
    align-items: start;
}

.news_detail_main {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.news_detail_main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5c4c 0%, #a0695a 100%);
}

/* ===== HEADER ===== */
.news_detail_header {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.news_detail_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Badge Colors */
.badge_new {
    background: linear-gradient(135deg, #8b5c4c 0%, #a0695a 100%);
    color: #ffffff;
}

.badge_hot {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
}

.badge_sale {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #ffffff;
}

.badge_event {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
}

.badge_festival {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: #ffffff;
}

.news_detail_title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.25;
    margin: 0 0 2rem 0;
    text-align: left;
}

.news_detail_meta {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.news_detail_date,
.news_detail_time {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    font-weight: 500;
}

.news_detail_date i,
.news_detail_time i {
    color: #8b5c4c;
    font-size: 1.1rem;
}

.news_detail_description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    font-weight: 500;
    font-style: italic;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid #8b5c4c;
    position: relative;
    opacity: 0.95;
}

.news_detail_description::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-size: 3rem;
    color: #8b5c4c;
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

/* ===== IMAGE ===== */
.news_detail_image {
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    background: #f8f9fa;
}

.news_detail_image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.news_detail_image:hover img {
    transform: scale(1.02);
}

/* ===== CONTENT BODY ===== */
.news_detail_body {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin: 3rem 0;
}

.news_detail_body p {
    margin-bottom: 2rem;
    text-align: justify;
}

.news_detail_body p:first-child::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 3rem;
    padding: 0.5rem 0.75rem 0 0;
    margin: 0.1rem 0.5rem 0 0;
    color: #8b5c4c;
    font-weight: 600;
}

.news_detail_body ul {
    margin: 2rem 0;
    padding-left: 2.5rem;
}

.news_detail_body li {
    margin-bottom: 0.75rem;
    position: relative;
}

.news_detail_body li::marker {
    color: #8b5c4c;
    font-weight: bold;
}

/* ===== NAVIGATION ===== */
.news_detail_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 2px solid #f1f5f9;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.news_nav_btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.news_nav_back {
    background: #f8f9fa;
    color: #4a5568;
    border-color: #e2e8f0;
}

.news_nav_back:hover {
    border-color: #8b5c4c;
    color: #8b5c4c;
    background: rgba(139, 92, 76, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 76, 0.15);
}

.news_nav_related {
    background: linear-gradient(135deg, #8b5c4c 0%, #a0695a 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(139, 92, 76, 0.3);
}

.news_nav_related:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 76, 0.4);
}

/* ===== SIDEBAR ===== */
.news_detail_sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: sticky;
    top: 120px;
}

.sidebar_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.sidebar_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5c4c 0%, #a0695a 100%);
}

.sidebar_title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar_title i {
    color: #8b5c4c;
    font-size: 1.1rem;
}

/* Contact Info */
.contact_info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact_item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact_item:hover {
    background: rgba(139, 92, 76, 0.05);
    transform: translateY(-1px);
}

.contact_item i {
    color: #8b5c4c;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact_item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
}

.contact_item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.contact_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #8b5c4c 0%, #a0695a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 76, 0.3);
}

.contact_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 76, 0.4);
}

/* Quick Links */
.quick_links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick_link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: #64748b;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.quick_link:hover {
    color: #8b5c4c;
    background: rgba(139, 92, 76, 0.05);
    border-color: rgba(139, 92, 76, 0.2);
    transform: translateX(5px);
}

.quick_link i {
    color: #8b5c4c;
    font-size: 1rem;
    min-width: 18px;
}

/* ===== NAVIGATION ===== */
.news_detail_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 2px solid #f1f5f9;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.news_nav_btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.news_nav_back {
    background: #f8f9fa;
    color: #4a5568;
    border-color: #e2e8f0;
}

.news_nav_back:hover {
    border-color: #8b5c4c;
    color: #8b5c4c;
    background: rgba(139, 92, 76, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 76, 0.15);
}

.news_nav_related {
    background: linear-gradient(135deg, #8b5c4c 0%, #a0695a 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(139, 92, 76, 0.3);
}

.news_nav_related:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 76, 0.4);
}

/* ===== SIDEBAR ===== */
.news_detail_sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: sticky;
    top: 120px;
}

.sidebar_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.sidebar_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5c4c 0%, #a0695a 100%);
}

.sidebar_title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar_title i {
    color: #8b5c4c;
    font-size: 1.1rem;
}

/* Contact Info */
.contact_info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact_item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact_item:hover {
    background: rgba(139, 92, 76, 0.05);
    transform: translateY(-1px);
}

.contact_item i {
    color: #8b5c4c;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact_item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
}

.contact_item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.contact_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #8b5c4c 0%, #a0695a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 76, 0.3);
}

.contact_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 76, 0.4);
}

/* Quick Links */
.quick_links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick_link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: #64748b;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.quick_link:hover {
    color: #8b5c4c;
    background: rgba(139, 92, 76, 0.05);
    border-color: rgba(139, 92, 76, 0.2);
    transform: translateX(5px);
}

.quick_link i {
    color: #8b5c4c;
    font-size: 1rem;
    min-width: 18px;
}

/* ===== RELATED NEWS SECTION ===== */
.related_news_section {
    background: #ffffff;
    padding: 5rem 0;
    border-top: 1px solid #e2e8f0;
}

.section_header {
    text-align: center;
    margin-bottom: 4rem;
}

.section_title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 1rem 0;
}

.section_subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.related_news_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.related_news_card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.related_news_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.related_news_image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.related_news_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related_news_card:hover .related_news_image img {
    transform: scale(1.05);
}

.related_news_content {
    padding: 2rem;
}

.related_news_title {
    margin: 0 0 1rem 0;
}

.related_news_title a {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.related_news_title a:hover {
    color: #8b5c4c;
}

.related_news_description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related_news_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.related_news_date {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.related_news_date i {
    color: #8b5c4c;
}

.related_news_link {
    color: #8b5c4c;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.related_news_link:hover {
    color: #6d4c37;
    background: rgba(139, 92, 76, 0.1);
    transform: translateX(3px);
}

.related_news_footer {
    text-align: center;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-outline {
    background: transparent;
    color: #8b5c4c;
    border-color: #8b5c4c;
}

.btn-outline:hover {
    background: #8b5c4c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 76, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .news_detail_container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .news_detail_sidebar {
        position: relative;
        top: auto;
        order: 2;
    }
    
    .sidebar_card {
        padding: 2rem;
    }
    
    .news_detail_main {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .news_detail_hero {
        padding: 2rem 0 1.5rem 0;
    }
    
    .news_detail_title {
        font-size: 2.2rem;
    }
    
    .news_detail_meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news_detail_main {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .news_detail_navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news_nav_btn {
        width: 100%;
        justify-content: center;
    }
    
    .breadcrumb_current {
        max-width: 250px;
    }
    
    .related_news_grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section_title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .news_detail_content {
        padding: 2rem 0;
    }
    
    .news_detail_main {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .news_detail_title {
        font-size: 1.8rem;
    }
    
    .breadcrumb_current {
        max-width: 200px;
    }
    
    .sidebar_card {
        padding: 1.5rem;
    }
    
    .contact_item {
        padding: 0.75rem;
    }
    
    .section_title {
        font-size: 1.75rem;
    }
} 