/* Blog & Careers — hero uses shared page-hero in style.css */
.content-page-header.page-hero {
    background: linear-gradient(180deg, rgba(215, 38, 56, 0.05) 0%, var(--surface) 55%);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
    padding-bottom: 4rem;
}

.content-card {
    display: flex;
    flex-direction: column;
    background: var(--surface, #fff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.content-card-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(215, 38, 56, 0.12), rgba(15, 17, 23, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card-image--placeholder i {
    font-size: 2rem;
    color: var(--primary, #d72638);
    opacity: 0.5;
}

.content-card-body {
    padding: 1.35rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent, #64748b);
    margin-bottom: 0.65rem;
}

.content-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.65rem;
}

.content-card-excerpt {
    font-size: 0.92rem;
    color: var(--accent, #64748b);
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
}

.content-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary, #d72638);
    margin-top: auto;
}

.content-empty {
    text-align: center;
    padding: 3rem 1.5rem 5rem;
    color: var(--accent, #64748b);
}

.content-article {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.content-article-header {
    margin-bottom: 2rem;
}

.content-article-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent, #64748b);
    margin-bottom: 0.75rem;
}

.content-article-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin: 0 0 1rem;
}

.content-article-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--accent, #64748b);
}

.content-article-featured {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.content-article-featured img {
    width: 100%;
    display: block;
}

.content-article-body p,
.blog-prose p {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: var(--text, #1a1a2e);
}

.content-article-body ul,
.blog-prose ul,
.blog-prose ol {
    margin: 0 0 1.25rem 1.25rem;
    line-height: 1.75;
    padding-left: 0.5rem;
}

.content-article-body h1,
.content-article-body h2,
.content-article-body h3,
.content-article-body h4,
.content-article-body h5,
.content-article-body h6,
.blog-prose h1,
.blog-prose h2,
.blog-prose h3,
.blog-prose h4,
.blog-prose h5,
.blog-prose h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text, #1a1a2e);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 2rem 0 1rem;
}

.blog-prose h1,
.content-article-body h1 { font-size: 2rem; font-weight: 700; }
.blog-prose h2,
.content-article-body h2 { font-size: 1.65rem; font-weight: 700; }
.blog-prose h3,
.content-article-body h3 { font-size: 1.35rem; font-weight: 600; }
.blog-prose h4,
.content-article-body h4 { font-size: 1.15rem; font-weight: 600; }
.blog-prose h5,
.content-article-body h5 { font-size: 1rem; font-weight: 600; }
.blog-prose h6,
.content-article-body h6 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-prose blockquote {
    margin: 1.5rem 0;
    padding: 0.75rem 0 0.75rem 1.25rem;
    border-left: 4px solid var(--primary, #d72638);
    color: var(--accent, #64748b);
    font-size: 1.05rem;
    background: rgba(215, 38, 56, 0.04);
    border-radius: 0 12px 12px 0;
}

.blog-prose a {
    color: var(--primary, #d72638);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-prose a:hover {
    opacity: 0.85;
}

.blog-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.blog-prose figure {
    margin: 1.5rem 0;
}

.blog-prose figcaption {
    font-size: 0.85rem;
    color: var(--accent, #64748b);
    text-align: center;
    margin-top: 0.5rem;
}

.blog-prose pre,
.blog-prose code {
    font-family: ui-monospace, 'Cascadia Code', monospace;
    font-size: 0.9em;
}

.blog-prose pre {
    background: #0f1117;
    color: #e8eaef;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-prose code {
    background: rgba(215, 38, 56, 0.08);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.blog-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.blog-prose th,
.blog-prose td {
    border: 1px solid var(--border, rgba(0, 0, 0, 0.1));
    padding: 0.65rem 0.85rem;
    text-align: left;
}

.blog-prose th {
    background: rgba(215, 38, 56, 0.06);
    font-weight: 700;
}

.blog-prose hr {
    border: none;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.1));
    margin: 2rem 0;
}

.career-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    padding-bottom: 4rem;
    align-items: start;
}

.career-apply-card {
    background: var(--surface, #fff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 20px;
    padding: 1.5rem;
    position: sticky;
    top: 6rem;
}

.career-apply-card h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.career-apply-card .brief-input,
.career-apply-card .brief-textarea {
    width: 100%;
    margin-bottom: 0.85rem;
}

.career-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.career-pill {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    background: rgba(215, 38, 56, 0.08);
    color: var(--primary, #d72638);
    font-weight: 600;
}

@media (max-width: 900px) {
    .career-detail-grid {
        grid-template-columns: 1fr;
    }
    .career-apply-card {
        position: static;
    }
}

/* --- Blog detail: article left, sidebar right --- */
.blog-detail-section {
    padding: calc(var(--hero-top-offset, 6.75rem) + 1rem) 0 5rem;
    background: linear-gradient(180deg, rgba(215, 38, 56, 0.04) 0%, var(--background, #faf9f7) 28%);
}

.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.82rem;
    margin-bottom: 1.75rem;
    color: var(--accent, #64748b);
}

.blog-breadcrumb a {
    color: var(--accent, #64748b);
    text-decoration: none;
    transition: color 0.15s;
}

.blog-breadcrumb a:hover {
    color: var(--primary, #d72638);
}

.blog-breadcrumb-current {
    color: var(--text, #1a1a2e);
    font-weight: 600;
}

.blog-breadcrumb-sep {
    opacity: 0.4;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.blog-detail-main {
    background: var(--surface, #fff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: 0 20px 60px rgba(15, 17, 23, 0.06);
}

.blog-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent, #64748b);
    margin-bottom: 1rem;
}

.blog-detail-category {
    color: var(--primary, #d72638);
    font-weight: 700;
    text-decoration: none;
}

.blog-detail-category:hover {
    text-decoration: underline;
}

.blog-detail-meta-dot {
    opacity: 0.45;
}

.blog-detail-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    color: var(--text, #1a1a2e);
}

.blog-detail-lead {
    font-size: 1.12rem;
    line-height: 1.65;
    color: var(--accent, #64748b);
    margin: 0 0 1.5rem;
    max-width: 58ch;
}

.blog-detail-byline {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.blog-detail-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border, rgba(0, 0, 0, 0.08));
}

.blog-detail-author {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text, #1a1a2e);
}

.blog-detail-author-role {
    display: block;
    font-size: 0.8rem;
    color: var(--accent, #64748b);
}

.blog-detail-featured {
    margin: 0 0 2rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.blog-detail-featured img {
    width: 100%;
    display: block;
    max-height: 420px;
    object-fit: cover;
}

.career-detail-featured {
    margin: 0 0 2rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.career-detail-featured img {
    width: 100%;
    display: block;
    max-height: 320px;
    object-fit: cover;
}

.content-article-body .blog-prose + .blog-prose {
    margin-top: 0;
}

.blog-detail-body {
    max-width: none;
    margin: 0;
    padding: 0;
}

.blog-detail-footer {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.blog-tag {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    background: rgba(215, 38, 56, 0.08);
    color: var(--primary, #d72638);
    text-decoration: none;
}

.blog-tag--muted {
    background: var(--background, #f5f5f5);
    color: var(--accent, #64748b);
}

.blog-detail-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Sidebar */
.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: calc(var(--hero-top-offset, 6.75rem) + 1rem);
}

.blog-sidebar-card {
    background: var(--surface, #fff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 18px;
    padding: 1.25rem 1.25rem 1.1rem;
    box-shadow: 0 8px 32px rgba(15, 17, 23, 0.04);
}

.blog-sidebar-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--primary, #d72638);
    margin-bottom: 1rem;
}

.blog-sidebar-label i {
    font-size: 0.8rem;
    opacity: 0.85;
}

.blog-sidebar-link-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text, #1a1a2e);
    text-decoration: none;
}

.blog-sidebar-link-all:hover {
    color: var(--primary, #d72638);
}

.blog-sidebar-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.blog-sidebar-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text, #1a1a2e);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.blog-sidebar-categories a:hover,
.blog-sidebar-categories a.is-active {
    background: rgba(215, 38, 56, 0.08);
    color: var(--primary, #d72638);
}

.blog-sidebar-categories em {
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent, #64748b);
    background: var(--background, #f5f5f5);
    padding: 0.15rem 0.45rem;
    border-radius: 50px;
}

.blog-sidebar-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.blog-sidebar-post {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
    padding: 0.35rem;
    margin: -0.35rem;
    border-radius: 12px;
    transition: background 0.15s;
}

.blog-sidebar-post:hover {
    background: rgba(215, 38, 56, 0.05);
}

.blog-sidebar-post-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(215, 38, 56, 0.1), rgba(15, 17, 23, 0.05));
}

.blog-sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-sidebar-post-thumb--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #d72638);
    opacity: 0.5;
}

.blog-sidebar-post-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.blog-sidebar-post-text strong {
    font-size: 0.88rem;
    line-height: 1.35;
    color: var(--text, #1a1a2e);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-sidebar-post-text small {
    font-size: 0.72rem;
    color: var(--accent, #64748b);
}

.blog-sidebar-suggested {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.blog-sidebar-suggested a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text, #1a1a2e);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
    transition: background 0.15s, color 0.15s;
}

.blog-sidebar-suggested a:hover {
    background: rgba(215, 38, 56, 0.06);
    color: var(--primary, #d72638);
}

.blog-sidebar-suggested-num {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary, #d72638);
    opacity: 0.7;
    padding-top: 0.15rem;
}

.blog-sidebar-cta {
    background: linear-gradient(145deg, rgba(215, 38, 56, 0.08) 0%, var(--surface, #fff) 60%);
    border-color: rgba(215, 38, 56, 0.15);
}

.blog-sidebar-cta p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--accent, #64748b);
    margin: 0 0 1rem;
}

@media (max-width: 1024px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }

    .blog-sidebar-card--search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .blog-detail-main {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .blog-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-detail-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Location pages --- */
.location-page-header.page-hero {
    padding-bottom: 1.5rem;
}

.location-visual-band {
    margin-top: -0.5rem;
    padding-bottom: 1.5rem;
}

.location-hero-visual,
.location-hub-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    box-shadow: 0 24px 60px rgba(15, 17, 23, 0.1);
}

.location-hero-visual img,
.location-hub-visual img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.location-hub-visual img {
    max-height: 320px;
}

.location-hero-visual__overlay,
.location-hub-visual__copy {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 17, 23, 0.72) 100%);
    color: #fff;
}

.location-hero-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.location-hub-visual__copy p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    max-width: 42ch;
}

.location-hub-banner {
    margin-top: -0.5rem;
    padding-bottom: 1.5rem;
}

.location-stats-band {
    padding: 0 0 2rem;
}

.location-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.location-stat {
    background: var(--surface, #fff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 16px;
    padding: 1.1rem 1.25rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 17, 23, 0.04);
}

.location-stat strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: var(--primary, #d72638);
    margin-bottom: 0.25rem;
}

.location-stat span {
    font-size: 0.82rem;
    color: var(--accent, #64748b);
}

.location-detail-section {
    padding-top: 0;
}

.location-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.location-section-card {
    background: var(--surface, #fff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 20px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 40px rgba(15, 17, 23, 0.04);
}

.location-section-card h2 {
    margin-top: 0;
}

.location-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.location-service-card {
    display: block;
    padding: 1.1rem 1.15rem;
    border-radius: 14px;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    background: linear-gradient(145deg, rgba(215, 38, 56, 0.04) 0%, var(--surface, #fff) 55%);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.location-service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 38, 56, 0.25);
    box-shadow: 0 12px 28px rgba(215, 38, 56, 0.08);
}

.location-service-card__icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(215, 38, 56, 0.1);
    color: var(--primary, #d72638);
    font-size: 0.75rem;
    margin-bottom: 0.65rem;
}

.location-service-card h3 {
    font-size: 1rem;
    margin: 0 0 0.45rem;
    color: var(--text, #1a1a2e);
}

.location-service-card p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--accent, #64748b);
}

.location-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1rem;
}

.location-faq-item {
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    overflow: hidden;
    background: var(--background, #faf9f7);
}

.location-faq-item summary {
    cursor: pointer;
    padding: 1rem 1.15rem;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.location-faq-item summary::after {
    content: '+';
    font-size: 1.1rem;
    color: var(--primary, #d72638);
    font-weight: 700;
    flex-shrink: 0;
}

.location-faq-item[open] summary::after {
    content: '−';
}

.location-faq-item p {
    margin: 0;
    padding: 0 1.15rem 1rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--accent, #64748b);
}

.location-cta-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(215, 38, 56, 0.1) 0%, rgba(15, 17, 23, 0.04) 100%);
    border: 1px solid rgba(215, 38, 56, 0.15);
}

.location-cta-panel h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
}

.location-cta-panel p {
    margin: 0;
    color: var(--accent, #64748b);
    font-size: 0.92rem;
}

.location-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: calc(var(--hero-top-offset, 6.75rem) + 1rem);
}

.location-sidebar-card {
    background: var(--surface, #fff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 8px 28px rgba(15, 17, 23, 0.05);
}

.location-sidebar-card--accent {
    background: linear-gradient(145deg, rgba(215, 38, 56, 0.08) 0%, var(--surface, #fff) 65%);
    border-color: rgba(215, 38, 56, 0.15);
}

.location-sidebar-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--primary, #d72638);
    margin-bottom: 0.75rem;
}

.location-sidebar-place {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: var(--text, #1a1a2e);
}

.location-sidebar-note {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--accent, #64748b);
}

.location-sidebar-card--accent p {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--accent, #64748b);
}

.location-sidebar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.location-sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.55rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text, #1a1a2e);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.location-sidebar-links a:hover {
    background: rgba(215, 38, 56, 0.06);
    color: var(--primary, #d72638);
}

.location-sidebar-links i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.location-card:hover .content-card-image img {
    transform: scale(1.03);
}

.location-card .content-card-image img {
    transition: transform 0.35s ease;
}

.location-related-section {
    padding-top: 0;
}

.location-related-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 960px) {
    .location-detail-grid {
        grid-template-columns: 1fr;
    }

    .location-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .location-stats {
        grid-template-columns: 1fr;
    }
}

/* --- Locations hub directory --- */
.location-hub-featured {
    padding-bottom: 1rem;
}

.location-hub-section-head {
    margin-bottom: 1.5rem;
}

.location-hub-section-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    margin: 0 0 0.45rem;
    color: var(--text, #1a1a2e);
}

.location-hub-section-head p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--accent, #64748b);
    max-width: 62ch;
}

.location-directory-section {
    padding-top: 0;
}

.location-directory {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-directory-group {
    background: var(--surface, #fff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 20px;
    padding: clamp(1.15rem, 2.5vw, 1.6rem);
    box-shadow: 0 10px 36px rgba(15, 17, 23, 0.04);
}

.location-directory-group__head h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin: 0 0 0.35rem;
    color: var(--text, #1a1a2e);
}

.location-directory-group__head p {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    color: var(--accent, #64748b);
}

.location-directory-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.location-directory-list > li {
    margin: 0;
}

.location-directory-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.1));
    font-size: 0.86rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.location-directory-link--live {
    color: var(--text, #1a1a2e);
    background: var(--background, #faf9f7);
}

.location-directory-link--live:hover {
    border-color: rgba(215, 38, 56, 0.35);
    color: var(--primary, #d72638);
    background: rgba(215, 38, 56, 0.06);
}

.location-directory-link--soon {
    color: var(--accent, #64748b);
    background: var(--background, #faf9f7);
    opacity: 0.85;
    cursor: default;
}

.location-directory-link__name {
    font-weight: 600;
}

.location-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.45rem;
    border-radius: 50px;
}

.location-badge--live {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.location-badge--soon {
    background: rgba(100, 116, 139, 0.12);
    color: var(--accent, #64748b);
}

.location-directory-note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: rgba(215, 38, 56, 0.05);
    border: 1px solid rgba(215, 38, 56, 0.12);
}

.location-directory-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--accent, #64748b);
}

.location-directory-note a {
    color: var(--primary, #d72638);
    font-weight: 600;
}
