.sn-cards {
    position: relative;
    padding: 3.5rem 0;
}

.sn-cards__bg {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-size: cover;
    background-position: center;
}

.sn-cards__header {
    position: relative;
    z-index: 1;
}

.sn-cards__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.sn-card {
    background: #fff;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    height: 100%;
}

.sn-card__image {
    border-radius: 16px;
    overflow: hidden;
}

.sn-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sn-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.sn-card__title {
    line-height: 1.35;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.sn-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.4em * 3);
    line-height: 1.4;
    color: var(--text-muted);
}

.sn-card__title--tight {
    font-size: 1rem;
}

.sn-card__title--clamp {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: calc(1.35em * 4);
}

.sn-card__price {
    font-weight: 700;
    color: var(--sn-accent-2);
    margin-top: auto;
}
