.lca-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lca-card,
.lca-featured-card {
    position: relative;
    overflow: hidden;
}

.lca-card img,
.lca-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition:
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s ease;
}

.lca-card:hover img,
.lca-featured-card:hover img {
    transform: scale(1.08);
}

.lca-overlay,
.lca-featured-overlay {
    position: absolute;
    inset: 0;

    transition: opacity 0.5s ease;
}

.lca-overlay {
    background: rgba(0, 0, 0, .25);
}

.lca-featured-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .3),
            transparent);
}

.lca-card:hover .lca-overlay,
.lca-featured-card:hover .lca-featured-overlay {
    opacity: 0.9;
}

.lca-content {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 24px;
    color: #fff;
    z-index: 2;
}

.lca-content h3 {
    font-size: 32px;
    margin: 0;
}

.lca-content p {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lca-index {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 11px;
    letter-spacing: .3em;
    color: rgba(255, 255, 255, .8);
    z-index: 3;
}

.lca-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lca-featured-card {
    display: flex;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.lca-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lca-featured-overlay {
    position: absolute;
    inset: 0;
}

.lca-featured-content {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.lca-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
}

.lca-count {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.9;
}

@media(max-width: 1024px) {

    .lca-grid,
    .lca-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {

    .lca-grid,
    .lca-featured-grid {
        grid-template-columns: 1fr;
    }
}