.home-catalog__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
}

.home-catalog__card {
    margin: 0;
    min-height: 100%;
}

.home-catalog__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: var(--prichal-surface);
    border-radius: var(--prichal-radius-lg);
    overflow: hidden;
    box-shadow: var(--prichal-shadow-sm);
    border: 1px solid var(--prichal-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-catalog__link:hover {
    transform: translateY(-4px);
    box-shadow: var(--prichal-shadow-md);
    color: inherit;
}

.home-catalog__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-catalog__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(8, 35, 58, 0.15) 60%,
        rgba(8, 35, 58, 0.55) 100%
    );
    pointer-events: none;
}

.home-catalog__badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    margin: 0;
    padding: 10px 16px;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    border-radius: var(--prichal-radius-pill);
    background: var(--prichal-brand);
    line-height: 1.2;
}

.home-catalog__body {
    padding: 16px 18px 20px clamp(22px, 2.5vw, 28px);
    flex: 1;
}

.home-catalog__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--prichal-ink-muted);
}

@media (min-width: 992px) {
    .home-catalog__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .home-catalog__grid {
        grid-template-columns: 1fr;
    }
}
