.tks-home-showcase {
    padding: 3.2rem 0 2.4rem;
}

.tks-home-showcase + .tks-home-showcase {
    padding-top: 1.6rem;
}

.tks-home-showcase__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.6rem;
    margin-bottom: 2rem;
}

.tks-home-showcase__title {
    margin: 0;
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.tks-home-showcase__link {
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgb(var(--color-foreground, 18 18 18));
    text-decoration: none;
    white-space: nowrap;
}

.tks-home-showcase__link:hover {
    text-decoration: underline;
}

.tks-home-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 750px) {
    .tks-home-showcase__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem 1.6rem;
    }
}

.tks-home-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgb(var(--color-background, 255 255 255));
    border: 1px solid rgba(var(--color-foreground, 18 18 18), 0.08);
    border-radius: 0.8rem;
    overflow: hidden;
}

.tks-home-product-card__media {
    display: block;
    aspect-ratio: 4 / 5;
    background: rgba(var(--color-foreground, 18 18 18), 0.04);
    overflow: hidden;
}

.tks-home-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.tks-home-product-card:hover .tks-home-product-card__media img {
    transform: scale(1.03);
}

.tks-home-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.2rem 1.2rem 1.4rem;
}

.tks-home-product-card__cat {
    font-size: 1.1rem;
    line-height: 1.3;
    color: rgba(var(--color-foreground, 18 18 18), 0.5);
    text-transform: capitalize;
}

.tks-home-product-card__title {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.35;
    font-weight: 600;
}

.tks-home-product-card__title a {
    color: rgb(var(--color-foreground, 18 18 18));
    text-decoration: none;
}

.tks-home-product-card__title a:hover {
    text-decoration: underline;
}

.tks-home-product-card__price {
    margin: 0.2rem 0 0;
    font-size: 1.35rem;
    color: rgb(var(--color-foreground, 18 18 18));
}
