.festivo-event-card-footer {
    display: grid;
    gap: .65rem;
}

.festivo-event-card-main-actions {
    display: flex;
    gap: .5rem;
}

.festivo-event-card-main-actions .btn {
    flex: 1;
}

.festivo-event-card-feature-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
}

.festivo-event-feature-action {
    display: flex;
    align-items: center;
    gap: .45rem;
    min-width: 0;
    padding: .58rem .65rem;
    border: 1px solid #e7e1fa;
    border-radius: 10px;
    background: #f7f5ff;
    color: #5d45b5;
    font-size: .75rem;
    font-weight: 800;
    text-decoration: none;
    transition: .2s;
}

.festivo-event-feature-action:hover {
    background: #eee9ff;
    color: #482f9b;
}

.festivo-event-feature-action span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.festivo-event-feature-action > :first-child { color: #8b68db; }
.festivo-event-feature-action > :last-child { margin-left: auto; font-size: .65rem; }

@media (max-width: 380px) {
    .festivo-event-card-main-actions,
    .festivo-event-card-feature-actions { grid-template-columns: 1fr; display: grid; }
}
