/* ============================================ */
/*                   About                      */
/* ============================================ */

#about {
    padding: var(--sectionPadding);
    background: #fff;
}

#about .cs-container {
    width: 100%;
    max-width: 78.125rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

#about .cs-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

#about .cs-title {
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    margin: 0;
}

#about .cs-title em {
    font-style: normal;
    color: var(--signingGold);
}

#about .cs-intro {
    color: var(--charcoal);
    margin: 0;
}

#about .cs-card-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#about .cs-card {
    background: #fff;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--signingGold);
    border-radius: 0.5rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

#about .cs-number {
    font-size: clamp(2rem, 4vw, 2rem);
    font-family: var(--headerFont);
    font-weight: 500;
    color: var(--signingGold);
    line-height: 1;
    min-width: 2rem;
    flex-shrink: 0;
}

#about .cs-card-text {
    font-size: 0.875rem;
    color: var(--charcoal);
    margin: 0;
    font-weight: 500;
}

#about .cs-closing {
    color: var(--charcoal);
    margin: 0;
    font-weight: 500;
}

#about .cs-button-solid {
    align-self: flex-start;
}

#about .cs-image {
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

#about .cs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media only screen and (min-width: 768px) {
    #about {
        padding-top: 8.125rem;
    }

    #about .cs-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    #about .cs-image {
        aspect-ratio: 1 / 1;
    }
}

/* ============================================ */
/*                    Stats                     */
/* ============================================ */

#stats-collab {
    background: var(--navy);
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
}

#stats-collab::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(15, 47, 91, 0.95), rgba(15, 47, 91, 0.98)),
        url("https://websthetic.tor1.cdn.digitaloceanspaces.com/brooklyn-college/landing-page/pexels-pavel-danilyuk-8423005.jpg") center center / cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

#stats-collab .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#stats-collab .cs-top {
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#stats-collab .cs-title {
    color: var(--white);
    margin-bottom: 1.375rem;
    text-wrap: balance;
    text-align: center;
}

#stats-collab .cs-title em {
    font-style: normal;
    color: var(--signingGold);
}

#stats-collab .cs-text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 48ch;
    margin-left: auto;
    margin-right: auto;
}

#stats-collab .cs-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    list-style: none;
    margin: 0;
    padding-left: 0;
}

#stats-collab .cs-stat {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
}

#stats-collab .cs-stat:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

#stats-collab .cs-number {
    font-family: var(--headerFont);
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
}

#stats-collab .cs-number sup {
    font-size: 0.42em;
    color: var(--signingGold);
    vertical-align: super;
}

#stats-collab .cs-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    margin-bottom: 0.25rem;
    display: block;
}

#stats-collab .cs-stat-sub {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.58);
    display: block;
}

#stats-collab .cs-cta-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

#stats-collab .cs-cta {
    display: inline-block;
    font-size: 0.8rem;
    font-family: var(--headerFont);
    color: #fff;
    padding: 0.9rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 6.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: background 0.22s ease, border-color 0.22s ease;
}

#stats-collab .cs-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

@media only screen and (min-width: 768px) {
    #stats-collab .cs-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(2.5rem, 5vw, 4rem);
    }

    #stats-collab .cs-stat {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 1024px) {
    #stats-collab .cs-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(3rem, 5vw, 5rem);
        max-width: 75rem;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================ */
/*                  Programs                    */
/* ============================================ */

#programs-1531 {
    padding: var(--sectionPadding);
    background-color: var(--white);
}

#programs-1531 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
}

#programs-1531 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#programs-1531 .cs-title {
    color: var(--navy);
    max-width: 52.5rem;
    margin: 0 0 0.75rem 0;
}

#programs-1531 .cs-text {
    color: var(--silver);
    max-width: 31.25rem;
}

#programs-1531 .cs-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

#programs-1531 .cs-img-card {
    border-radius: 1rem;
    overflow: hidden;
    min-height: clamp(17.5rem, 30vw, 22.5rem);
    position: relative;
    display: block;
}

#programs-1531 .cs-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s ease;
}

#programs-1531 .cs-img-card:hover img {
    transform: scale(1.03);
}

#programs-1531 .cs-text-card {
    background-color: #fbfbfb;
    border-radius: 1rem;
    padding: clamp(2rem, 5vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    border: 1px solid rgba(15, 47, 91, 0.08);
}

#programs-1531 .cs-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--signingGold);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.3125rem 0.875rem;
    border-radius: 6.25rem;
    width: fit-content;
}

#programs-1531 .cs-program-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 900;
    color: var(--navy);
    margin: 0;
    line-height: 1.25em;
}

#programs-1531 .cs-program-text {
    color: var(--silver);
    margin: 0;
}

#programs-1531 .cs-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1rem;
    font-family: var(--headerFont);
    color: var(--brooklynBlue);
    text-decoration: none;
    margin-top: 0.25rem;
    transition: gap 0.2s ease;
}

#programs-1531 .cs-link::after {
    content: "→";
}

#programs-1531 .cs-link:hover {
    gap: 0.625rem;
}

@media only screen and (min-width: 768px) {
    #programs-1531 .cs-row {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    #programs-1531 .cs-row--reverse .cs-img-card {
        order: 2;
    }

    #programs-1531 .cs-row--reverse .cs-text-card {
        order: 1;
    }
}

/* ============================================ */
/*              School News                     */
/* ============================================ */

#school-news {
    background: #f6f6f6;
    padding: var(--sectionPadding);
}

#school-news .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 0.4rem; /* Changed from 0.4rem - you might want 1.5rem or match other sections */
}

#school-news a {
    text-decoration: none;
}

#school-news .cs-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(15, 47, 91, 0.1);
    padding-bottom: 1.25rem;
    margin-bottom: 3rem;
}

#school-news .cs-title {
    color: var(--navy);
    margin: 0;
}

#school-news .cs-view-all {
    font-size: 1rem;
    font-family: var(--headerFont);
    text-transform: capitalize;
    font-weight: 700;
    color: var(--brooklynBlue);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

#school-news .cs-view-all:hover {
    color: var(--navy);
}

#school-news .cs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* ========== Featured Article ========== */
#school-news .cs-featured {
    display: flex;
    flex-direction: column;
}

#school-news .cs-featured-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    position: relative;
}

#school-news .cs-featured-img a {
    display: block;
    width: 100%;
    height: 100%;
}

#school-news .cs-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

#school-news .cs-featured-img:hover img {
    transform: scale(1.03);
}

#school-news .cs-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    font-size: 0.625rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.375rem 0.875rem;
    border-radius: 6.25rem;
    display: block;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

#school-news .cs-featured-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#school-news .cs-featured-title {
    font-family: var(--headerFont);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--navy);
    line-height: 1.3em;
    text-decoration: none;
    margin: 0 0 0.5rem;
    display: block;
    transition: color 0.2s ease;
}

#school-news .cs-featured-title:hover {
    color: var(--brooklynBlue);
}

#school-news .cs-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6em;
    color: var(--charcoal);
    margin: 0 0 0.75rem;
}

#school-news .cs-date {
    font-size: 0.8125rem;
    color: var(--silver);
    font-weight: 500;
}

/* ========== Compact List Cards ========== */
#school-news .cs-cards {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.75rem;
}

#school-news .cs-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

#school-news .cs-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

#school-news .cs-card-link {
    display: block;
    padding: 0.875rem;
    text-decoration: none;
}

#school-news .cs-card-row {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

#school-news .cs-card-img {
    width: 4.5rem;
    height: 4.5rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.375rem;
}

#school-news .cs-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

#school-news .cs-card:hover .cs-card-img img {
    transform: scale(1.08);
}

#school-news .cs-card-body {
    flex: 1;
    min-width: 0;
}

#school-news .cs-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4em;
    text-decoration: none;
    text-transform: capitalize;
    margin: 0 0 0.375rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#school-news .cs-card .cs-date {
    font-size: 0.75rem;
    color: var(--silver);
}

/* ========== Responsive ========== */
@media only screen and (min-width: 480px) {
    #school-news .cs-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 0;
    }

    #school-news .cs-card-img {
        width: 5rem;
        height: 5rem;
    }
}

@media only screen and (min-width: 768px) {
    #school-news .cs-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    #school-news .cs-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    #school-news .cs-card-link {
        padding: 1rem;
    }

    #school-news .cs-card-row {
        flex-direction: column;
    }

    #school-news .cs-card-img {
        width: 100%;
        height: 8rem;
        border-radius: 0.5rem;
    }

    #school-news .cs-card-title {
        font-size: 1rem;
        -webkit-line-clamp: 2;
    }
}

@media only screen and (min-width: 900px) {
    #school-news .cs-grid {
        grid-template-columns: 1fr;  /* Changed: single column layout */
        gap: 2rem;
    }

    #school-news .cs-featured {
        position: relative;
        width: 100%;  /* Full width */
    }

    #school-news .cs-featured-img {
        aspect-ratio: unset;
        height: clamp(20rem, 40vw, 28rem);  /* Fixed height instead of 100% */
        margin-bottom: 0;
    }

    #school-news .cs-featured-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(10, 22, 40, 0.95) 0%,
            rgba(10, 22, 40, 0.6) 40%,
            rgba(10, 22, 40, 0.1) 80%,
            rgba(10, 22, 40, 0) 100%
        );
        z-index: 1;
    }

    #school-news .cs-featured-body {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem;
        z-index: 2;
    }

    #school-news .cs-featured-title {
        color: var(--white);
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        margin-bottom: 0.75rem;
    }

    #school-news .cs-featured-title:hover {
        color: rgba(255, 255, 255, 0.85);
    }

    #school-news .cs-excerpt {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    #school-news .cs-date {
        color: var(--silver);
    }

    /* Cards in a row below featured article */
    #school-news .cs-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);  /* 3 columns */
        gap: 1rem;
    }

    #school-news .cs-card-link {
        padding: 1rem;
    }

    #school-news .cs-card-row {
        flex-direction: column;
    }

    #school-news .cs-card-img {
        width: 100%;
        height: 8rem;
        border-radius: 0.5rem;
    }

    #school-news .cs-card-title {
        font-size: 1rem;
        -webkit-line-clamp: 2;
    }
}
/* ============================================ */
/*             Community Bento                  */
/* ============================================ */

#community-bento {
    padding: var(--sectionPadding);
    background-color: var(--white);
}

#community-bento .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 2.5rem);
}

#community-bento .cs-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#community-bento .cs-title {
    color: var(--navy);
    margin: 0;
}

#community-bento .cs-text {
    color: var(--silver);
    max-width: 35rem;
}

#community-bento .cs-bento {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

#community-bento .cs-bento-feature {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    height: clamp(14rem, 55vw, 20rem);
}

#community-bento .cs-bento-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 36, 0.28);
    z-index: 1;
}

#community-bento .cs-bento-card {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    height: clamp(10rem, 38vw, 14rem);
    display: block;
    text-decoration: none;
}

#community-bento .cs-bento-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 36, 0.5);
    z-index: 1;
    transition: background 0.25s ease;
}

#community-bento .cs-bento-card:hover::before {
    background: rgba(8, 16, 36, 0.34);
}

#community-bento .cs-bento-card:hover .cs-bento-picture img {
    transform: scale(1.04);
}

#community-bento .cs-bento-card:hover .cs-bento-arrow {
    opacity: 1;
}

#community-bento .cs-bento-picture {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

#community-bento .cs-bento-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

#community-bento .cs-bento-tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.3125rem 0.6875rem;
    border-radius: 6.25rem;
}

#community-bento .cs-bento-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.875rem 1rem 1.125rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

#community-bento .cs-bento-num {
    font-size: 0.625rem;
    color: var(--signingGold);
    line-height: 1;
}

#community-bento .cs-bento-label {
    font-size: 0.875rem;
    color: var(--white);
    line-height: 1.2;
}

#community-bento .cs-bento-arrow {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    z-index: 2;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

@media only screen and (min-width: 48rem) {
    #community-bento .cs-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 3rem;
    }

    #community-bento .cs-text {
        flex-shrink: 0;
        width: 45%;
    }

    #community-bento .cs-bento {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.625rem;
    }

    #community-bento .cs-bento-feature {
        grid-column: 1 / -1;
        height: clamp(16rem, 40vw, 22rem);
    }

    #community-bento .cs-bento-card {
        height: clamp(12rem, 28vw, 16rem);
    }
}

@media only screen and (min-width: 64rem) {
    #community-bento .cs-bento {
        grid-template-columns: 1.15fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 28.75rem;
    }

    #community-bento .cs-bento-feature {
        grid-column: 1;
        grid-row: 1 / 3;
        height: auto;
    }

    #community-bento .cs-bento-card {
        height: auto;
    }
}

/* ============================================ */
/*             Upcoming Events                  */
/* ============================================ */

#upcoming-events {
    background: var(--white);
    padding: var(--sectionPadding);
}

#upcoming-events .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
}

#upcoming-events .cs-header {
    text-align: center;
    width: 100%;
    margin-bottom: clamp(2.5rem, 5vw, 3rem);
}

#upcoming-events .cs-title {
    color: var(--navy);
    margin: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

#upcoming-events .cs-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    list-style: none;
    padding: 0;
}

#upcoming-events .cs-card {
    border: 1px solid rgba(15, 47, 91, 0.08);
    border-top: 3px solid var(--signingGold);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#upcoming-events .cs-card:hover {
    border-color: rgba(15, 47, 91, 0.2);
    border-top-color: var(--signingGold);
    box-shadow: 0 4px 20px rgba(15, 47, 91, 0.06);
}

#upcoming-events .cs-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.5rem;
    background: var(--navy);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

#upcoming-events .cs-badge-day {
    font-size: 1.375rem;
    color: var(--white);
    line-height: 1;
    display: block;
}

#upcoming-events .cs-badge-month {
    font-size: 0.5625rem;
    color: var(--signingGold);
    display: block;
}

#upcoming-events .cs-event-title {
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

#upcoming-events .cs-meta {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: auto;
}

#upcoming-events .cs-meta-line {
    font-size: 0.875rem;
    color: var(--silver);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

#upcoming-events .cs-meta-line svg {
    width: 0.8125rem;
    height: 0.8125rem;
    stroke: var(--brooklynBlue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

#upcoming-events .cs-footer {
    display: flex;
    justify-content: center;
}

@media only screen and (min-width: 560px) {
    #upcoming-events .cs-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 900px) {
    #upcoming-events .cs-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}