/* ===== RESET & BASE STYLES ===== */
html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #000;
    color: #fff;
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 0;
    height: 80px;
    width: 100vw;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 40px;
    padding: 0 40px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-logo img {
    height: 48px;
}

.logo-text {
    font-weight: 900;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.navbar-menu {
    display: flex;
    gap: 28px;
    margin: 0;
    flex: none;
    justify-content: center;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s;
}

.navbar-menu a:hover {
    color: #e43c2f;
}

.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
}

.navbar-hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 80vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('gallery/4.webp') center center/cover no-repeat;
    filter: blur(2px) grayscale(0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-logo {
    width: 90px;
    margin-bottom: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 32px 0 rgba(228, 60, 47, 0.18);
    z-index: 2;
}

.hero-welcome {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.2s;
}

.hero-title .highlight {
    color: #e43c2f;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: 1px;
    padding: 0 10px;
}

.hero-socials {
    display: flex;
    gap: 22px;
    justify-content: center;
}

.hero-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-socials a:hover {
    background: #e43c2f;
}

.hero-socials i {
    font-size: 26px;
    color: #fff;
    transition: color 0.2s;
}

.hero-socials a:hover i {
    color: #fff;
}

.hero-register-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #e43c2f;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    border: none;
    border-radius: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    /* box-shadow: 0 4px 16px 0 rgba(228, 60, 47, 0.10); */
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.hero-register-btn:hover,
.hero-register-btn:focus {
    background: #fff;
    color: #e43c2f;
    transform: scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(228, 60, 47, 0.18);
    outline: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-consult-btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    background-color: #013298;
    font-size: 18px;
    font-weight: 900;
    /* border: 2px solid #013298; */
    border-radius: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.hero-consult-btn:hover,
.hero-consult-btn:focus {
    background: #fff;
    color: #013298;
    transform: scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.18);
    outline: none;
}

/* ===== DESCRIPTION SECTION ===== */
.description {
    background: #111;
    padding: 48px 0 40px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-top: 2px solid #222;
    margin-top: -6px;
}

.description p {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.6s;
}

/* ===== PILLARS SECTION ===== */
.pillars-section {
    background: #000;
    color: #fff;
    padding: 0 0 32px 0;
}

.pillars-top {
    text-align: center;
    padding: 50px 0;
    position: relative;
    background-image: url('gallery/2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: hidden;
}

.pillars-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.pillars-top>* {
    position: relative;
    z-index: 2;
}

.pillars-story {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.pillars-chevron {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 18px auto;
}

.pillars-title {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0 0 18px 0;
    text-transform: uppercase;
}

.pillars-list {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 0 auto;
    max-width: 600px;
}

.pillar-item {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.pillar-item span {
    position: relative;
    z-index: 2;
    display: block;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 8px;
}

.pillar-item:after {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: #e43c2f;
    margin: 8px auto 0 auto;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 36px auto 0 auto;
    max-width: 1200px;
    padding: 0 24px;
}

.pillars-card {
    background: #222;
    border-radius: 8px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 28px 24px 22px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    background-size: cover;
    background-position: center;
}

.pillars-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.56);
    z-index: 1;
}

.pillars-card-title,
.pillars-card-desc {
    position: relative;
    z-index: 2;
}

.pillars-card:nth-child(1) {
    background-image: url('gallery/8.webp');
}

.pillars-card:nth-child(2) {
    background-image: url('gallery/2.webp');
}

.pillars-card:nth-child(3) {
    background-image: url('gallery/3.webp');
}

.pillars-card:nth-child(4) {
    background-image: url('gallery/5.webp');
}

.pillars-card:nth-child(5) {
    background-image: url('gallery/7.webp');
}

.pillars-card:nth-child(6) {
    background-image: url('gallery/6.webp');
}

.pillars-card-title {
    font-size: 30px;
    font-weight: 900;
    color: #e43c2f;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pillars-card-desc {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== DREAMERS SECTION ===== */
.dreamers-section {
    background: #000;
    color: #fff;
    padding: 56px 5px 48px;
}

.dreamers-header {
    text-align: center;
    margin-bottom: 36px;
}

.dreamers-title {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.dreamers-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 12px;
}

.dreamers-action {
    margin-bottom: 0;
}

.dreamers-btn {
    display: inline-block;
    font-weight: 700;
    color: #fff;
    background: none;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.dreamers-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    box-sizing: border-box;
}

.dreamers-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.dreamers-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.4, 2, .6, 1);
    gap: 32px;
    will-change: transform;
}

.dreamer-card {
    min-width: 320px;
    max-width: 340px;
    flex: 0 0 calc((100% - 32px * 3) / 4);
    margin: 0;
    box-sizing: border-box;
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dreamer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.dreamer-card:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 32px 0 rgba(228, 60, 47, 0.18);
    z-index: 2;
}

.dreamer-name {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding: 24px 18px 18px 18px;
    width: 100%;
    text-align: left;
}

.carousel-arrow {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: background 0.2s, border 0.2s, color 0.2s;
    opacity: 0.92;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.carousel-arrow.left {
    left: 8px;
}

.carousel-arrow.right {
    right: 8px;
}

.carousel-arrow:active,
.carousel-arrow:hover {
    background: #e43c2f;
    color: #fff;
    border-color: #e43c2f;
    opacity: 1;
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: #000;
    color: #fff;
    padding: 56px 10px 100px 10px;
}

.news-header {
    text-align: center;
    margin-bottom: 36px;
}

.news-title {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.news-subtitle {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    place-content: center;
}


.news-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 220px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 32px 0 rgba(228, 60, 47, 0.18);
    z-index: 2;
}

.news-card-lg {
    min-height: 320px;
    grid-row: 1 / 2;
}

.news-card-lg:first-child {
    grid-column: 1 / 2;
}

.news-card-lg:last-child {
    grid-column: 2 / 3;
}

.news-card:not(.news-card-lg):nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

.news-card:not(.news-card-lg):nth-child(4) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.news-card:not(.news-card-lg):nth-child(5) {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}

.news-card:not(.news-card-lg):nth-child(6) {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.news-date {
    position: absolute;
    top: 16px;
    left: 18px;
    z-index: 2;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.85;
}

.news-headline {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 24px 18px 18px 18px;
    width: 100%;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: .3s linear;
}

.news-grid a:hover .news-headline {
    color: #e43c2f;
}

/* ===== SPONSORED SECTIONS ===== */
.sponsored-section {
    background: #1c1c1c;
    padding: 50px 0 100px 0;
    text-align: center;
    border-bottom: 2px solid #e43c2f;
}

.sponsored-header {
    margin-bottom: 24px;
}

.sponsored-title {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sponsored-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px 36px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.sponsored-logo {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
    padding: 8px;
    border-radius: 8px;
    box-shadow: none;
    transition: transform 0.2s;
}

.sponsored-logo:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 16px 0 rgba(228, 60, 47, 0.10);
}

.sponsored2-section {
    background: #111;
    padding: 48px 0;
    border-bottom: 2px solid #e43c2f;
}

.sponsored2-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 36px auto;
    padding: 0 24px;
}

.sponsored2-row:nth-child(2) {
    margin-top: 100px;
}

.sponsored2-label {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    min-width: 220px;
    text-align: left;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-right: 2px solid #fff;
    padding-right: 32px;
}

.sponsored2-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}

.sponsored2-logo {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
    padding: 3px;
    border-radius: 8px;
    box-shadow: none;
    transition: transform 0.2s;
}

.sponsored2-logo:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 16px 0 rgba(228, 60, 47, 0.10);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #000;
    color: #fff;
    padding: 48px 0 24px 0;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding: 0 40px;
    position: relative;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo img:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 32px 0 rgba(228, 60, 47, 0.18);
    z-index: 2;
}

.footer-logo-text {
    font-weight: 900;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 48px;
    flex: 2;
    justify-content: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #e43c2f;
}

.footer-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-social a {
    color: #fff;
    font-size: 22px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #e43c2f;
}

.footer-copyright {
    width: 100%;
    text-align: right;
    font-size: 14px;
    color: #fff;
    margin-top: 24px;
    opacity: 0.7;
}

.footer-copyright a {
    color: white;
    transition: .2s linear;
}

.footer-copyright a:hover {
    color: #e43c2f;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1300px) {
    .navbar-container {
        max-width: 100%;
        padding: 0 20px;
        gap: 20px;
    }
}

@media (max-width: 1100px) {
    .dreamers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding: 0 10px;
    }

    .dreamer-card {
        min-height: 320px;
        min-width: 240px;
        max-width: 260px;
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .dreamers-carousel-track {
        gap: 18px;
    }

    .news-title {
        font-size: 28px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 16px;
        padding: 0 8px;
    }

    .news-card,
    .news-card-lg {
        min-height: 180px;
    }

    .news-headline {
        font-size: 16px;
        padding: 14px 8px 10px 8px;
    }

    .news-date {
        font-size: 12px;
        top: 8px;
        left: 10px;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 40px;
    }

    .navbar-menu {
        gap: 14px;
    }

    .pillars-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .pillars-list {
        gap: 18px;
    }

    .pillars-title {
        font-size: 32px;
    }

    .pillar-item {
        font-size: 12px;
        padding-bottom: 6px;
    }

    .sponsored-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 18px 10px;
        padding: 0 8px;
    }

    .sponsored-logo {
        max-width: 220px;
        max-height: 120px;
        padding: 12px;
    }

    .sponsored2-label {
        font-size: 24px;
        min-width: 120px;
        padding-right: 12px;
    }

    .sponsored2-logo {
        max-width: 80px;
        max-height: 80px;
        padding: 4px;
    }

    .sponsored2-row {
        gap: 16px;
        padding: 0 8px;
    }

    .sponsored2-logos {
        gap: 16px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0 10px;
    }

    .footer-links {
        gap: 18px;
    }

    .footer-copyright {
        text-align: center;
        margin-top: 18px;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 10px;
        gap: 0;
    }

    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 10px 10px;
        height: auto;
    }

    .navbar-logo {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 8px;
    }

    .navbar-logo img {
        width: 32px;
        height: 32px;
        margin: 0;
        display: block;
    }

    .logo-text {
        font-size: 13px;
        line-height: 1.1;
        margin: 0;
        padding: 0;
        display: block;
    }

    .navbar-hamburger {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: -10px;
        right: -100vw;
        width: 70vw;
        max-width: 320px;
        height: 100vh;
        background: rgba(20, 20, 20, 0.98);
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 24px 24px;
        gap: 18px;
        transition: right 0.3s cubic-bezier(.4, 2, .6, 1);
        z-index: 1100;
    }

    .navbar-menu.open {
        right: 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        /* flex-direction: column;
        align-items: center; */
        /* gap: 16px; */
    }

    .hero-consult-btn,
    .hero-register-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-logo {
        width: 60px;
    }

    .description {
        font-size: 15px;
        padding: 28px 0 24px 0;
        padding-left: 16px;
        padding-right: 16px;
    }

    .pillars-section {
        padding: 0 0 18px 0;
    }

    .pillars-top {
        padding: 50px 0 50px 0;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 8px;
    }

    .pillars-title {
        font-size: 22px;
    }

    .pillar-item {
        font-size: 10px;
        padding-bottom: 4px;
    }

    .pillars-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 8px;
    }

    .pillar-item {
        margin: 0 auto;
        text-align: center;
        float: none;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 22px;
        border-width: 2px;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }

    .carousel-arrow.left {
        left: 8px;
        right: auto;
    }

    .carousel-arrow.right {
        right: 8px;
        left: auto;
    }

    .dreamers-carousel {
        padding: 0;
    }

    .dreamers-carousel-viewport {
        display: block;
        justify-content: unset;
        align-items: unset;
    }

    .dreamers-carousel-track {
        justify-content: unset;
        gap: 0;
    }

    .dreamer-card {
        margin: 0;
        min-width: 100vw;
        max-width: 100vw;
        flex: 0 0 100vw;
    }

    .news-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 18px;
        margin: 0;
        padding: 0;
    }

    .news-card,
    .news-card-lg {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 18px;
        margin-bottom: 0;
        box-sizing: border-box;
        padding-left: 12px;
        padding-right: 12px;
    }

    .sponsored-logo {
        max-width: 220px;
        max-height: 120px;
        padding: 12px;
    }

    .sponsored-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsored2-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 32px;
        text-align: center;
    }

    .sponsored2-label {
        border-right: none;
        border-bottom: 2px solid #fff;
        padding-right: 0;
        padding-bottom: 8px;
        text-align: left;
        width: 100%;
    }

    .sponsored2-logos {
        justify-content: left;
        width: 100%;
        gap: 12px;
    }

    .sponsored2-logo {
        max-width: 80px;
        max-height: 80px;
        padding: 2px;
    }

    .site-footer {
        padding: 32px 0 16px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 0 4px;
    }

    .footer-logo {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .footer-logo img {
        width: 36px;
        height: 36px;
    }

    .footer-logo-text {
        font-size: 12px;
        text-align: center;
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .footer-col {
        align-items: center;
        width: 100%;
    }

    .footer-social {
        gap: 10px;
        font-size: 18px;
        justify-content: center;
        width: 100%;
    }

    .footer-copyright {
        text-align: center;
        margin-top: 12px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 10px;
        gap: 0;
    }

    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 10px 10px;
        height: auto;
    }

    .navbar-logo {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 8px;
    }

    .navbar-logo img {
        width: 32px;
        height: 32px;
        margin: 0;
        display: block;
    }

    .logo-text {
        font-size: 13px;
        line-height: 1.1;
        margin: 0;
        padding: 0;
        display: block;
    }

    .navbar-hamburger {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: -10px;
        right: -100vw;
        width: 70vw;
        max-width: 320px;
        height: 100vh;
        background: rgba(20, 20, 20, 0.98);
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 24px 24px;
        gap: 18px;
        transition: right 0.3s cubic-bezier(.4, 2, .6, 1);
        z-index: 1100;
    }

    .navbar-menu.open {
        right: 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-logo {
        width: 60px;
    }

    .description {
        font-size: 15px;
        padding: 28px 0 24px 0;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        align-items: center;
        margin: 10px 0 0 0;
    }

    .pillars-section {
        padding: 0 0 18px 0;
    }

    .pillars-top {
        padding: 50px 0 50px 0;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 8px;
    }

    .pillars-title {
        font-size: 22px;
    }

    .pillar-item {
        font-size: 10px;
        padding-bottom: 4px;
    }
}

.news-grid a {

    text-decoration: none;
}