/* ========================================
   NEWS PAGE - COMPLETE STYLES (FIGMA DESIGN)
   ======================================== 
   
   Sections:
   1. Hero + Our Purpose Notice
   2. Corporate Governance Philosophy + Inquiries + Latest News Heading
   3. Recent News (Image Collage + Dated Titles)
   4. News Cards Grid (keep existing styles)
   5. Corporate Governance Statement + Quick Links
   6. Editorial Team CTA + Standard CTA
   
   ======================================== */

/* ========================================
   SECTION 1: HERO + OUR PURPOSE
   ======================================== */

.news-hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #011A38;
}

.news-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.news-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(1, 26, 56, 0.7) 0%,
        rgba(1, 26, 56, 0.85) 50%,
        rgba(1, 26, 56, 0.9) 100%
    );
}

.news-hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 1280px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-hero-logo {
    margin-bottom: 1rem;
}

.news-hero-wave {
    height: 60px;
    filter: brightness(0) invert(1);
}

.news-hero-title {
    font-family: 'League Gothic', sans-serif;
    font-size: 8rem;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin: 0;
}

.hero-line-1,
.hero-line-2 {
    display: block;
}

.hero-line-2 {
    background: rgba(0, 0, 0, 0.4);
    padding: 0 1rem 0 0;
    margin-left: -0.5rem;
    display: inline-block;
}

.news-hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-news-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-news-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn-news-hero-primary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-news-hero-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Our Purpose Notice */
.purpose-notice-section {
    background: #2c3e50;
    padding: 4rem 0;
}

.purpose-notice-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    text-align: left;
    position: relative;
}

.purpose-notice-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 40px;
    background: #2c3e50;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.purpose-notice-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.purpose-notice-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #e2e8f0;
}

/* ========================================
   SECTION 2: GOVERNANCE INTRO + LATEST NEWS HEADING
   ======================================== */

.governance-intro-section {
    background: #2c3e50;
    padding: 6rem 0 4rem;
}

.governance-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.governance-philosophy {
}

.governance-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.governance-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #e2e8f0;
}

.governance-inquiries {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.inquiries-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.inquiries-icon i {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.inquiries-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.inquiries-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.inquiries-role {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.inquiries-email {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-bottom: 0.25rem;
}

.inquiries-phone {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.btn-inquiries {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-inquiries:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* Latest News Heading */
.latest-news-heading-section {
    background: #2c3e50;
    padding: 3rem 0;
    text-align: center;
}

.latest-news-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.latest-news-wave {
    height: 50px;
    filter: brightness(0) invert(1);
}

/* ========================================
   SECTION 3: RECENT NEWS (COLLAGE + LIST)
   ======================================== */

.recent-news-section {
    background: #34495e;
    padding: 6rem 0;
}

.recent-news-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

/* Image Collage */
.recent-news-collage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.collage-row {
    display: flex;
    gap: 1rem;
}

.collage-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    height: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.collage-card-large {
    flex: 1.5;
}

.collage-card-medium {
    flex: 1;
}

.collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collage-card:hover img {
    transform: scale(1.05);
}

.collage-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.collage-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.btn-collage-read {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-collage-read:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Recent News List */
.recent-news-list {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-news-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.recent-news-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-news-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-news-date {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.recent-news-title-small {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.recent-news-title-small a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.recent-news-title-small a:hover {
    color: #22d3ee;
}

/* ========================================
   SECTION 4: NEWS GRID (KEEP EXISTING STYLES)
   ======================================== */

/* Keep all existing news grid styles from news-style.css */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.news-grid-section {
    background: var(--card-bg);
    padding: 6rem 0;
}

.news-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.news-filters,
.news-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.news-filters label,
.news-sort label {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.875rem;
    white-space: nowrap;
}

.filter-select,
.sort-select {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    min-width: 150px;
}

.filter-select:focus,
.sort-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-refresh {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-refresh:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-grid-item {
    background: var(--bg-dark);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.news-grid-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-grid-item:hover .news-grid-image img {
    transform: scale(1.05);
}

.news-grid-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #2563eb;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.news-grid-content {
    padding: 1.5rem;
}

.news-grid-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.news-grid-date {
    color: #22d3ee;
    font-weight: 500;
}

.news-grid-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.news-grid-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-grid-title a:hover {
    color: #22d3ee;
}

.news-grid-excerpt {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-grid-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-read-more:hover {
    color: #22d3ee;
    transform: translateX(4px);
}

.news-loading-state,
.news-error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: #d1d5db;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-retry {
    margin-top: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-retry:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.load-more-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-load-more {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-load-more:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* ========================================
   SECTION 5: GOVERNANCE STATEMENT + QUICK LINKS
   ======================================== */

.governance-statement-section {
    background: #34495e;
    padding: 6rem 0;
}

.governance-statement-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.governance-statement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.governance-statement-image {
    height: 100%;
}

.governance-statement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.governance-statement-text {
    padding: 3rem;
}

.governance-statement-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.governance-statement-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.btn-governance-read {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-governance-read:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Quick Links (Commented Out) */
.quick-links-section {
    margin-top: 4rem;
    text-align: center;
}

.quick-links-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.quick-link-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* ========================================
   SECTION 6: CTAS (EDITORIAL + STANDARD)
   ======================================== */

/* Editorial Team CTA */
.editorial-cta-section {
    background: #2c3e50;
    padding: 6rem 0;
}

.editorial-cta-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.editorial-cta-heading {
    font-family: 'League Gothic', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.editorial-cta-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.editorial-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.editorial-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editorial-icon-box i {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.editorial-contact-title {
    font-family: 'League Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.btn-editorial-contact {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-editorial-contact:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* Standard CTA */
.standard-cta-section {
    background: #ecf0f1;
    padding: 6rem 0;
}

.standard-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.standard-cta-heading {
    font-family: 'League Gothic', sans-serif;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    letter-spacing: 0.02em;
}

.standard-cta-heading br {
    display: block;
}

.standard-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-standard-cta-primary {
    background: #000000;
    border: 2px solid #000000;
    color: #ffffff;
    padding: 1.25rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-standard-cta-primary:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-standard-cta-secondary {
    background: #ecf0f1;
    border: 2px solid #000000;
    color: #000000;
    padding: 1.25rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-standard-cta-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .governance-intro-grid,
    .recent-news-grid,
    .governance-statement-content,
    .editorial-cta-content,
    .standard-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-hero-title {
        font-size: 6rem;
    }
    
    .editorial-cta-heading,
    .standard-cta-heading {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .news-hero-title {
        font-size: 4rem;
    }
    
    .purpose-notice-box {
        padding: 2rem;
    }
    
    .collage-row {
        flex-direction: column;
    }
    
    .collage-card {
        height: 200px;
    }
    
    .editorial-cta-heading,
    .standard-cta-heading {
        font-size: 3rem;
    }
    
    .editorial-contact-title {
        font-size: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .news-hero-title {
        font-size: 3rem;
    }
    
    .editorial-cta-right {
        flex-direction: column;
    }
}

/* ========================================
   FADE-IN ANIMATIONS
   ======================================== */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}