.horoh-tipos-eventos-grid {
    display: grid;
    gap: 36px 28px;
    align-items: start;
}

.horoh-tipos-eventos-grid.cols-1 {
    grid-template-columns: 1fr;
}

.horoh-tipos-eventos-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.horoh-tipos-eventos-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.horoh-tipos-eventos-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.horoh-tipos-eventos-grid.cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.horoh-tipos-eventos-grid.cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.horoh-tipos-eventos-grid.cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.horoh-tipos-eventos-grid.cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.horoh-tipos-eventos-grid.cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.horoh-tipo-evento-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    width: 100%;
}

.horoh-tipo-evento-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.horoh-tipo-evento-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.horoh-tipo-evento-content {
    display: block;
    width: 100%;
    min-width: 0;
    text-align: center;
}

.horoh-tipo-evento-title {
    display: block;
    margin: 0;
    text-align: center;
    font-family: 'Aboreto', serif;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: .04em;
    font-weight: 400;
}

.horoh-tipo-evento-desc {
    display: block;
    margin-top: 8px;
    text-align: center;
    font-family: 'Aboreto', serif;
    font-size: 13px;
    line-height: 1.5;
    opacity: .82;
}

@media (max-width: 1024px) {
    .horoh-tipos-eventos-grid.cols-6,
    .horoh-tipos-eventos-grid.cols-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .horoh-tipos-eventos-grid.cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .horoh-tipos-eventos-grid.cols-6,
    .horoh-tipos-eventos-grid.cols-5,
    .horoh-tipos-eventos-grid.cols-4,
    .horoh-tipos-eventos-grid.cols-3,
    .horoh-tipos-eventos-grid.cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .horoh-tipo-evento-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .horoh-tipo-evento-title {
        font-size: 14px;
    }
}
