/* Alpha Destinos - cards públicos compactos e uniformes */

.alpha-results-title-v5 {
    margin: 0 0 30px;
    color: #151515;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    text-align: center;
}

.alpha-destination-grid-v5 {
    align-items: stretch;
}

.alpha-destination-grid-v5 > [class*="col-"] {
    display: flex;
}

.alpha-destination-grid-v5 .alpha-card {
    width: 100%;
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.alpha-destination-grid-v5 .alpha-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 600 / 366;
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    background: #e6e8e9;
}

.alpha-destination-grid-v5 .alpha-card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.alpha-destination-grid-v5 .alpha-card-body {
    min-width: 0;
    min-height: 164px;
    padding: 23px 22px 16px;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
}

.alpha-destination-grid-v5 .alpha-card-body h5 {
    height: 4.05em;
    min-height: 4.05em;
    margin: 0 0 9px;
    overflow: hidden;
    color: #151515;
    font-size: 20px;
    line-height: 1.35;
    text-align: center;
}

.alpha-destination-grid-v5 .alpha-card-body h5 a {
    display: -webkit-box;
    overflow: hidden;
    color: #151515;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.alpha-destination-grid-v5 .alpha-meta {
    min-height: 48px;
    margin: 0;
    display: flex;
    align-content: flex-start;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 12px;
    text-align: center;
}

.alpha-destination-grid-v5 .alpha-meta span {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
}

.alpha-destination-grid-v5 .alpha-card-body > p {
    min-height: 0;
    margin: 9px 0 0;
    overflow: hidden;
    color: #6f7478;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.alpha-destination-grid-v5 .alpha-card-footer-v5 {
    width: 100%;
    min-height: 128px;
    margin-top: auto;
    padding: 17px 22px 21px;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 13px;
    border-top: 1px solid #edf0f1;
}

.alpha-destination-grid-v5 .alpha-card-footer-v5 .alpha-price {
    width: 100%;
    display: block;
    margin: 0;
    color: #01b3a7;
    font-size: clamp(21px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.alpha-destination-grid-v5 .alpha-card-footer-v5 > div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.alpha-destination-grid-v5 .alpha-card-footer-v5 .button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    margin: 0;
    padding: 9px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.alpha-destination-grid-v5 .alpha-card-footer-v5 .button-black-outline {
    color: #151515 !important;
    border: 2px solid #151515 !important;
    background: #fff !important;
}

.alpha-destination-grid-v5 .alpha-card-footer-v5 .button-black-outline:hover,
.alpha-destination-grid-v5 .alpha-card-footer-v5 .button-black-outline:focus {
    color: #fff !important;
    background: #151515 !important;
}

.alpha-destination-grid-v5 .alpha-card-footer-v5 .button-secondary {
    color: #fff !important;
    border: 2px solid #01b3a7 !important;
    background: #01b3a7 !important;
}

.alpha-destination-grid-v5 .alpha-card-footer-v5 .button-secondary:hover,
.alpha-destination-grid-v5 .alpha-card-footer-v5 .button-secondary:focus {
    color: #fff !important;
    border-color: #018f87 !important;
    background: #018f87 !important;
}

@media (max-width: 767.98px) {
    .alpha-destination-grid-v5 .alpha-card-body {
        min-height: 146px;
    }

    .alpha-destination-grid-v5 .alpha-card-body h5 {
        height: auto;
        min-height: 2.7em;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 419.98px) {
    .alpha-destination-grid-v5 .alpha-card-footer-v5 > div {
        grid-template-columns: 1fr;
    }

    .alpha-destination-grid-v5 .alpha-card-footer-v5 {
        min-height: 184px;
    }
}

