/* GEO answer hubs — public traveler intent pages */

.hub-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.25rem 3.5rem;
}

.hub-article {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hub-hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hub-brand {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a5f4a;
}

.hub-hero h1 {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.2;
    color: #14231c;
}

.hub-answer {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.65;
    color: #2c3a33;
}

.hub-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.hub-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.7rem 1.15rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hub-cta-primary {
    background: #1a5f4a;
    color: #fff;
    border: 1px solid #1a5f4a;
}

.hub-cta-primary:hover {
    background: #144a3a;
    color: #fff;
}

.hub-cta-secondary {
    background: #fff;
    color: #1a5f4a;
    border: 1px solid #b7d0c6;
}

.hub-cta-secondary:hover {
    border-color: #1a5f4a;
    color: #144a3a;
}

.hub-sections {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.hub-section h2 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    line-height: 1.35;
    color: #14231c;
}

.hub-section p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #2c3a33;
}

.hub-faq h2,
.hub-related h2 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    color: #14231c;
}

.hub-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hub-faq-item {
    border: 1px solid #d7e3dd;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    background: #f7faf8;
}

.hub-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: #14231c;
    list-style: none;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.hub-faq-item summary::-webkit-details-marker {
    display: none;
}

.hub-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    padding-left: 1rem;
    color: #1a5f4a;
    font-size: 0.85rem;
}

.hub-faq-item[open] summary::after {
    content: '\f077';
}

.hub-faq-item p {
    margin: 0.75rem 0 0;
    line-height: 1.6;
    color: #2c3a33;
}

.hub-related-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hub-related-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #1a5f4a;
    font-weight: 600;
    text-decoration: none;
}

.hub-related-list a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .hub-page {
        padding: 2.75rem 1.5rem 4rem;
    }

    .hub-related-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.35rem 1.5rem;
    }
}
