/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #102649;
    --primary-blue: #007db6;
    --primary-yellow: #f5c116;
    --bg-light: #F8F9FA;
    --text-dark: #102649;
    --text-white: #FFFFFF;
    --text-gray: #B2B2B2;
    --green-accent: #3DBE60;
    --orange-accent: #D75735;
    --green-light: #34A853;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Gotham Narrow', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation Bar */
.main-nav {
    background-color: var(--primary-dark);
    min-height: 80px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.nav-logo {
    width: 150px;
    height: auto;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    font-size: clamp(14px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    padding: 10px 20px;
    transition: background-color 0.3s;
    white-space: nowrap;
    border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-login,
.btn-register {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    cursor: pointer;
    height: 44px;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-login {
    background-color: var(--primary-blue);
    color: white;
}

.btn-login:hover {
    background-color: #0066a1;
}

.btn-register {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.btn-register:hover {
    background-color: #dea800;
}

/* Hero Section */
.hero-section {
    height: clamp(250px, 40vw, 577px);
    background: linear-gradient(0deg, rgba(16, 38, 73, 0.40) 0%, rgba(16, 38, 73, 0.40) 100%),
                url('assets/herosection.png') center/cover;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-text {
    color: white;
    font-size: clamp(28px, 5vw, 64px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    padding: 0 20px;
    max-width: 1200px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Main Container */
.main-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Issue Header */
.issue-header {
    background-color: var(--primary-dark);
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 16px;
    margin: 60px -20px 0;
    width: calc(100% + 40px);
}

.issue-header h2 {
    color: white;
    font-size: clamp(18px, 2.5vw, 24px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.badge-new,
.badge-live {
    padding: 5px 10px;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    line-height: 1.5;
    white-space: nowrap;
    font-size: clamp(10px, 1.5vw, 12px);
}

.badge-new {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    text-transform: uppercase;
}

.badge-live {
    background-color: white;
    color: var(--primary-dark);
}

/* Featured Magazine Section */
.featured-magazine {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: start;
}

.magazine-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.magazine-content h3 {
    color: var(--text-dark);
    font-size: clamp(18px, 2.5vw, 24px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    line-height: 1.3;
}

.magazine-content > p {
    color: var(--text-dark);
    font-size: clamp(14px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    line-height: 1.6;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
}

.feature-card {
    padding: 15px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 140px;
}

.feature-card.yellow-border {
    outline: 2px var(--primary-yellow) solid;
    outline-offset: -2px;
}

.feature-card.dark-border {
    outline: 2px var(--primary-dark) solid;
    outline-offset: -2px;
}

.feature-card.blue-border {
    outline: 2px var(--primary-blue) solid;
    outline-offset: -2px;
}

.feature-card h4 {
    color: var(--text-dark);
    font-size: clamp(13px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.feature-card p {
    color: var(--text-dark);
    font-size: clamp(11px, 1.5vw, 13px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    line-height: 1.5;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-read-online,
.btn-download-pdf,
.btn-partner {
    padding: 12px 20px;
    border: none;
    font-size: clamp(12px, 1.8vw, 16px);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    flex: 1;
    min-width: 140px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border-radius: 4px;
}

.btn-read-online {
    background-color: var(--primary-blue);
    color: white;
}

.btn-read-online:hover {
    background-color: #0066a1;
    transform: translateY(-2px);
}

.btn-download-pdf {
    background-color: var(--primary-dark);
    color: white;
}

.btn-download-pdf:hover {
    background-color: #0a1929;
    transform: translateY(-2px);
}

.btn-partner {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.btn-partner:hover {
    background-color: #dea800;
    transform: translateY(-2px);
}

.magazine-cover {
    flex-shrink: 0;
}

.magazine-cover img {
    width: 100%;
    max-width: 290px;
    height: auto;
    box-shadow: 0px 4px 8.7px rgba(0, 0, 0, 0.25);
}

/* Edition Tabs */
.edition-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 20px;
    font-size: clamp(13px, 1.8vw, 16px);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-width: 150px;
}

.tab-button.active {
    background-color: var(--primary-dark);
    color: white;
}

.tab-button.inactive {
    background-color: white;
    color: var(--text-gray);
    outline: 2px var(--text-gray) solid;
    outline-offset: -2px;
}

/* Section Title */
.section-title {
    color: var(--text-dark);
    font-size: clamp(16px, 2.2vw, 20px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    text-transform: capitalize;
    line-height: 1.5;
}

/* Featured Articles Grid */
.featured-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.article-card.large {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.article-image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.50) 58%);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    bottom: 120px;
    left: 20px;
    padding: 5px 10px;
    font-size: clamp(10px, 1.5vw, 12px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    text-transform: capitalize;
}

.category-badge.blue {
    background-color: #007DB6;
    color: white;
}

.category-badge.orange {
    background-color: #D75735;
    color: white;
}

.category-badge.green {
    background-color: #3DBE60;
    color: white;
}

.category-badge.gray {
    background-color: #6B7280;
    color: white;
}

.category-badge.yellow {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.article-overlay {
    padding: 0.6rem;
    background-color: #102649b0;
    position: absolute;
    bottom: 20px;
    width: 100%;
    /* left: 20px;
    right: 20px; */
}

.article-overlay h4 {
    color: white;
    font-size: clamp(16px, 2.2vw, 20px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 8px;
}

.article-overlay .date {
    color: white;
    font-size: clamp(12px, 1.5vw, 14px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 325;
    text-transform: capitalize;
}

.article-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-content h5 {
    color: var(--text-dark);
    font-size: clamp(16px, 2.2vw, 20px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.3;
}

.article-content p {
    color: var(--text-dark);
    font-size: clamp(12px, 1.6vw, 14px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    text-transform: capitalize;
    line-height: 1.6;
}

.btn-read-more {
    padding: 8px 15px;
    border: none;
    color: white;
    font-size: clamp(11px, 1.5vw, 12px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    text-transform: capitalize;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.btn-read-more {
    background-color: var(--primary-blue);
}

.btn-read-more:hover {
    background-color: #0066a1;
}

.btn-read-more.dark {
    background-color: var(--primary-dark);
}

.btn-read-more.orange {
    background-color: var(--orange-accent);
}

.btn-read-more.green {
    background-color: var(--green-light);
}

/* Trending Banner */
.trending-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: white;
    padding: 20px;
}

.trending-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.trending-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-label {
    padding: 5px 10px;
    font-size: clamp(10px, 1.5vw, 12px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    text-transform: capitalize;
    display: inline-block;
    align-self: flex-start;
}

.category-label:not(.blue-bg):not(.orange-bg):not(.green-bg):not(.gray-bg):not(.yellow-bg) {
    background-color: rgba(247, 193, 0, 0.18);
    color: var(--text-dark);
}

.category-label.blue-bg {
    background-color: rgba(0, 125, 182, 0.24);
    color: var(--text-dark);
}

.category-label.orange-bg {
    background-color: rgba(215, 87, 53, 0.24);
    color: var(--text-dark);
}

.category-label.green-bg {
    background-color: rgba(52, 168, 83, 0.23);
    color: var(--text-dark);
}

.category-label.gray-bg {
    background-color: rgba(107, 114, 128, 0.24);
    color: var(--text-dark);
}

.category-label.yellow-bg {
    background-color: rgba(247, 193, 0, 0.24);
    color: var(--text-dark);
}

.trending-content h3 {
    color: var(--text-dark);
    font-size: clamp(16px, 2.2vw, 20px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    text-transform: capitalize;
    line-height: 1.3;
}

.trending-content p {
    color: var(--text-dark);
    font-size: clamp(13px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 325;
    text-transform: capitalize;
    line-height: 1.6;
}

.trending-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: auto;
}

.trending-footer .date,
.article-footer .date {
    color: var(--text-dark);
    font-size: clamp(12px, 1.5vw, 14px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 325;
    text-transform: capitalize;
}

/* Additional Articles Grid */
.additional-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.article-card.small {
    background: white;
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 12px;
}

.article-card.small img {
    width: 100%;
    height: auto;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Partner Section */
.partner-section {
    background-color: var(--primary-dark);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    margin: 0 -20px;
    width: calc(100% + 40px);
    gap: 30px;
    flex-wrap: wrap;
}

.partner-content h2 {
    color: white;
    font-size: clamp(24px, 3.5vw, 32px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.partner-content p {
    color: white;
    font-size: clamp(14px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    line-height: 1.6;
}

.btn-partner {
    padding: 12px 30px;
    background-color: var(--primary-blue);
    border: none;
    color: white;
    font-size: clamp(16px, 2.2vw, 20px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-partner:hover {
    background-color: #0066a1;
}

/* Preview Section */
.preview-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.preview-header {
    background-color: var(--primary-dark);
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 16px;
    margin: 0 -20px;
    width: calc(100% + 40px);
}

.preview-header h2 {
    color: white;
    font-size: clamp(18px, 2.5vw, 24px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
}

.preview-container {
    display: flex;
    justify-content: center;
}

.preview-container img {
    width: 100%;
    max-width: 982px;
    height: auto;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-download-full {
    padding: 15px 30px;
    background-color: var(--primary-yellow);
    border: none;
    color: var(--primary-dark);
    font-size: clamp(13px, 1.8vw, 16px);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    align-self: center;
    transition: background-color 0.3s;
}

.btn-download-full:hover {
    background-color: #dea800;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--primary-dark);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 32px -20px 0;
    width: calc(100% + 40px);
    flex-wrap: wrap;
}

.newsletter-content h2 {
    color: var(--primary-yellow);
    font-size: clamp(24px, 4vw, 36px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4;
}

.newsletter-content p {
    color: white;
    font-size: clamp(14px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    line-height: 1.6;
}

.newsletter-form {
    width: 100%;
    max-width: 536px;
    min-height: 70px;
    background-color: #FAFAFA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    font-size: clamp(14px, 1.8vw, 16px);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.btn-subscribe {
    padding: 14px 20px;
    background-color: var(--primary-yellow);
    border: none;
    border-radius: 4px;
    color: var(--primary-dark);
    font-size: clamp(14px, 2vw, 18px);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background-color: #dea800;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    padding: 40px 20px 20px;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: white;
    font-size: clamp(13px, 1.8vw, 15px);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #F8F9FA;
    font-size: clamp(12px, 1.6vw, 15px);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 0.8;
}

.footer-logo {
    width: 100%;
    max-width: 120px;
    height: auto;
}

.footer-divider {
    height: 1px;
    background-color: white;
    opacity: 0.25;
    max-width: 1400px;
    margin: 20px auto;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: white;
    font-size: clamp(12px, 1.6vw, 15px);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 2px;
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .event-title {
        order: -1;
        width: 100%;
    }
    
    .logo {
        order: -2;
    }
    
    .nav-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-left {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    
    .nav-logo {
        width: 140px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
    }
    
    .nav-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .featured-magazine {
        grid-template-columns: 1fr;
    }
    
    .magazine-cover {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .trending-banner {
        grid-template-columns: 1fr;
    }
    
    .partner-section {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-section {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .btn-subscribe {
        width: 100%;
    }
    
    .edition-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .edition-cover {
        width: 100%;
        height: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        width: 120px;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .article-image {
        height: 250px;
    }
    
    .edition-cover {
        height: 350px;
    }
}

/* ============================================
   EDITIONS PAGE STYLES
   ============================================ */

/* Filter Section */
.filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-size: clamp(13px, 1.8vw, 15px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid var(--text-gray);
    border-radius: 4px;
    font-size: clamp(13px, 1.8vw, 15px);
    font-family: 'Gotham Narrow', sans-serif;
    background: white;
    cursor: pointer;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.results-count {
    color: var(--text-dark);
    font-size: clamp(13px, 1.8vw, 15px);
    font-family: 'Gotham Narrow', sans-serif;
}

/* Editions Grid */
.editions-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.edition-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 25px;
    align-items: stretch;
}

.edition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.edition-cover {
    position: relative;
    width: 300px;
    height: 420px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.edition-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edition-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-size: 12px;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.edition-badge.current {
    background-color: var(--green-accent);
    color: white;
}

.edition-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    padding: 0;
}

.edition-info h3 {
    color: var(--text-dark);
    font-size: clamp(24px, 3vw, 32px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.edition-subtitle {
    color: var(--primary-blue);
    font-size: clamp(14px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.edition-description {
    color: var(--text-dark);
    font-size: clamp(13px, 1.6vw, 15px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    line-height: 1.6;
}

.edition-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.edition-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.highlight-tag {
    padding: 5px 12px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 11px;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.edition-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

.btn-read,
.btn-download-edition {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: clamp(13px, 1.8vw, 14px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-read {
    background-color: var(--primary-blue);
    color: white;
}

.btn-read:hover {
    background-color: #0066a1;
    transform: translateY(-2px);
}

.btn-download-edition {
    background-color: var(--primary-dark);
    color: white;
}

.btn-download-edition:hover {
    background-color: #0a1929;
    transform: translateY(-2px);
}

/* Subscribe CTA */
.subscribe-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.subscribe-content h2 {
    color: white;
    font-size: clamp(24px, 3.5vw, 32px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.subscribe-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 1.8vw, 18px);
    font-family: 'Gotham Narrow', sans-serif;
    margin-bottom: 25px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}

.subscribe-form .btn-subscribe {
    padding: 15px 30px;
    background-color: var(--primary-yellow);
    border: none;
    border-radius: 4px;
    color: var(--primary-dark);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.subscribe-form .btn-subscribe:hover {
    background-color: #dea800;
}

/* ============================================
   BLOGS PAGE STYLES
   ============================================ */

.search-box {
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--text-gray);
    border-radius: 4px;
    font-size: clamp(13px, 1.8vw, 15px);
    font-family: 'Gotham Narrow', sans-serif;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Featured Blog */
.featured-blog {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
}

.featured-blog-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-blog-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-date {
    color: var(--text-gray);
    font-size: clamp(12px, 1.5vw, 14px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    text-transform: uppercase;
}

.featured-blog-content h2 {
    color: var(--text-dark);
    font-size: clamp(24px, 3vw, 32px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-dark);
    font-size: clamp(14px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--text-gray);
    font-size: clamp(12px, 1.5vw, 14px);
    font-family: 'Gotham Narrow', sans-serif;
}

.author {
    font-weight: 600;
}

.read-time {
    font-weight: 350;
}

/* Blogs Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.blog-content h4 {
    color: var(--text-dark);
    font-size: clamp(16px, 2.2vw, 18px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-dark);
    font-size: clamp(13px, 1.6vw, 14px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 350;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--bg-light);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    padding: 40px 0;
}

.btn-load-more {
    padding: 15px 40px;
    background-color: var(--primary-dark);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: clamp(14px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-load-more:hover {
    background-color: #0a1929;
    transform: translateY(-2px);
}

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

.blog-detail-container {
    max-width: 1200px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    font-size: clamp(13px, 1.6vw, 14px);
    font-family: 'Gotham Narrow', sans-serif;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb .separator {
    margin: 0 10px;
}

.breadcrumb .current {
    color: var(--text-dark);
}

/* Blog Detail */
.blog-detail {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.blog-detail-header {
    margin-bottom: 30px;
}

.blog-meta-top {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.blog-title {
    color: var(--text-dark);
    font-size: clamp(28px, 4vw, 42px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.blog-subtitle {
    color: var(--text-gray);
    font-size: clamp(16px, 2.2vw, 20px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Author Info */
.author-info {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--bg-light);
    border-bottom: 1px solid var(--bg-light);
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    color: var(--text-dark);
    font-size: clamp(16px, 2vw, 18px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-details p {
    color: var(--text-gray);
    font-size: clamp(13px, 1.6vw, 14px);
    font-family: 'Gotham Narrow', sans-serif;
    margin-bottom: 10px;
}

.blog-stats {
    display: flex;
    gap: 20px;
    font-size: clamp(12px, 1.5vw, 13px);
    color: var(--text-gray);
}

.blog-stats span {
    cursor: pointer;
    transition: color 0.3s;
}

.blog-stats span:hover {
    color: var(--primary-blue);
}

/* Featured Image */
.blog-featured-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Blog Content Wrapper */
.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 40px;
}

.blog-main-content {
    min-width: 0;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
}

.lead-paragraph {
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-section p {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-section h2 {
    color: var(--text-dark);
    font-size: clamp(24px, 3vw, 28px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-section h3 {
    color: var(--text-dark);
    font-size: clamp(18px, 2.5vw, 22px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-section li {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.content-section li strong {
    color: var(--primary-dark);
}

/* Callout Boxes */
.callout-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-blue);
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.callout-box.accent {
    background: linear-gradient(135deg, rgba(0, 125, 182, 0.05) 0%, rgba(247, 193, 0, 0.05) 100%);
    border-left-color: var(--primary-yellow);
}

.callout-box h4 {
    color: var(--text-dark);
    font-size: clamp(16px, 2.2vw, 18px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.callout-box p {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 0;
}

.callout-box ul {
    margin: 15px 0 0 0;
    padding-left: 20px;
}

.callout-box li {
    font-size: clamp(14px, 1.8vw, 16px);
    margin-bottom: 10px;
}

/* Stats Box */
.stats-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 30px;
    background: var(--primary-dark);
    border-radius: 8px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.stat-item h4 {
    color: var(--primary-yellow);
    font-size: clamp(32px, 4vw, 42px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    color: white;
    font-size: clamp(12px, 1.6vw, 14px);
    line-height: 1.4;
    margin: 0;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 40px 0;
}

.author-bio-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.author-bio-content h3 {
    color: var(--text-gray);
    font-size: clamp(12px, 1.5vw, 13px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.author-bio-content h4 {
    color: var(--text-dark);
    font-size: clamp(18px, 2.5vw, 22px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.author-bio-content p {
    font-size: clamp(14px, 1.8vw, 15px);
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 15px;
}

.social-link {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--text-gray);
    border-radius: 4px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Tags */
.blog-tags {
    margin: 30px 0;
}

.blog-tags h4 {
    color: var(--text-dark);
    font-size: clamp(14px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--primary-blue);
    color: white;
}

/* Share Section */
.share-section {
    padding: 30px 0;
    border-top: 1px solid var(--bg-light);
}

.share-section h4 {
    color: var(--text-dark);
    font-size: clamp(14px, 1.8vw, 16px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.share-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.email {
    background: var(--text-gray);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-section {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.sidebar-section h3 {
    color: var(--text-dark);
    font-size: clamp(16px, 2.2vw, 18px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Related Articles List */
.related-articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.2s;
}

.related-article-item:hover {
    transform: translateX(5px);
}

.related-article-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.related-article-info h5 {
    color: var(--text-dark);
    font-size: clamp(13px, 1.6vw, 14px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}

.related-article-info .date {
    color: var(--text-gray);
    font-size: 11px;
}

/* Newsletter Sidebar */
.newsletter-sidebar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
}

.newsletter-sidebar h3 {
    color: white;
}

.newsletter-sidebar p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(13px, 1.6vw, 14px);
    margin-bottom: 15px;
}

.newsletter-sidebar input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
}

.btn-subscribe-sidebar {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-yellow);
    border: none;
    border-radius: 4px;
    color: var(--primary-dark);
    font-size: 14px;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-subscribe-sidebar:hover {
    background-color: #dea800;
}

/* Popular Topics */
.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-tag {
    padding: 8px 16px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s;
}

.topic-tag:hover {
    background: var(--primary-blue);
    color: white;
}

/* More Articles Section */
.more-articles {
    margin-top: 60px;
}

.more-articles h2 {
    color: var(--text-dark);
    font-size: clamp(24px, 3vw, 28px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.more-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* ========================================
   EDITION HIGHLIGHTS STYLING
   Add this to your public/styles.css file
   ======================================== */

/* Edition Highlights Container */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0 40px 0;
    width: 100%;
}

/* Individual Highlight Card */
.feature-card {
    padding: 28px 24px;
    border-radius: 12px;
    background: white;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Border Color Variants */
.feature-card.yellow-border {
    border: 3px solid #F7C100;
}

.feature-card.yellow-border:hover {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    border-color: #E6B200;
}

.feature-card.dark-border {
    border: 3px solid #102649;
}

.feature-card.dark-border:hover {
    background: linear-gradient(135deg, #F0F2F5 0%, #F5F7FA 100%);
    border-color: #0A1929;
}

.feature-card.blue-border {
    border: 3px solid #007DB6;
}

.feature-card.blue-border:hover {
    background: linear-gradient(135deg, #E6F4FA 0%, #F0F8FC 100%);
    border-color: #0066A1;
}

/* Highlight Text */
.feature-card h4 {
    font-family: 'Gotham Narrow', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #102649;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        min-height: 120px;
        padding: 24px 20px;
    }
    
    .feature-card h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        min-height: 100px;
        padding: 20px 16px;
    }
    
    .feature-card h4 {
        font-size: 15px;
    }
}

/* Animation on Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Stagger animation for multiple cards */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Print Styles */
@media print {
    .feature-card {
        break-inside: avoid;
        border: 2px solid #333 !important;
    }

    .feature-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Become a Partner Page Styles */
.partner-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3d6b 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.partner-header-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.partner-header-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.partner-container {
    width: 100%;
    background-color: #F8F9FA;
    padding: 60px 0;
    min-height: 100vh;
}

.partner-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.partner-section .section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 48px;
}

/* Benefits Grid */
.partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-card h3 {
    font-size: 22px;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 40px;
    border-radius: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: clamp(40px, 6vw, 56px);
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: var(--primary-dark);
    font-weight: 500;
}

/* Opportunities Grid */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.opportunity-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.opportunity-card h3 {
    font-size: 22px;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.opportunity-card ul {
    list-style: none;
    padding: 0;
}

.opportunity-card ul li {
    font-size: 15px;
    color: #666;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.opportunity-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: bold;
}

/* Form Section */
.form-section {
    background: white;
    padding: 60px 40px !important;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto !important;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hubspot-form-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Styles for Partner Page */
@media (max-width: 768px) {
    .partner-header {
        padding: 60px 20px;
    }

    .partner-container {
        padding: 40px 20px;
    }

    .partner-section {
        margin-bottom: 60px;
    }

    .partner-benefits,
    .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .form-section {
        padding: 40px 20px;
    }
}


/* Responsive Styles for New Pages */
@media (max-width: 1024px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .featured-blog {
        grid-template-columns: 1fr;
    }
    
    .featured-blog-image {
        min-height: 300px;
    }
    
    .edition-card {
        grid-template-columns: 1fr;
    }
    
    .edition-cover {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .search-box {
        max-width: none;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input,
    .subscribe-form .btn-subscribe {
        width: 100%;
    }
    
    .editions-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-detail {
        padding: 25px;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .stats-box {
        grid-template-columns: 1fr;
    }
}

