/* Planes Teaser CSS */

.card-sendaviva {
    background-color: #e8eec8;
    /* Approximate beige color from image */
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-image-planes {
    width: 100%;
    /* Fixed height for consistency */
    overflow: hidden;
    max-height: 250px;
}

.card-image-planes img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.card-content-planes {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: #1f1f1f;
    /* Dark text */
}

/* Title */
.card-title-planes {
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-title-planes a {
    font-family: var(--font-sans, "Plus Jakarta Sans", sans-serif);
    font-weight: 700;
    font-size: 26px;
    color: #1f1f1f;
    text-decoration: none;
}

.card-title-planes a:hover {
    text-decoration: underline;
}

/* Duration */
.plane-duration {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
}

/* Description */
.plane-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.plane-description p {
    margin-bottom: 10px;
}

/* Prices */
.plane-prices {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: bold;
}

.plane-price-item {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}

/* Button */
.card-footer-planes {
    margin-top: auto;
    /* Push to bottom */
}

.btn-sendaviva-planes {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #333;
    border-radius: 50px;
    /* Pill shape */
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-sendaviva-planes:hover {
    background-color: #333;
    color: #fff;
}

.plane-prices .field__label {
    font-weight: bold !important;
}

.plane-duration .field__label {
    font-weight: bold !important;
}

.view.view-planes-molones {
    margin-bottom: 84px;
}