
/* WRAPPER */

.entry-catalog {
    max-width: 960px;
    margin: 48px auto 40px;
}

/* HEADER */

.entry-catalog__head {
    margin-bottom: 22px;
}

.entry-catalog__head h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.entry-catalog__head p {
    font-size: 14px;
    color: #8e8e93;
}

/* GRID */

.entry-catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* COLUMN */

.entry-col__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 12px;
}

.entry-col__items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ITEM */

.entry-col__items a {
    padding: 10px 16px;
    border-radius: 14px;
    background: #f5f6f8;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.entry-col__items a:hover {
    background: #eceff4;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 768px) {
    .entry-catalog {
        margin: 32px 16px;
    }

    .entry-catalog__head h3 {
        font-size: 18px;
    }

    .entry-catalog__head p {
        font-size: 13px;
    }

    .entry-catalog__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

