/*
Theme Name: Emerge Magazine Theme
Theme URI: https://emergemagazine.com.au
Author: Emerge Magazine
Author URI: https://emergemagazine.com.au
Description: A clean, professional theme for Emerge Magazine - Geelong's Multicultural Community Voice. Features burgundy and pink accent colours, ad placements, and community-focused layout.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emerge-theme
Tags: blog, news, magazine, custom-menu, featured-images, custom-logo

Emerge Magazine Theme - Informing. Connecting. Empowering.
Geelong's African & Multicultural Community Publication
*/

/* ========== CSS VARIABLES ========== */
:root {
    /* Primary Palette */
    --burgundy-deep: #6B1D32;
    --burgundy: #8B2942;
    --burgundy-light: #a63d56;
    
    /* Pink Accents */
    --pink-warm: #d4a5b0;
    --pink-soft: #e8c4cc;
    --pink-pale: #f5e6e9;
    --pink-whisper: #faf5f7;
    
    /* Warm Neutrals */
    --grey-warm-dark: #4a4145;
    --grey-warm: #6b6167;
    --grey-warm-medium: #8a8287;
    --grey-warm-light: #c9c4c6;
    --cream: #fdfbf9;
    --cream-dark: #f7f4f1;
    --white: #ffffff;
    
    /* Text */
    --text-dark: #3d3539;
    --text-medium: #5c5458;
    --text-light: #7a7276;
    
    /* Functional */
    --gold-accent: #C9A227;
    --border-light: #e8e4e5;
    --border-pink: #f0dce1;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--burgundy-light);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--burgundy-deep);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-location {
    color: var(--pink-soft);
    font-weight: 400;
}

.top-bar-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.2s;
    font-weight: 400;
}

.top-bar-links a:hover {
    color: var(--white);
}

/* ========== HEADER ========== */
.site-header {
    padding: 28px 0;
    background: var(--white);
    border-bottom: 3px solid var(--burgundy);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 2px;
}

.site-logo span {
    color: var(--burgundy);
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

.tagline {
    color: var(--text-medium);
    font-size: 14px;
    letter-spacing: 1px;
}

.tagline::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 3px;
    background: var(--pink-warm);
    margin-right: 12px;
    vertical-align: middle;
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.main-nav ul ul {
    display: none;
}

.main-nav li a {
    display: block;
    padding: 18px 22px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    position: relative;
}

.main-nav li a:hover,
.main-nav li.current-menu-item a,
.main-nav li.current_page_item a,
.main-nav li.current-menu-ancestor a {
    color: var(--burgundy);
    border-bottom-color: var(--burgundy);
}

/* ========== SITE CONTENT WRAPPER ========== */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ========== HERO SECTION ========== */
.hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 0;
}

.hero-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 25px rgba(107, 29, 50, 0.12);
}

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

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    background: linear-gradient(transparent, rgba(61, 53, 57, 0.9));
    color: white;
}

.hero-category,
.category-tag {
    display: inline-block;
    background: var(--burgundy);
    color: white;
    padding: 5px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    border-radius: 3px;
    text-decoration: none;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    color: white;
}

.hero-title a {
    color: white;
    text-decoration: none;
}

.hero-title a:hover {
    color: var(--pink-soft);
}

.hero-excerpt {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

/* Hero Sidebar */
.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-sidebar-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    gap: 15px;
    padding: 15px;
    transition: all 0.2s;
}

.hero-sidebar-item:hover {
    border-color: var(--pink-warm);
    box-shadow: 0 4px 15px rgba(139, 41, 66, 0.1);
    transform: translateX(5px);
}

.hero-sidebar-item img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-sidebar-item .sidebar-item-content h3 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.hero-sidebar-item .sidebar-item-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.hero-sidebar-item .sidebar-item-content h3 a:hover {
    color: var(--burgundy);
}

.hero-sidebar-item .category-tag {
    font-size: 10px;
    padding: 3px 10px;
    margin-bottom: 8px;
}

/* ========== MISSION BANNER ========== */
.mission-banner {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
    padding: 65px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.mission-banner::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 12%;
    width: 60px;
    height: 3px;
    background: var(--pink-warm);
    opacity: 0.6;
}

.mission-banner::after {
    content: "";
    position: absolute;
    bottom: 25px;
    right: 12%;
    width: 80px;
    height: 3px;
    background: var(--pink-warm);
    opacity: 0.6;
}

.mission-banner h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: white;
}

.mission-banner p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.92);
    font-size: 17px;
    line-height: 1.8;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 45px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 46px;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--pink-soft);
    margin-top: 5px;
}

/* ========== SECTION HEADERS ========== */
.section {
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
}

.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--pink-warm);
    margin-top: 12px;
}

.section-link {
    color: var(--burgundy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.section-link:hover {
    color: var(--burgundy-light);
}

/* ========== ARTICLE GRID WITH SIDEBAR ========== */
.article-grid-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.article-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.sidebar-ads {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ========== ARTICLE GRID (Full Width) ========== */
.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

/* ========== ARTICLE CARDS ========== */
.article-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(107, 29, 50, 0.1);
    border-color: var(--pink-warm);
}

.article-card img,
.article-card .post-thumbnail img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.article-card-content {
    padding: 22px;
}

.article-card .category-tag {
    font-size: 10px;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.article-card h3,
.article-card .entry-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.article-card .entry-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.article-card .entry-title a:hover {
    color: var(--burgundy);
}

.article-card p,
.article-card .entry-summary {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0;
}

.no-posts-message {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
    background: var(--cream);
    border-radius: 8px;
}

/* ========== AD BOXES ========== */
.ad-box {
    background: var(--cream);
    border: 1px dashed var(--grey-warm-light);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-box-leaderboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ad-box-leaderboard .ad-box {
    padding: 20px;
    background: linear-gradient(135deg, var(--pink-whisper) 0%, var(--cream) 100%);
}

.ad-label {
    font-size: 10px;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

.ad-placeholder {
    background: var(--white);
    border: 1px solid var(--border-light);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 12px;
}

.ad-placeholder.tall {
    min-height: 250px;
}

/* ========== PARTNER SECTION ========== */
.partner-section {
    background: var(--pink-whisper);
    padding: 75px 20px;
    margin: 0;
}

.partner-cta {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.partner-cta h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--burgundy);
    margin-top: 18px;
}

.partner-cta > div:first-child p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
}

.partner-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-benefits li {
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid var(--border-pink);
}

.partner-benefits li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--burgundy);
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background: var(--burgundy);
    color: white;
    padding: 16px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    transition: all 0.3s;
    margin-top: 25px;
}

.cta-button:hover {
    background: var(--burgundy-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 41, 66, 0.3);
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.partner-logo-placeholder {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ========== LEADERSHIP SECTION ========== */
.leadership-section {
    background: var(--cream);
    padding: 65px 20px;
}

.leadership-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leader-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(107, 29, 50, 0.1);
    border-color: var(--pink-warm);
}

.leader-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.leader-card-content {
    padding: 25px;
    border-top: 3px solid var(--pink-warm);
}

.leader-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.leader-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.leader-card h3 a:hover {
    color: var(--burgundy);
}

.leader-card .role {
    color: var(--burgundy);
    font-size: 13px;
    margin: 0;
}

/* ========== WHAT'S ON SECTION ========== */
.whats-on-section {
    background: var(--cream-dark);
    padding: 65px 20px;
}

.whats-on-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.event-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.event-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--pink-warm);
}

.event-card:hover {
    border-color: var(--pink-warm);
    box-shadow: 0 8px 25px rgba(107, 29, 50, 0.08);
}

.event-date {
    font-size: 12px;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 12px;
}

.event-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.event-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.event-card h3 a:hover {
    color: var(--burgundy);
}

.event-card p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--grey-warm-dark);
    color: white;
    padding: 65px 20px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand .site-logo {
    color: white;
    font-size: 28px;
}

.footer-brand p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.8;
}

.footer-grant-badge {
    margin-top: 25px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border-left: 3px solid var(--pink-warm);
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}

.footer-section h4,
.footer-section .widget-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: var(--pink-warm);
    border: none;
    padding: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
    border: none;
    padding: 0;
}

.footer-section a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 45px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-social a {
    color: rgba(255,255,255,0.6);
    margin-left: 20px;
}

.footer-social a:hover {
    color: var(--pink-warm);
}

/* ========== SINGLE POST ========== */
.single-post .entry-header {
    margin-bottom: 30px;
}

.single-post .entry-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.single-post .entry-meta {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.single-post .entry-content {
    font-size: 18px;
    line-height: 1.8;
}

.single-post .entry-content p {
    margin-bottom: 1.5rem;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--cream);
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-medium);
    font-size: 18px;
    margin: 0;
}

/* ========== SIDEBAR ========== */
.sidebar {
    padding: 20px 0;
}

.widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pink-warm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.widget li a {
    color: var(--text-medium);
}

.widget li a:hover {
    color: var(--burgundy);
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
}

.pagination a:hover,
.pagination .current {
    background: var(--burgundy);
    color: white;
    border-color: var(--burgundy);
}

/* ========== WORDPRESS SPECIFIC ========== */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ========== COMMENTS ========== */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

/* ========== FORMS ========== */
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--burgundy);
}

input[type="submit"],
button {
    background: var(--burgundy);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

input[type="submit"]:hover,
button:hover {
    background: var(--burgundy-light);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1000px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-grid-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .article-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar-ads {
        flex-direction: row;
        justify-content: center;
    }
    
    .partner-cta {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .main-nav ul {
        justify-content: center;
    }
    
    .main-nav li a {
        padding: 12px 14px;
        font-size: 11px;
    }
    
    .article-grid,
    .article-grid-main {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .mission-stats {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .partner-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .site-content {
        padding: 20px 15px;
    }
    
    .mission-banner {
        padding: 40px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .partner-section {
        padding: 40px 15px;
    }
    
    .leadership-section,
    .whats-on-section {
        padding: 40px 15px;
    }
}
