/* Shared itinerary hero — approved Best of Vietnam structure */

.itin-hero__eyebrow {
    display: inline-flex;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.itin-hero__title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 1rem 0 0.65rem;
}

.itin-hero__tour-type {
    margin: 0 0 1.15rem;
    color: rgba(219, 234, 254, 0.95);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.itin-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0;
    margin: 0 0 1.35rem;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.itin-hero__fact {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 7.5rem;
    padding-right: 1.25rem;
    margin-right: 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.itin-hero__fact:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}

.itin-hero__fact-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(191, 219, 254, 0.85);
}

.itin-hero__fact-value {
    font-size: 0.98rem;
    font-weight: 500;
    color: #eff6ff;
    line-height: 1.35;
}

.itin-hero__fact--price .itin-hero__fact-value {
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
}

.itin-hero__intro {
    margin: 0 0 1rem;
    color: #eff6ff;
    font-size: 1.05rem;
    line-height: 1.65;
}

.itin-hero__custom {
    margin: 0 0 1.5rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.75rem;
    color: rgba(239, 246, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.55;
}

.itin-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 3rem;
    padding: 0.8rem 1.6rem;
    background: #fff;
    color: #1e40af;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.itin-hero__cta:hover {
    background: #eff6ff;
}

@media (max-width: 640px) {
    .itin-hero__fact {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
        padding-bottom: 0.65rem;
        margin-bottom: 0.65rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .itin-hero__fact:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

    .itin-hero__cta {
        width: 100%;
    }
}

/* Hebrew / RTL adjustments (match approved he prototype) */
html[dir="rtl"] .itin-hero__title {
    line-height: 1.15;
    letter-spacing: -0.01em;
}

html[dir="rtl"] .itin-hero__tour-type {
    letter-spacing: 0;
}

html[dir="rtl"] .itin-hero__fact {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
    padding-left: 1.25rem;
    margin-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

html[dir="rtl"] .itin-hero__fact:last-child {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
}

html[dir="rtl"] .itin-hero__fact-label {
    letter-spacing: 0.04em;
    text-transform: none;
}

html[dir="rtl"] .itin-hero__fact-value {
    unicode-bidi: plaintext;
}

html[dir="rtl"] .itin-hero__intro {
    line-height: 1.7;
    text-align: right;
}

html[dir="rtl"] .itin-hero__custom {
    text-align: right;
}

@media (max-width: 640px) {
    html[dir="rtl"] .itin-hero__fact {
        padding-left: 0;
        margin-left: 0;
        border-left: 0;
    }
}
