/* Card Novedad Styles */
.card-novedad {
    width: 100%;
    height: 548px;
    border-radius: 8px;
    border: 1px solid #DFDFDF;
    overflow: hidden;
    background: white;
    margin-bottom: 1rem;
}

.card-novedad__image {
    width: 100%;
    height: 292px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.card-novedad__content {
    padding: 24px;
    height: 256px;
    display: flex;
    flex-direction: column;
}

.card-novedad__category {
    font-family: 'Carlito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #19B3E6;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.card-novedad__title {
    font-family: 'Carlito', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #282828;
    line-height: 28.8px;
    margin-bottom: 16px;
}

.card-novedad__description {
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #282828;
    line-height: 24px;
    margin-bottom: auto;
}

.card-novedad__link {
    margin-top: auto;
}

.card-novedad__link a {
    font-family: 'Carlito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #282828;
    opacity: 0.5;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: opacity 0.3s ease;
}

.card-novedad__link a:hover {
    opacity: 1;
}
.card-novedad__link a:hover i {
    color: #199EB8;
}
.card-novedad__link a i {
    color: #B2B2B2;
    margin-left: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-novedad {
        width: 100%;
        max-width: 392px;
        height: auto;
        min-height: 500px;
    }

    .card-novedad__content {
        padding: 20px;
        height: auto;
    }

    .card-novedad__title {
        font-size: 20px;
        line-height: 24px;
    }

    .card-novedad__description {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 576px) {
    .card-novedad__content {
        padding: 16px;
    }

    .card-novedad__title {
        font-size: 18px;
    }

    .card-novedad__category {
        font-size: 12px;
    }
}
