/* ExploUganda attractions browser — site shell */
.attractions-search { max-width: 480px; margin: 0 auto 1.25rem; }
.attractions-search input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--color-border, #dee2e6);
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: var(--font-family-body, inherit);
    color: var(--color-text, inherit);
    background: var(--color-surface, #fff);
}
.attractions-search input:focus { outline: none; border-color: var(--color-brand-primary, #13357B); box-shadow: 0 0 0 3px rgba(19, 53, 123, 0.12); }
.attractions-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0;
}
.attractions-toolbar-wrap {
    max-width: 100%;
}
.attractions-filters {
    max-width: 720px;
    margin: 0 auto;
}
.attractions-filters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
.attractions-filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}
.attractions-filter-field label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}
.attractions-filter-field select {
    width: 100%;
    min-height: 44px;
}
.attractions-toolbar button {
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.attractions-toolbar button.active,
.attractions-toolbar button:hover {
    background: #13357B;
    color: #fff;
    border-color: #13357B;
}
.attraction-category { padding: 1.5rem 0 0.5rem; }
.attraction-category-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #13357B;
}
.attraction-category-header .count {
    display: inline-block;
    margin-left: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
}
.attraction-category-header p { color: #6c757d; font-size: 0.95rem; }
.attraction-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .attraction-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 992px) {
    .attraction-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .attraction-list > .attraction-item:last-child:nth-child(3n + 1) {
        grid-column: 2;
    }
    .attraction-list > .attraction-item:nth-last-child(2):nth-child(3n + 1) {
        grid-column: 1;
    }
    .attraction-list > .attraction-item:last-child:nth-child(3n + 2) {
        grid-column: 3;
    }
}
.attraction-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    overflow: visible;
    transition: none;
}
.attraction-item-body,
.attraction-item-inner {
    padding: 1rem 0 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.attraction-item-cover {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
    border-radius: 12px;
}
.attraction-item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}
.attraction-item-cover--gradient {
    background: linear-gradient(145deg, #13357B 0%, #2d5494 55%, #4a72b8 100%);
}
.attraction-item-cover-shade,
.attraction-detail-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 100%);
    pointer-events: none;
}

.attraction-item-cover-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1rem 1.1rem;
    pointer-events: none;
}

.attraction-item-cover-overlay .attraction-item-region {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    padding: 0;
    margin: 0 0 0.35rem;
    border-radius: 0;
    align-self: auto;
}

.attraction-item-cover-overlay .attraction-item-name {
    font-family: var(--font-family-heading, 'Jost', sans-serif);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.25;
    margin: 0;
    color: #fff;
}

.attraction-item-cover:hover img { transform: scale(1.04); }
.attraction-item-cover:focus-visible {
    outline: 2px solid #13357B;
    outline-offset: -2px;
}
@media (hover: hover) {
    .attraction-item:hover {
        border-color: transparent;
        box-shadow: none;
    }
}
.attraction-item:focus-within,
.attraction-item:active {
    border-color: transparent;
    box-shadow: none;
}
.attraction-item-region {
    font-size: 0.68rem;
    font-weight: 700;
    color: #6c757d;
    background: #f8f9fa;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.65rem;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.attraction-item-name {
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 0.45rem;
    line-height: 1.3;
    color: #111;
}
.attraction-item-tagline {
    font-size: 0.85rem;
    color: #13357B;
    font-weight: 600;
    margin-bottom: 0.85rem;
    line-height: 1.45;
}
.attraction-item-practical {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    font-size: 0.78rem;
    color: var(--color-text-muted, #6c757d);
    margin: 0 0 0.85rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(19, 53, 123, 0.08);
    padding-top: 0.75rem;
}
.attraction-item-practical span {
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .attraction-item-practical span {
        white-space: normal;
    }
}

.bg-breadcrumb .display-3 {
    font-size: clamp(1.5rem, 5.5vw, 2.5rem);
}
.attraction-item-practical strong {
    color: #495057;
    font-weight: 600;
}
.attraction-item-history { margin-bottom: 0.75rem; }
.attraction-item-body {
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.55;
    margin-bottom: 0.5rem;
}
.attraction-item-fit {
    font-size: 0.85rem;
    color: #495057;
    line-height: 1.5;
    margin: 0 0 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.attraction-read-more {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: #13357B;
    text-decoration: none;
}
.attraction-read-more:hover { color: #0d2449; text-decoration: underline; }
.attraction-expand-toggle {
    display: inline-flex;
    align-items: center;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: #13357B;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.attraction-expand-toggle:hover { color: #0d2449; }
.attraction-inline-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
    margin-top: 0;
}
.attraction-inline-panel.open,
.attraction-inline-panel:not([hidden]) {
    max-height: 600px;
    opacity: 1;
    margin-top: 0.5rem;
}
.attraction-inline-panel .attraction-item-body { margin-bottom: 0; }

/* iPhone-style weather widget */
.attraction-weather {
    margin: 0 0 0.85rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(165deg, #1a3a6b 0%, #2d5494 42%, #4a72b8 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 6px 18px rgba(19, 53, 123, 0.22);
}
.attraction-weather-current {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}
.attraction-weather-icon {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}
.attraction-weather-temp-wrap { display: flex; flex-direction: column; gap: 0.1rem; }
.attraction-weather-temp {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
}
.attraction-weather-condition {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.92;
}
.attraction-weather-days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.attraction-weather-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-align: center;
    font-size: 0.72rem;
}
.attraction-weather-day-label {
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.62rem;
}
.attraction-weather-day-icon { font-size: 1.1rem; line-height: 1; }
.attraction-weather-day-temps {
    display: flex;
    gap: 0.35rem;
    align-items: baseline;
    font-variant-numeric: tabular-nums;
}
.attraction-weather-day-temps strong { font-weight: 700; font-size: 0.78rem; }
.attraction-weather-day-temps span { opacity: 0.72; font-size: 0.72rem; }

/* Loading skeleton */
.attraction-weather--loading {
    background: linear-gradient(165deg, #dfe6f0 0%, #c8d4e8 100%);
    min-height: 88px;
}
.attraction-weather-skeleton-current {
    height: 2.4rem;
    width: 55%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.45);
    animation: weather-pulse 1.2s ease-in-out infinite;
    margin-bottom: 0.75rem;
}
.attraction-weather-skeleton-days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.attraction-weather-skeleton-days span {
    height: 2.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.35);
    animation: weather-pulse 1.2s ease-in-out infinite;
}
.attraction-weather-skeleton-days span:nth-child(2) { animation-delay: 0.15s; }
.attraction-weather-skeleton-days span:nth-child(3) { animation-delay: 0.3s; }
@keyframes weather-pulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

/* Unavailable fallback */
.attraction-weather--unavailable {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: #f1f3f5;
    color: #495057;
    font-size: 0.78rem;
    line-height: 1.4;
    box-shadow: none;
    margin-bottom: 0.85rem;
}
.attraction-weather--unavailable i {
    color: #13357B;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Card actions */
.attraction-item-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0;
}
.attraction-item-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.attraction-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #13357B;
    text-decoration: none;
}
.attraction-link:hover { color: #0d2449; text-decoration: underline; }
.attraction-link-quote { color: #198754; }
.attraction-link-quote:hover { color: #146c43; }
.attraction-item-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.attraction-select-btn,
.attraction-fav-btn {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 7rem;
    min-height: 44px;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    background: #fff;
    color: #13357B;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.attraction-select-btn:hover,
.attraction-fav-btn:hover {
    border-color: #13357B;
    background: #f8f9fa;
}
.attraction-select-btn.active {
    background: #13357B;
    border-color: #13357B;
    color: #fff;
}
.attraction-fav-btn.active {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.55);
    color: #856404;
}

.attraction-title-link { color: inherit; text-decoration: none; }
.attraction-title-link:hover { color: #13357B; }
.attractions-empty { text-align: center; padding: 2.5rem 1rem; color: #6c757d; }
.attractions-shortlist { max-width: 960px; margin: 0 auto 1.25rem; }
.attractions-shortlist-card {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(19, 53, 123, 0.1);
    border-bottom: 1px solid rgba(19, 53, 123, 0.1);
    border-radius: 0;
    padding: 1rem 0;
    box-shadow: none;
}
.attractions-shortlist-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
}
.attractions-shortlist-head .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: rgba(19, 53, 123, 0.1);
    color: #13357B;
    font-size: 0.78rem;
    font-weight: 700;
}
.attractions-shortlist-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.attractions-chip {
    border: 1px solid #dee2e6;
    border-radius: 999px;
    background: #f8f9fa;
    color: #13357B;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    min-height: 44px;
    cursor: pointer;
}
.attractions-chip:hover { border-color: #13357B; background: #fff; }
.attractions-clear-btn { min-height: 44px; }
.attraction-read-more {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: #13357B;
    text-decoration: none;
    margin-top: 0.35rem;
}
.attraction-read-more:hover { color: #0d2449; text-decoration: underline; }
.attraction-read-more::after { content: " →"; }

.attractions-toolbar button {
    min-height: 44px;
}
.attractions-toolbar button:focus-visible,
.attraction-select-btn:focus-visible,
.attraction-fav-btn:focus-visible,
.attractions-chip:focus-visible,
.attraction-read-more:focus-visible {
    outline: 2px solid #13357B;
    outline-offset: 2px;
}

.toast {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: min(92vw, 420px);
    background: #13357B;
    color: #fff;
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(-4px);
}
.toast.error { background: #dc3545; }

@media (max-width: 767.98px) {
    .toast {
        bottom: 5.5rem;
    }
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 767px) {
    .attraction-list {
        grid-template-columns: 1fr;
    }
    .container-fluid.bg-light.py-5 .container.py-5 {
        overflow-x: hidden;
    }
    .attractions-toolbar-wrap {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        padding: 0 0.75rem 0.25rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 24px), transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 24px), transparent);
    }
    .attractions-toolbar-wrap::-webkit-scrollbar {
        display: none;
    }
    .attractions-toolbar {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        max-width: none;
        padding-right: 0.5rem;
    }
}

@media (min-width: 576px) {
    .attractions-filters-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .attraction-item,
    .attraction-item-cover img,
    .attraction-inline-panel,
    .attraction-weather-skeleton-current,
    .attraction-weather-skeleton-days span {
        transition: none !important;
        animation: none !important;
    }
}

/* Detail hero — cover photo + weather overlay */
.page-attraction-detail .attraction-detail-hero {
    position: relative;
    width: 100%;
    min-height: 280px;
    background: #dfe3e8;
}
.page-attraction-detail .attraction-detail-hero img,
.page-attraction-detail .attraction-detail-hero-fallback {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}
.page-attraction-detail .attraction-detail-hero-fallback { min-height: 280px; }

.attraction-hero-weather {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    margin: 0;
    max-width: 320px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.attraction-weather--hero {
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
}
.attraction-weather--hero .attraction-weather-current { margin-bottom: 0.55rem; }
.attraction-weather--hero .attraction-weather-icon { font-size: 1.65rem; }
.attraction-weather--hero .attraction-weather-temp { font-size: 1.65rem; }
.attraction-weather--hero .attraction-weather-condition { font-size: 0.76rem; }
.attraction-hero-weather-region {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.82;
    margin-bottom: 0.1rem;
}
.attraction-weather--hero.attraction-weather--unavailable {
    background: rgba(241, 243, 245, 0.92);
    color: #495057;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .page-attraction-detail .attraction-detail-hero,
    .page-attraction-detail .attraction-detail-hero img,
    .page-attraction-detail .attraction-detail-hero-fallback {
        min-height: 220px;
    }
    .attraction-hero-weather {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        max-width: none;
    }
    .attraction-item-cover { height: 168px; }
}

/* Compact weather chip — destination meta & guide hubs */
.attraction-weather--chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    background: linear-gradient(165deg, #1a3a6b 0%, #2d5494 55%, #4a72b8 100%);
    box-shadow: 0 4px 14px rgba(19, 53, 123, 0.18);
}
.attraction-weather--chip .attraction-weather-icon { font-size: 1.1rem; }
.attraction-weather--chip .attraction-weather-chip-temp {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}
.attraction-weather--chip .attraction-weather-chip-label {
    font-size: 0.76rem;
    opacity: 0.92;
}
.attraction-weather--chip.attraction-weather--loading {
    min-width: 140px;
    min-height: 2rem;
    background: rgba(19, 53, 123, 0.08);
    box-shadow: none;
}
.attraction-weather-skeleton-chip {
    display: block;
    width: 100%;
    height: 0.85rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(19,53,123,0.08), rgba(19,53,123,0.16), rgba(19,53,123,0.08));
    background-size: 200% 100%;
    animation: weather-shimmer 1.2s ease-in-out infinite;
}
.attraction-weather--chip.attraction-weather--unavailable {
    background: rgba(19, 53, 123, 0.06);
    color: #13357B;
    box-shadow: none;
}

/* Sidebar / detail weather — iPhone-style widget card */
.attraction-weather--sidebar {
    margin: 0 0 1.25rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(165deg, #1a3a6b 0%, #2d5494 42%, #4a72b8 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 6px 18px rgba(19, 53, 123, 0.22);
}
.attraction-weather-region-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.82;
    margin-bottom: 0.1rem;
}
.attraction-weather--sidebar .attraction-weather-current { margin-bottom: 0.75rem; }
.attraction-weather--sidebar .attraction-weather-icon { font-size: 2rem; }
.attraction-weather--sidebar .attraction-weather-temp { font-size: 2rem; font-weight: 300; }
.attraction-weather--sidebar.attraction-weather--loading {
    background: linear-gradient(165deg, #dfe6f0 0%, #c8d4e8 100%);
    min-height: 88px;
}
.attraction-weather--sidebar.attraction-weather--unavailable {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: #f1f3f5;
    color: #495057;
    box-shadow: none;
    font-size: 0.78rem;
    line-height: 1.4;
}
.attraction-weather--sidebar.attraction-weather--unavailable i {
    color: #13357B;
    font-size: 1rem;
    flex-shrink: 0;
}
.guides-weather-note { display: flex; justify-content: center; }

/* Hide weather on phones (<768px) */
@media (max-width: 767.98px) {
    .attraction-weather,
    .attraction-hero-weather,
    .attraction-detail-weather-slot,
    .destination-weather-aside,
    .destination-weather-sidebar,
    .guides-weather-aside,
    .plan-weather-sidebar,
    .guides-weather-note,
    .destination-meta-row .attraction-weather--chip {
        display: none !important;
    }
}

.signature-routes-section .signature-route-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}
.signature-route-card-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
}
.signature-route-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.signature-route-card-badge {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    z-index: 2;
    background: rgba(19, 53, 123, 0.92);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
}

.signature-route-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 1rem 1.1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
    pointer-events: none;
}

.signature-route-card-title {
    margin: 0;
    font-family: var(--font-family-heading, 'Jost', sans-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
}

.signature-route-card-body {
    padding: 0.85rem 0 0;
}
.signature-routes-section.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.destination-meta-row .attraction-weather--chip { flex-shrink: 0; }
