.osm-latest-featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    width: 100vw;
    max-width: 100vw;
    min-height: 500px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.osm-featured-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
}

.osm-featured-card:hover,
.osm-featured-card:hover .osm-featured-title {
    text-decoration: none !important;
}

.osm-featured-card:hover::after {
    opacity: 1;
}

.osm-featured-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
}

.osm-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.72) 100%);
    z-index: 1;
}

.osm-featured-title {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    padding: 0 24px 18px;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.osm-featured-card:nth-child(2) .osm-featured-title,
.osm-featured-card:nth-child(3) .osm-featured-title {
    font-size: 22px;
}

@media (max-width: 1024px) {
    .osm-latest-featured-grid {
        grid-template-columns: 1fr;
    }

    .osm-featured-card {
        min-height: 360px;
    }
}