.hola-hover-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: start;
    margin: 0 auto;
}

.hola-hover-card {
    position: relative;
    height: 370px;
    width: 100%;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hola-hover-card .card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease-out;
}

.hola-hover-card:hover .card-media {
    transform: scale(1.1);
}

.hola-hover-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.05) 100%);
    transition: all 0.5s ease;
    opacity: 0.8;
    z-index: 1;
}

.hola-hover-card:hover::before {
    background: #04080f;
    opacity: 1;
}

.hola-hover-card .card-body {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.hola-hover-card .card-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0.25rem;
    transition: all 0.5s ease;
}

.hola-hover-card:hover .card-category {
    background: #C5A059;
    border-color: #C5A059;
}

.hola-hover-card .card-title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
    transition: transform 0.5s ease-out;
    position: relative;

    &:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        background-color: #c5a059;
        width: 48px;
        height: 2px;
        transition: width 0.5s ease-out;
    }
}

.hola-hover-card:hover .card-title {
    transform: translateY(-0.5rem);

    &:after {
        width: 100%;
    }
}

.hola-hover-card .card-desc {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: all 0.5s ease-out;
    overflow: hidden;
    margin-top: 0;
    font-size: 14px;
}

.hola-hover-card:hover .card-desc {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 1rem;
}

.hola-hover-card .card-desc-content {
    overflow: hidden;
}

.hola-hover-card .card-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hola-hover-card .card-desc li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.hola-hover-card .card-desc li:last-child {
    margin-bottom: 0;
}

.hola-hover-card .card-desc li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #C5A059;
    flex-shrink: 0;
    margin-top: 12px;
}

.hola-hover-card .card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #C5A059;
    transition: color 0.3s ease;
    margin-top: 1.5rem;
}

.hola-hover-card:hover .card-link {
    color: white;
}

.hola-hover-card .card-link .arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.hola-hover-card:hover .card-link .arrow {
    transform: translateX(0.25rem);
}

@media (max-width: 768px) {
    .hola-hover-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hola-hover-card {
        height: 330px;
    }
}
