/* CoreStack Club News */

.cs-club-news {
    width: 100%;
}

.cs-news-item {
    display: grid;
    grid-template-columns: minmax(0, 365px) minmax(0, 1fr);
    gap: 38px;
    align-items: center;

    padding-bottom: 28px;
    margin-bottom: 26px;

    border-bottom: 1px solid #dddddd;
}

.cs-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}


/* IMAGE */

.cs-news-image {
    width: 100%;
    aspect-ratio: 1.46 / 1;
    overflow: hidden;
    border-radius: 18px;
}

.cs-news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* CONTENT */

.cs-news-content {
    min-width: 0;
}

.cs-news-title {
    margin: 0 0 18px 0;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.05;

    color: #00245e;
    text-transform: none;
}

.cs-news-excerpt {
    margin: 0;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;

    color: #111111;
}


/* DATE */

.cs-news-date {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 22px;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;

    color: #0057ff;
}


/* CSS CALENDAR ICON */

.cs-news-calendar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: currentColor;
}

.cs-news-calendar svg {
    display: block;
    width: 100%;
    height: 100%;
}


/* TABLET */

@media (max-width: 1024px) {

    .cs-news-item {
        grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
        gap: 25px;
    }

    .cs-news-title {
        font-size: 23px;
    }

    .cs-news-excerpt {
        font-size: 16px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .cs-news-item {
        grid-template-columns: 1fr;
        gap: 13px;

        padding-bottom: 22px;
        margin-bottom: 22px;
    }

    .cs-news-image {
        aspect-ratio: 16 / 9;
        border-radius: 13px;
    }

    .cs-news-title {
        font-size: 19px;
        line-height: 1.08;
        margin-bottom: 10px;
    }

    .cs-news-excerpt {
        font-size: 14.5px;
        line-height: 1.45;
    }

    .cs-news-date {
        margin-top: 14px;
        font-size: 14px;
        gap: 8px;
    }

    .cs-news-calendar {
        width: 19px;
        height: 19px;
        flex: 0 0 19px;
    }

}