.smallNews {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: transparent;
}

.smallNews__inner {
    box-sizing: border-box;
    width: fit-content;
    max-width: min(95vw, 1280px);
    margin-inline: auto;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem);
}

.smallNews__cluster {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    width: max-content;
    max-width: 100%;
    gap: clamp(1.25rem, 3vw, 2rem);
}

.smallNews__title {
    margin: 0;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    color: #a3b199;
    font-family: "WixMadeforText", "Raleway", system-ui, sans-serif;
    font-size: clamp(1.375rem, 0.55rem + 2.6vw, 3.125rem);
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
}

/* Grid: match .textCard__grid */
.smallNews__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: fit-content;
    max-width: 100%;
    gap: clamp(1.25rem, 3vw, 3.125rem);
}

/* Card shell: same box model as .textCard__card; image sits behind content */
.smallNews__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    flex: 0 0 auto;
    width: 19vw;
    height: 56vh;
    min-width: 0;
    max-width: 100%;
    min-height: clamp(240px, 32vw, 340px);
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: left;
    text-decoration: none;
    border-radius: clamp(14px, 2vw, 20px);
    overflow: hidden;
    gap: clamp(0.375rem, 1.2vw, 0.625rem);
    background-color: #a3b199;
}

.smallNews__cardBg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.smallNews__cardBg--placeholder {
    opacity: 0.35;
}

.smallNews__cardOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.88) 0%, rgba(18, 18, 18, 0.4) 50%, rgba(18, 18, 18, 0.15) 100%);
    pointer-events: none;
}

.smallNews__cardBody {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    width: 100%;
    gap: clamp(0.375rem, 1.2vw, 0.625rem);
    max-width: 100%;
    text-align: left;
}

.smallNews__category {
    margin: 0;
    font-family: "WixMadeforText", "Raleway", system-ui, sans-serif;
    font-size: clamp(0.625rem, 0.22rem + 1.1vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #a3b199;
}

/* Match .textCard__cardTitle */
.smallNews__cardTitle {
    margin: 0;
    max-width: 100%;
    color: var(--Vit, #ffffff);
    font-family: "WixMadeforText", "Raleway", system-ui, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
}

/* Match .textCard__description scale; light text for readability on image overlay */
.smallNews__excerpt {
    margin: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    color: #A3B199;
    font-family: "WixMadeforText", "Raleway", system-ui, sans-serif;
    font-size: clamp(0.9375rem, 0.35vw + 0.82rem, 1.6875rem);
    font-weight: 400;
    line-height: 1.55;
}

.smallNews__actions {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.25rem, 3vw, 2rem);
}

.smallNews__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.5rem;
    border-radius: 40px;
    background-color: #a3b199;
    color: #121212;
    font-family: "WixMadeforText", "Raleway", system-ui, sans-serif;
    font-size: clamp(0.8125rem, 0.35rem + 1.1vw, 0.9375rem);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.smallNews__button:hover {
    background: #79896D;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.42) inset, 3px 3px 10px 0 rgba(255, 255, 255, 0.20);
}

.smallNews__button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 1299px) {
    .smallNews__inner {
        max-width: min(98vw, 1280px);
        padding-inline: clamp(1rem, 3vw, 1.75rem);
    }

    .smallNews__card {
        padding: 20px;
    }

    .smallNews__cardTitle {
        font-size: 22px;
    }

    .smallNews__excerpt {
        font-size: 14px;
    }
}

@media (min-width: 781px) {
    .smallNews__inner {
        width: 100%;
    }

    .smallNews__cluster {
        width: 100%;
        max-width: 100%;
    }

    .smallNews__grid {
        flex-wrap: nowrap;
        width: 100%;
    }

    .smallNews__card {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .smallNews__cardTitle {
        font-size: 18px;
    }

    .smallNews__excerpt {
        font-size: 12px;
    }
}

@media (max-width: 960px) {
    .smallNews__card {
        height: 40vh;
    }
}

@media (max-width: 780px) {
    .smallNews__title {
        text-align: center;
        font-size: 36px;
    }

    .smallNews__grid {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        width: min(92vw, 26rem);
        max-width: 100%;
    }

    .smallNews__card {
        width: 100%;
        min-height: 0;
        padding-block: clamp(2.5rem, 9vw, 3.75rem);
        padding-inline: clamp(1.25rem, 4vw, 1.75rem);
    }

    .smallNews__cardTitle {
        font-size: clamp(1.25rem, 0.55rem + 2.75vw, 1.5rem);
    }

    .smallNews__excerpt {
        font-size: clamp(1rem, 0.4rem + 2.25vw, 1.125rem);
    }
}
