.debate-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2.5rem;
    height: 100px;
    background: var(--red);
    text-decoration: none;
    transition: filter 0.15s;
}

.debate-banner:hover {
    filter: brightness(0.95);
}

.debate-banner-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
}

.debate-banner-btn {
    background: #fff;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 12px 22px;
    border-radius: 8px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .debate-banner {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 1.25rem;
        gap: 0.75rem;
        text-align: center;
    }
    .debate-banner-title {
        font-size: 18px;
        white-space: normal;
    }
    .debate-banner-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}

.home-page{
    width: 100%;
    background-color: var(--paper);
    font-family: var(--font-sans);
    color: var(--ink);
}

.hero {
    display: flex;
    flex-direction: row;
    background-color: #1a2f4d;
    padding: 60px 0;
}

.hero-content {
    padding: 0 40px;
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
}

.hero-intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-intro .label {
    color: var(--yellow);
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-intro .motto {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    padding-bottom: 10px;
}

.hero-intro .motto .highlight {
    color: var(--yellow);
    font-style: italic;
}

.hero-intro .description {
    width: 65%;
    letter-spacing: 0.03em;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.hero-buttons .join {
    background-color: var(--red);
    color: #ffffff;
    border: none;
}

.hero-buttons .work-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-buttons button{
    padding: 15px;
    border-radius: 10px;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-media {
    flex: 1;
    padding: 10px 50px 0px 0px;
    position: relative;
}

.hero-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-stat-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--red);
    border-radius: 12px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.stat-card-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: #fff;
}
.stat-card-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.stats-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #4a7d8e;
}

.stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    flex: 1;
    padding: 20px 0px 30px 0px;
}

.stat-text {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    padding-bottom: 10px;
    font-family: var(--font-serif);
    color: #fff;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.work {
    margin-top: 100px;
}

.work-content {
    margin-left: 40px;
    margin-right: 40px;
}

.work-label {
    letter-spacing: 0.05em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.work-heading {
    width: 50%;
    font-size: 4rem;
    font-family: var(--font-serif);
}

.work-description {
    letter-spacing: 0.05em;
    padding: 30px 0px 50px 0px;
}

.work-items{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
}

.work-card {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}

.work-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #f0f0f0;
    display: block;
    border-radius: 10px;
    border-style: dashed;
}

.card-content {
    margin: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-card .card-label {
    margin-top: 16px;
    color: var(--red);
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 10px 0px 20px 0px;
    font-size: 13px;
}

.card-heading {
    font-family: var(--font-serif);
    font-size: 30px;
    padding-bottom: 30px;
}

.card-description {
    font-family: var(--font-sans);
    color: var(--muted);
    line-height: 1.5;
    padding-bottom: 30px;
}

.card-redirect {
    padding-bottom: 20px;
    display: block;
    text-decoration: none;
    font-family: var(--font-sans);
    color: var(--navy);
    font-weight: 200;
    margin-top: auto;
}

.about {
    margin-top: 150px;
    padding: 0px 40px 0px 40px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 100px;
}

.about-media{
    flex: 1.2;
    display: flex;
    flex-direction: row;
    gap: 20px;
    min-height: 560px;
}

.about-media img{
    border-radius: 12px;
    border-style: dashed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-media div{
    flex: 1;
    display: flex;
    height: 100%;
    min-height: 0;
}

.stacked-photo {
    flex-direction: column;
    gap: 20px;
}

.stacked-photo img {
    flex: 1;
    min-height: 0;
}

.stretched-photo img {
    flex: 1;
    min-height: 0;
}

.about-content{
    flex: 1;
}

.about-label{
    color: var(--teal);
    letter-spacing: 0.05em;
    padding-bottom: 10px;
}

.about-heading {
    font-family: var(--font-serif);
    font-size: 3rem;
    padding-bottom: 30px;
}

.about-body {
    color: var(--muted);
    line-height: 2;
}

.about-points {
    margin-top: 1.5rem;
}

.about-points dt{
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--red);
}



.about-point {
    display: grid;
    grid-template-columns: 7rem 1fr;
    align-items: center;
    padding: 1.25rem 0;
    border-top: 1px solid #e0ddd8;
}

.why {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
    padding: 5rem;
    background: #fefefe;
}

.why-left {
    flex: 0 0 44%;
    display: flex;
    flex-direction: column;
}

.why-label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin: 0 0 1.5rem 0;
}

.why-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.05rem;
    line-height: 1.33;
    color: var(--ink);
    margin: 0 0 2rem 0;
}

.why-mark {
    font-family: var(--font-serif);
    font-style: normal;
    color: var(--red);
}

.why-attribution {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--muted);
    margin: 0;
}

.why-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    padding-top: 2.2rem;
}

.why-point-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.why-square {
    display: inline-block;
    width: 10px;
    height: 10px;
    min-width: 10px;
    background-color: var(--red);
    flex-shrink: 0;
}

.why-point-heading {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    margin: 0;
}

.why-point-body {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    padding-left: 1.55rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 0 0 0;
    }

    .hero-content {
        padding: 0 20px 30px 20px;
    }

    .hero-intro .description {
        width: 100%;
    }

    .hero-media {
        padding: 0;
        width: 100%;
    }

    .hero-image {
        border-radius: 0;
        height: 300px;
    }

    .hero-stat-card {
        bottom: 20px;
        left: 16px;
    }

    .stats-bar {
        flex-wrap: wrap;
    }

    .stat {
        flex: 0 0 50%;
        box-sizing: border-box;
    }

    .stat:not(:last-child) {
        border-right: none;
    }

    .stat:nth-child(1),
    .stat:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .work {
        margin-top: 60px;
    }

    .work-content {
        margin-left: 20px;
        margin-right: 20px;
    }

    .work-heading {
        width: 100%;
        font-size: 2.5rem;
    }

    .work-items {
        flex-direction: column;
        gap: 20px;
    }

    .work-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .work-card img {
        display: none;
    }

    .card-content {
        margin: 14px;
    }

    .card-heading {
        font-size: 1.2rem;
        padding-bottom: 10px;
    }

    .card-description {
        font-size: 0.85rem;
        padding-bottom: 10px;
    }

    .about {
        flex-direction: column;
        padding: 0 20px;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .about-content {
        order: -1;
    }

    .about-media {
        flex: none;
        height: 600px;
    }

    .about-media > .stacked-photo:first-child {
        display: none;
    }

    .about-media > .stretched-photo,
    .about-media > .stacked-photo:last-child {
        flex: 1.5;
    }

    .why {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1.25rem;
    }

    .why-left {
        flex: none;
    }

    .why-right {
        padding-top: 0;
    }
}

.awareness {
    background-color: var(--navy);
    padding: 64px 40px;
    margin-top: 100px;
}

.awareness-label {
    color: var(--yellow);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.awareness-heading {
    color: #FFFFFF;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.awareness-description {
    color: #c4d0e2;
    font-family: var(--font-sans);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.awareness-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.awareness-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a2f52;
    min-height: 280px;
    text-decoration: none;
    display: block;
}

.awareness-card--wide {
    min-height: 500px;
}

.awareness-card--wide .awareness-img {
    object-fit: contain;
}

.awareness-img--top {
    object-position: top;
}

.awareness-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.awareness-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.awareness-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(15, 24, 44, 0.86));
}

.awareness-kicker {
    color: var(--yellow);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.awareness-title {
    color: #FFFFFF;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .awareness {
        padding: 40px 20px;
        margin-top: 60px;
    }

    .awareness-heading {
        font-size: 2.2rem;
    }

    .awareness-grid {
        grid-template-columns: 1fr;
    }

    .awareness-card--wide {
        min-height: 320px;
    }
}
