/**
 * Bugün Nereye Discovery — Main CSS
 *
 * Theme Name: Bugün Nereye Discovery
 * Slug: bugunnereye-discovery
 * Author: Antigravity Team
 * Description: Production-ready discovery theme matching reference visual pixel-for-pixel
 */

/* ==========================================================================
   1. CSS RESET & VARIABLES
   ========================================================================== */
:root {
    --bn-primary: #FF5A1F;
    --bn-primary-hover: #E04D15;
    --bn-dark: #0F172A;
    --bn-text-main: #1E293B;
    --bn-text-muted: #64748B;
    --bn-text-light: #94A3B8;
    --bn-bg-page: #F8FAFC;
    --bn-card-bg: #FFFFFF;
    --bn-border: #E2E8F0;
    --bn-border-light: #F1F5F9;
    --bn-star: #F59E0B;
    --bn-blue: #0284C7;
    
    --bn-font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --bn-container-max: 1672px;
    --bn-radius-sm: 8px;
    --bn-radius-md: 14px;
    --bn-radius-lg: 16px;
    --bn-radius-xl: 20px;
    --bn-radius-full: 9999px;
    
    --bn-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --bn-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --bn-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
    --bn-transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--bn-font-sans);
    background-color: var(--bn-bg-page);
    color: var(--bn-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--bn-transition);
}

button, input {
    font-family: inherit;
}

/* Screen reader text accessibility utility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   2. CONTAINER & LAYOUT GRID
   ========================================================================== */
.bn-container {
    width: 100%;
    max-width: var(--bn-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 23px;
    padding-right: 23px;
}

.bn-front-page {
    padding-bottom: 48px;
}

/* 2-Column Layout Grid matching reference proportions */
.bn-layout-grid {
    display: grid;
    grid-template-columns: 1fr 434px;
    gap: 20px;
    margin-top: 20px;
    align-items: start;
}

.bn-layout-main {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.bn-layout-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

/* ==========================================================================
   3. HEADER
   ========================================================================== */
/* WordPress Admin Bar Compatibility */
.admin-bar .bn-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .bn-header {
        top: 46px;
    }
}

.bn-header {
    background: #FFFFFF;
    border-bottom: 1px solid #EAEFEF;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bn-container-header {
    width: 100%;
    max-width: var(--bn-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 86px;
    padding-right: 86px;
}

.bn-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.bn-header__left {
    display: flex;
    align-items: center;
    gap: 46px;
}

/* Logo & Custom Logo */
.bn-branding {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.bn-custom-logo,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    max-height: 40px;
}

.bn-custom-logo img,
.custom-logo {
    max-height: 38px;
    width: auto;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
}

.bn-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.bn-logo__text {
    font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.bn-logo__dark {
    color: #000000;
}

.bn-logo__highlight {
    color: #FF5A1F;
    margin-left: 5px;
}

/* Nav Desktop */
.bn-nav-desktop {
    display: flex;
    align-items: center;
}

.bn-nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bn-nav-list li {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* WP Nav Menu standard item support */
.bn-nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    height: 34px;
    font-size: 13px;
    font-weight: 600;
    color: #1E293B;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s;
    white-space: nowrap;
}

.bn-nav-list > li > a:hover {
    color: #FF5A1F;
}

.bn-nav-list > li.current-menu-item > a,
.bn-nav-list > li.current_page_item > a {
    background: #F1F5F9;
    color: #0F172A;
    font-weight: 700;
    border-radius: 18px;
}

/* WP Dropdown sub-menus */
.bn-nav-list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border: 1px solid var(--bn-border);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
    min-width: 180px;
    z-index: 1002;
    list-style: none;
    margin: 0;
}

.bn-nav-list li:hover > .sub-menu {
    display: block;
}

.bn-nav-list .sub-menu li {
    display: block;
    width: 100%;
}

.bn-nav-list .sub-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    color: #1E293B;
    white-space: nowrap;
    text-decoration: none;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.bn-nav-list .sub-menu li a:hover {
    background: #F8FAFC;
    color: #FF5A1F;
}

.bn-nav-item {
    display: inline-flex;
    align-items: center;
}

.bn-nav-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #F1F5F9;
    padding: 6px 16px;
    height: 34px;
    border-radius: 18px;
    color: #0F172A;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.bn-nav-tab__indicator {
    position: absolute;
    bottom: -1px;
    left: 14px;
    right: 14px;
    height: 2.5px;
    background: #FF5A1F;
    border-radius: 2px;
}

.bn-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    height: 34px;
    font-size: 13px;
    font-weight: 600;
    color: #1E293B;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s;
}

.bn-nav-link:hover {
    color: #FF5A1F;
}

.bn-nav-link svg, .bn-nav-tab svg {
    display: inline-block;
    flex-shrink: 0;
}

/* Header Actions */
.bn-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.bn-header-search {
    position: relative;
    width: 270px;
}

.bn-header-search__icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    stroke: #1E293B;
    pointer-events: none;
}

.bn-header-search__input {
    background: #F1F5F9;
    border: 1px solid transparent;
    border-radius: 17px;
    padding: 7px 14px 7px 35px;
    width: 100%;
    height: 34px;
    font-size: 12.5px;
    font-weight: 500;
    color: #1E293B;
    outline: none;
    transition: var(--bn-transition);
}

.bn-header-search__input:focus {
    background: #FFFFFF;
    border-color: #FF5A1F;
    box-shadow: 0 0 0 2px rgba(255, 90, 31, 0.2);
}

.bn-header-search__input::placeholder {
    color: #64748B;
}

.bn-search-kbd {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 10px;
    font-family: inherit;
    font-weight: 700;
    color: #64748B;
    pointer-events: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bn-header-notify-btn {
    position: relative;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1E293B;
    transition: all 0.15s;
}

.bn-header-notify-btn:hover {
    color: var(--bn-primary);
    transform: scale(1.08);
}

.bn-notify-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 9.5px;
    font-weight: 800;
    height: 16px;
    min-width: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid #FFFFFF;
}

.bn-header-fav-btn {
    position: relative;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1E293B;
    text-decoration: none;
    transition: all 0.15s;
}

.bn-fav-count {
    position: absolute;
    top: -3px;
    right: -5px;
    background: #FF5A1F;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    height: 16px;
    min-width: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid #FFFFFF;
}

.bn-header-fav-btn:hover {
    color: #FF5A1F;
    transform: scale(1.1);
}

.bn-header-fav-btn svg,
.bn-icon-heart {
    width: 20px;
    height: 20px;
}

.bn-header-account-btn {
    background: #FF5A1F;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    padding: 0 16px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(255, 90, 31, 0.2);
    transition: all 0.15s;
}

.bn-header-account-btn:hover {
    background: #FF6A33;
}

.bn-header-account-btn svg,
.bn-icon-user {
    width: 17px;
    height: 17px;
}

.bn-hamburger-btn {
    display: none;
    background: none;
    border: none;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1E293B;
}

.bn-hamburger-btn svg {
    width: 24px;
    height: 24px;
}

/* SVG Icon Constraint Safeguard */
.bn-icon {
    width: 18px;
    height: 18px;
    max-width: 24px;
    max-height: 24px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Mobile Navigation Drawer & Overlay */
.bn-drawer-overlay {
    display: none;
}

.bn-mobile-drawer {
    display: none;
}

@media screen and (max-width: 768px) {
    .bn-drawer-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(2px);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .bn-mobile-drawer {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: #FFFFFF;
        z-index: 9999;
        padding: 24px 20px;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        flex-direction: column;
        overflow-y: auto;
    }

    .bn-drawer-close-btn {
        align-self: flex-end;
        background: none;
        border: none;
        padding: 6px;
        cursor: pointer;
        color: #64748B;
        border-radius: 6px;
    }

    body.bn-drawer-open .bn-drawer-overlay {
        opacity: 1;
        visibility: visible;
    }

    body.bn-drawer-open .bn-mobile-drawer {
        transform: translateX(0);
    }
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.bn-hero-section {
    margin-top: 14px;
}

.bn-hero-card {
    position: relative;
    border-radius: var(--bn-radius-xl);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    height: 270px;
    display: flex;
    align-items: center;
    padding: 0;
}

.bn-hero-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 505px;
    background: linear-gradient(90deg, #FBF9F6 0%, #FBF9F6 78%, rgba(251, 249, 246, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.bn-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* Left: Brand & Headings */
.bn-hero-left {
    position: absolute;
    left: 28px;
    top: 24px;
    width: 370px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.bn-hero-brand {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}

.bn-hero-brand__dark {
    color: var(--bn-dark);
}

.bn-hero-brand__highlight {
    color: var(--bn-primary);
}

.bn-hero-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--bn-dark);
    line-height: 1.3;
    margin-bottom: 8px;
}

.bn-hero-desc {
    font-size: 11.5px;
    color: var(--bn-text-muted);
    line-height: 1.4;
    max-width: 330px;
}

/* Center: Large Search Bar & Quick Chips */
.bn-hero-center {
    position: absolute;
    left: 526px;
    top: 117px;
    width: 618px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.bn-hero-search-bar {
    background: #FFFFFF;
    border-radius: var(--bn-radius-full);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
    padding: 5px 6px 5px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    height: 56px;
    margin-bottom: 16px;
}

.bn-hero-search-bar__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bn-hero-search-bar__inputs {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.bn-hero-search-bar__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--bn-dark);
    line-height: 1.1;
    margin-bottom: 2px;
}

.bn-hero-search-bar__field {
    border: none;
    outline: none;
    font-size: 11.5px;
    color: var(--bn-text-muted);
    background: transparent;
    padding: 0;
    width: 100%;
}

.bn-hero-search-bar__btn {
    background: var(--bn-primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--bn-radius-full);
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 90, 31, 0.25);
    transition: var(--bn-transition);
}

.bn-hero-search-bar__btn:hover {
    background: var(--bn-primary-hover);
    transform: translateY(-1px);
}

/* Quick Filter Chips */
.bn-hero-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: 720px;
    margin-left: -50px;
}

.bn-hero-chip {
    background: #FFFFFF;
    border-radius: var(--bn-radius-full);
    padding: 6px 13px;
    font-size: 11px;
    font-weight: 700;
    color: var(--bn-text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: var(--bn-transition);
}

.bn-hero-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    color: var(--bn-primary);
}

.bn-hero-chip__icon {
    font-size: 12.5px;
}

/* Right: Scenic Badge */
.bn-hero-right {
    display: flex;
    justify-content: flex-end;
}

.bn-hero-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--bn-radius-md);
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bn-hero-badge__text strong {
    display: block;
    font-size: 12px;
    color: var(--bn-dark);
}

.bn-hero-badge__text span {
    display: block;
    font-size: 10px;
    color: var(--bn-text-muted);
}

/* ==========================================================================
   5. CATEGORIES BAR (8 Cards)
   ========================================================================== */
.bn-categories-bar {
    width: 100%;
}

.bn-categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.bn-category-card {
    background: #FFFFFF;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-md);
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 82px;
    box-shadow: var(--bn-shadow-sm);
    transition: var(--bn-transition);
}

.bn-category-card:hover {
    border-color: #CBD5E1;
    transform: translateY(-3px);
    box-shadow: var(--bn-shadow-md);
}

.bn-category-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bn-category-card__title {
    font-size: 11px;
    font-weight: 700;
    color: var(--bn-dark);
    text-align: center;
    white-space: nowrap;
}

/* ==========================================================================
   6. SECTION HEADERS & GENERAL SECTION STYLES
   ========================================================================== */
.bn-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.bn-section-header__left {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.bn-section-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--bn-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bn-section-subtitle {
    font-size: 12px;
    color: var(--bn-text-muted);
    font-weight: 400;
}

.bn-section-more {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--bn-blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bn-section-more:hover {
    text-decoration: underline;
}

/* ==========================================================================
   7. FEATURED PLACES (4 Cards)
   ========================================================================== */
.bn-places-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bn-place-card {
    background: #FFFFFF;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-md);
    overflow: hidden;
    box-shadow: var(--bn-shadow-sm);
    transition: var(--bn-transition);
    display: flex;
    flex-direction: column;
}

.bn-place-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bn-shadow-md);
    border-color: #CBD5E1;
}

.bn-place-card__thumb-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #E2E8F0;
}

.bn-place-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bn-place-card:hover .bn-place-card__thumb {
    transform: scale(1.04);
}

.bn-place-card__fav-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    z-index: 3;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bn-place-card__fav-btn svg {
    opacity: 1;
    width: 14px;
    height: 14px;
    stroke: #FFFFFF;
    fill: none;
    transition: all 0.2s ease;
}

.bn-place-card__fav-btn:hover {
    background: rgba(15, 23, 42, 0.7);
    transform: scale(1.12);
}

.bn-place-card__fav-btn.is-active,
.bn-place-card__fav-btn.is-favorited {
    background: #FFFFFF;
    border-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bn-place-card__fav-btn.is-active svg,
.bn-place-card__fav-btn.is-favorited svg {
    opacity: 1;
    fill: var(--bn-primary);
    stroke: var(--bn-primary);
    transform: scale(1.1);
}

.bn-place-card__body {
    padding: 10px 12px;
}

.bn-place-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 4px;
}

.bn-place-card__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--bn-dark);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bn-place-card__title a {
    color: var(--bn-dark);
}

.bn-place-card__title a:hover {
    color: var(--bn-primary);
}

.bn-place-card__meta {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--bn-dark);
    flex-shrink: 0;
}

.bn-place-card__rating-star {
    color: var(--bn-primary);
}

.bn-place-card__reviews-count {
    color: var(--bn-text-muted);
    font-weight: 400;
}

.bn-place-card__badge-verified {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 2.5px 7.5px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.bn-place-card__badge-verified svg {
    color: #10B981;
}

.bn-place-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    gap: 8px;
}

.bn-place-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--bn-text-muted);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bn-place-card__status-tags {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.bn-tag-open {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #16A34A;
    background: #DCFCE7;
    padding: 1px 6px;
    border-radius: 4px;
}

.bn-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.bn-status-dot--green {
    background: #16A34A;
}

.bn-tag-price {
    font-size: 10.5px;
    font-weight: 700;
    color: #475569;
    background: #F1F5F9;
    padding: 1px 6px;
    border-radius: 4px;
}

.bn-tag-closed {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #DC2626;
    background: #FEE2E2;
    padding: 1px 6px;
    border-radius: 4px;
}

.bn-status-dot--red {
    background: #DC2626;
}

.bn-place-card__new-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: #2563EB;
    background: #EFF6FF;
    padding: 1px 7px;
    border-radius: 4px;
    border: 1px solid #DBEAFE;
}


/* ==========================================================================
   8. DISCOVER CITIES (4 Landscape Cards)
   ========================================================================== */
.bn-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bn-city-card {
    position: relative;
    border-radius: var(--bn-radius-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    height: 100px;
    display: flex;
    align-items: flex-end;
    padding: 10px 12px;
    transition: var(--bn-transition);
}

.bn-city-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bn-shadow-md);
}

.bn-city-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
}

.bn-city-card__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.bn-city-card__title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 2px 0;
}

.bn-city-card__tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    display: block;
}

.bn-city-card__btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--bn-transition);
}

.bn-city-card:hover .bn-city-card__btn {
    background: var(--bn-primary);
}

.bn-city-card:hover .bn-city-card__btn svg {
    stroke: #FFFFFF;
}

/* ==========================================================================
   9. BLOG / TRAVEL GUIDE (3 Compact Cards)
   ========================================================================== */
.bn-blog-grid-h {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.bn-blog-card-h {
    background: #FFFFFF;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-md);
    overflow: hidden;
    padding: 9px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 86px;
    box-shadow: var(--bn-shadow-sm);
    transition: var(--bn-transition);
}

.bn-blog-card-h:hover {
    transform: translateY(-2px);
    box-shadow: var(--bn-shadow-md);
    border-color: #CBD5E1;
}

.bn-blog-card-h__thumb-wrap {
    width: 80px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #E2E8F0;
}

.bn-blog-card-h__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bn-blog-card-h__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.bn-blog-card-h__title {
    font-size: 12px;
    font-weight: 700;
    color: var(--bn-dark);
    line-height: 1.25;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bn-blog-card-h__title a {
    color: var(--bn-dark);
}

.bn-blog-card-h__title a:hover {
    color: var(--bn-primary);
}

.bn-blog-card-h__desc {
    font-size: 11px;
    color: var(--bn-text-muted);
    line-height: 1.25;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bn-blog-card-h__meta {
    font-size: 10px;
    color: var(--bn-text-light);
}

/* ==========================================================================
   10. SIDEBAR COMPONENTS (Ads, Community, CTA)
   ========================================================================== */
/* Ad Slot 1 (Top) */
.bn-ad-banner-link {
    display: block;
    border-radius: var(--bn-radius-md);
    overflow: hidden;
    box-shadow: var(--bn-shadow-sm);
    transition: var(--bn-transition);
}

.bn-ad-banner-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--bn-shadow-md);
}

.bn-ad-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--bn-radius-md);
}

.bn-sidebar-row--ad1 .bn-ad-card {
    height: 82px;
    border-radius: var(--bn-radius-md);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 12px 18px;
    box-shadow: var(--bn-shadow-sm);
}

.bn-ad-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
}

.bn-ad-badge {
    position: absolute;
    top: 8px;
    right: 10px;
    background: rgba(255, 255, 255, 0.85);
    font-size: 10px;
    font-weight: 600;
    color: #475569;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
}

.bn-ad-card__content {
    position: relative;
    z-index: 2;
}

.bn-ad-card__title {
    color: var(--bn-dark);
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.bn-ad-card__btn {
    background: var(--bn-primary);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--bn-radius-full);
    padding: 5px 14px;
    display: inline-block;
    margin-top: 6px;
    box-shadow: 0 2px 6px rgba(255, 90, 31, 0.2);
}

/* Community Discussions Card (R10 Portal Standard) */
.bn-community-card {
    background: #FFFFFF;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-lg);
    padding: 16px 18px;
    box-shadow: var(--bn-shadow-sm);
    transition: var(--bn-transition);
}

.bn-community-card:hover {
    box-shadow: var(--bn-shadow-md);
}

.bn-community-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.bn-community-card__title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bn-community-card__title {
    font-size: 14px;
    font-weight: 800;
    color: var(--bn-dark);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}

.bn-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    color: #16A34A;
    background: #DCFCE7;
    padding: 2px 7px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bn-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16A34A;
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
    animation: bnPulse 2s infinite;
}

@keyframes bnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(22, 163, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

.bn-community-card__more {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--bn-blue);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    text-decoration: none;
}

.bn-community-card__more:hover {
    text-decoration: underline;
}

/* R10 Quick Filter Tabs */
.bn-community-tabs {
    display: flex;
    gap: 4px;
    margin: 6px 0 8px;
    border-bottom: 1px solid var(--bn-border-light);
    padding-bottom: 6px;
}

.bn-community-tab {
    border: none;
    background: transparent;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--bn-text-muted);
    padding: 3px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--bn-transition);
}

.bn-community-tab:hover {
    color: var(--bn-dark);
    background: #F1F5F9;
}

.bn-community-tab.is-active {
    color: var(--bn-primary);
    background: rgba(255, 90, 31, 0.08);
    font-weight: 700;
}

.bn-community-list {
    display: flex;
    flex-direction: column;
}

.bn-community-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 6px;
    border-bottom: 1px solid var(--bn-border-light);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--bn-transition);
    gap: 8px;
}

.bn-community-item:last-child {
    border-bottom: none;
}

.bn-community-item:hover {
    background: #F8FAFC;
}

.bn-community-item__left {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.bn-community-item__avatar-wrap {
    position: relative;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.bn-community-item__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    box-sizing: border-box;
    display: block;
}

.bn-community-item__avatar.has-ring-pink {
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 3.5px #EC4899;
}

.bn-community-item__avatar.has-ring-purple {
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 3.5px #8B5CF6;
}

.bn-online-indicator {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    border: 1.5px solid #FFFFFF;
}

.bn-community-item__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.bn-community-item__headline {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.bn-cat-pill {
    font-size: 9.5px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.bn-cat-pill--blue {
    background: #EFF6FF;
    color: #2563EB;
}

.bn-cat-pill--orange {
    background: #FFF7ED;
    color: #EA580C;
}

.bn-cat-pill--green {
    background: #F0FDF4;
    color: #16A34A;
}

.bn-cat-pill--purple {
    background: #FAF5FF;
    color: #9333EA;
}

.bn-cat-pill--emerald {
    background: #ECFDF5;
    color: #059669;
}

.bn-community-item__topic {
    font-size: 12px;
    font-weight: 600;
    color: var(--bn-text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.bn-community-item:hover .bn-community-item__topic {
    color: var(--bn-primary);
}

.bn-community-item__submeta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    color: var(--bn-text-light);
}

.bn-community-item__author {
    color: var(--bn-text-muted);
    font-weight: 500;
}

.bn-bullet {
    color: #CBD5E1;
}

.bn-community-item__counts {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.bn-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10.5px;
    font-weight: 600;
    color: #64748B;
    background: #F1F5F9;
    padding: 2px 6px;
    border-radius: 4px;
}

.bn-count-badge--views {
    color: #94A3B8;
    background: transparent;
    padding: 0;
}

.bn-community-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--bn-border-light);
}

.bn-btn-new-topic {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    color: #FFFFFF;
    background: var(--bn-primary);
    padding: 6px 14px;
    border-radius: var(--bn-radius-full);
    text-decoration: none;
    transition: var(--bn-transition);
    box-shadow: 0 2px 6px rgba(255, 90, 31, 0.2);
}

.bn-btn-new-topic:hover {
    background: var(--bn-primary-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 90, 31, 0.3);
}

.bn-community-card__all-link {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--bn-blue);
    text-decoration: none;
}

.bn-community-card__all-link:hover {
    text-decoration: underline;
}


/* Ad Slot 2 (Middle/Bottom) */
.bn-sidebar-row--ad2 .bn-ad-card {
    height: 108px;
    border-radius: var(--bn-radius-md);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    box-shadow: var(--bn-shadow-sm);
}

.bn-sidebar-row--ad2 .bn-ad-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
}

.bn-sidebar-row--ad2 .bn-ad-card__title {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 3px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.bn-sidebar-row--ad2 .bn-ad-card__sub {
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    margin: 0 0 8px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bn-sidebar-row--ad2 .bn-ad-card__btn {
    background: var(--bn-primary);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--bn-radius-full);
    padding: 6px 15px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Membership CTA Card */
.bn-membership-cta,
.bn-cta-card {
    background: #FFFFFF;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-lg);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    box-shadow: var(--bn-shadow-sm);
    transition: var(--bn-transition);
}

.bn-membership-cta:hover,
.bn-cta-card:hover {
    box-shadow: var(--bn-shadow-md);
    border-color: #CBD5E1;
}

.bn-membership-cta__left,
.bn-cta-card__left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.bn-membership-cta__icon-wrap,
.bn-cta-card__icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 90, 31, 0.08);
    color: var(--bn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--bn-transition);
}

.bn-membership-cta:hover .bn-membership-cta__icon-wrap,
.bn-cta-card:hover .bn-cta-card__icon-wrap {
    background: rgba(255, 90, 31, 0.15);
    transform: scale(1.05);
}

.bn-membership-cta__text,
.bn-cta-card__content {
    min-width: 0;
}

.bn-membership-cta__title,
.bn-cta-card__title {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--bn-dark);
    margin: 0 0 3px 0;
    line-height: 1.2;
}

.bn-membership-cta__desc,
.bn-cta-card__desc {
    font-size: 11.5px;
    color: var(--bn-text-muted);
    margin: 0;
    line-height: 1.35;
}

.bn-membership-cta__btn,
.bn-cta-card__btn {
    background: var(--bn-primary);
    color: #FFFFFF;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: var(--bn-radius-full);
    padding: 8px 18px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(255, 90, 31, 0.25);
    transition: var(--bn-transition);
    flex-shrink: 0;
}

.bn-membership-cta__btn:hover,
.bn-cta-card__btn:hover {
    background: var(--bn-primary-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 90, 31, 0.35);
}


/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.bn-footer {
    background: #FFFFFF;
    border-top: 1px solid var(--bn-border);
    padding: 24px 0;
    margin-top: 48px;
}

.bn-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bn-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bn-footer__brand .bn-logo__text {
    font-size: 22px;
}

.bn-footer__slogan,
.bn-footer__tagline {
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
}

.bn-footer__nav {
    display: flex;
    align-items: center;
}

.bn-footer__links,
.bn-footer__nav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bn-footer__links li,
.bn-footer__nav li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
}

.bn-footer__links a,
.bn-footer__nav a,
.bn-footer__link {
    font-size: 13px;
    font-weight: 500;
    color: #64748B;
    text-decoration: none;
    transition: color 0.15s ease;
}

.bn-footer__links a:hover,
.bn-footer__nav a:hover,
.bn-footer__link:hover {
    color: var(--bn-primary);
}

.bn-footer__social,
.bn-footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bn-social-link,
.bn-footer__social a,
.bn-footer__social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bn-social-link svg,
.bn-footer__social a svg,
.bn-footer__social-btn svg {
    width: 16px;
    height: 16px;
}

.bn-social-link:hover,
.bn-footer__social a:hover,
.bn-footer__social-btn:hover {
    background: var(--bn-primary);
    border-color: var(--bn-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 90, 31, 0.25);
}

/* Toast Notifications */
.bn-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #0F172A;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.bn-toast.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   12. CATEGORY BAR PILLS (Airbnb Scrollable Bar)
   ========================================================================== */
.bn-category-bar-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 6px;
}

.bn-category-bar {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bn-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--bn-radius-full);
    border: 1px solid var(--bn-border);
    background: #FFFFFF;
    color: var(--bn-text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--bn-transition);
}

.bn-cat-pill:hover {
    border-color: #CBD5E1;
    color: var(--bn-dark);
    transform: translateY(-1px);
}

.bn-cat-pill.is-active {
    background: var(--bn-dark);
    color: #FFFFFF;
    border-color: var(--bn-dark);
}

.bn-cat-pill.is-active .bn-cat-pill__icon {
    color: #FFFFFF !important;
}

/* ==========================================================================
   13. MODALS (Filter, Search, Lightbox)
   ========================================================================== */
.bn-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.bn-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.bn-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.bn-modal__dialog {
    position: relative;
    background: #FFFFFF;
    border-radius: var(--bn-radius-xl);
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s ease;
    z-index: 1;
}

.bn-modal.is-active .bn-modal__dialog {
    transform: translateY(0) scale(1);
}

.bn-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--bn-border);
}

.bn-modal__close-btn {
    background: none;
    border: none;
    color: var(--bn-text-muted);
    cursor: pointer;
    padding: 6px;
    display: flex;
    border-radius: 6px;
    transition: var(--bn-transition);
}

.bn-modal__close-btn:hover {
    background: #F1F5F9;
    color: var(--bn-dark);
}

.bn-modal__body {
    padding: 24px;
}

/* Gallery Lightbox */
.bn-gallery-modal .bn-modal__backdrop {
    background: rgba(0, 0, 0, 0.92);
}

.bn-gallery-modal__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1100px;
    height: 85vh;
}

.bn-gallery-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--bn-transition);
}

.bn-gallery-modal__close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.bn-gallery-modal__content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.bn-lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--bn-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bn-gallery-modal__nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}

.bn-lightbox-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 24px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bn-transition);
}

.bn-lightbox-nav-btn:hover {
    background: var(--bn-primary);
}

/* ==========================================================================
   13. PLATFORM STATS BAR (R10 Community Authority Counter)
   ========================================================================== */
.bn-stats-section {
    margin: 32px 0 0;
    padding-bottom: 8px;
}

.bn-stats-card {
    background: #FFFFFF;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-xl);
    padding: 18px 28px;
    box-shadow: var(--bn-shadow-sm);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.bn-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bn-stat-item__icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--bn-transition);
}

.bn-stat-item:hover .bn-stat-item__icon-box {
    transform: scale(1.08);
}

.bn-stat-item__icon-box--orange {
    background: rgba(255, 90, 31, 0.1);
    color: #FF5A1F;
}

.bn-stat-item__icon-box--blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.bn-stat-item__icon-box--green {
    background: rgba(22, 163, 74, 0.1);
    color: #16A34A;
}

.bn-stat-item__icon-box--purple {
    background: rgba(147, 51, 234, 0.1);
    color: #9333EA;
}

.bn-stat-item__info {
    min-width: 0;
}

.bn-stat-item__val {
    font-size: 19px;
    font-weight: 800;
    color: var(--bn-dark);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.bn-stat-item__lbl {
    font-size: 12px;
    font-weight: 500;
    color: var(--bn-text-muted);
    margin-top: 2px;
}

/* ==========================================================================
   14. DEDICATED DISCOVERY PORTAL STYLES (/kesfet, /mekanlar, /blog, /topluluk)
   ========================================================================== */

/* Keşfet Hero Banner */
.bn-kesfet-hero {
    margin-top: 14px;
}

.bn-kesfet-hero__card {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border-radius: var(--bn-radius-xl);
    padding: 40px 48px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.16);
}

.bn-kesfet-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 4px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    color: #4ADE80;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.bn-kesfet-hero__title {
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.bn-kesfet-hero__subtitle {
    font-size: 15px;
    color: #CBD5E1;
    margin: 0 0 24px 0;
    max-width: 660px;
    line-height: 1.5;
}

/* Keşfet In-Hero Search Bar */
.bn-kesfet-search-bar {
    background: #FFFFFF;
    border-radius: var(--bn-radius-full);
    padding: 6px 8px 6px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 680px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.bn-kesfet-search-bar__input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--bn-dark);
    flex: 1;
    min-width: 0;
}

.bn-kesfet-search-bar__input::placeholder {
    color: #94A3B8;
}

.bn-kesfet-search-bar__btn {
    padding: 10px 24px;
    border-radius: var(--bn-radius-full);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

/* Intent Chips */
.bn-kesfet-intents {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bn-kesfet-intents__label {
    font-size: 12px;
    font-weight: 600;
    color: #94A3B8;
}

.bn-kesfet-intents__list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bn-intent-chip {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
}

.bn-intent-chip:hover {
    background: #FFFFFF;
    color: var(--bn-dark);
    transform: translateY(-1px);
}

/* City Filter Strip */
.bn-city-filter-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.bn-city-filter-strip::-webkit-scrollbar {
    display: none;
}

.bn-city-filter-pill {
    background: #FFFFFF;
    border: 1px solid var(--bn-border);
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.bn-city-filter-pill:hover {
    border-color: #94A3B8;
    color: var(--bn-dark);
}

.bn-city-filter-pill.is-active {
    background: var(--bn-dark);
    color: #FFFFFF;
    border-color: var(--bn-dark);
}

/* Filter Tab Pills for Community */
.bn-filter-tab-pill {
    background: #F1F5F9;
    border: 1px solid transparent;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.bn-filter-tab-pill:hover {
    background: #E2E8F0;
    color: var(--bn-dark);
}

.bn-filter-tab-pill.is-active {
    background: var(--bn-primary);
    color: #FFFFFF;
    font-weight: 700;
}

/* Topic Rows in Community */
.bn-topic-row:hover {
    background: #F8FAFC !important;
}

.bn-blog-hero-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bn-shadow-md);
}

.bn-blog-feed-item:hover {
    transform: translateY(-2px);
    border-color: #CBD5E1 !important;
    box-shadow: var(--bn-shadow-md) !important;
}

/* Place status tags */
.bn-place-card__status-tags {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bn-tag-open, .bn-tag-closed {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}

.bn-tag-open {
    color: #16A34A;
    background: #DCFCE7;
}

.bn-tag-closed {
    color: #DC2626;
    background: #FEE2E2;
}

.bn-tag-price {
    font-size: 11px;
    font-weight: 700;
    color: #64748B;
    background: #F1F5F9;
    padding: 2px 6px;
    border-radius: 4px;
}

.bn-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.bn-status-dot--green {
    background: #16A34A;
}

.bn-status-dot--red {
    background: #DC2626;
}

/* ==========================================================================
   AIRBNB NEWSROOM - EDITORIAL BLOG & STORIES DESIGN SYSTEM
   ========================================================================== */

:root {
  --nr-primary: #FF5A1F;
  --nr-primary-hover: #E04B14;
  --nr-primary-soft: #FFF0EB;
  --nr-dark: #0F172A;
  --nr-dark-soft: #1E293B;
  --nr-text-body: #334155;
  --nr-text-muted: #64748B;
  --nr-border: #E2E8F0;
  --nr-border-light: #F1F5F9;
  --nr-bg-light: #F8FAFC;
  --nr-bg-white: #FFFFFF;
  --nr-radius-xl: 24px;
  --nr-radius-lg: 20px;
  --nr-radius-md: 16px;
  --nr-radius-sm: 10px;
  --nr-radius-pill: 999px;
  --nr-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --nr-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  --nr-shadow-hover: 0 16px 36px rgba(15, 23, 42, 0.12);
  --nr-font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --nr-font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

.airbnb-newsroom-hub {
  background: #FFFFFF;
  min-height: 100vh;
}

.newsroom-hub-header {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--nr-border);
  padding: 44px 0 32px;
}

.newsroom-hub-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.newsroom-hub-brand-block {
  max-width: 680px;
}

.newsroom-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nr-primary-soft);
  color: var(--nr-primary);
  font-family: var(--nr-font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--nr-radius-pill);
  margin-bottom: 12px;
}

.newsroom-hub-title {
  font-family: var(--nr-font-heading);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--nr-dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 12px;
}

.newsroom-hub-subtitle {
  font-family: var(--nr-font-body);
  font-size: 15.5px;
  color: var(--nr-text-muted);
  line-height: 1.6;
  margin: 0;
}

.newsroom-search-box {
  flex-shrink: 0;
}

.newsroom-search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid var(--nr-border);
  border-radius: var(--nr-radius-pill);
  padding: 4px 6px 4px 16px;
  box-shadow: var(--nr-shadow-sm);
  transition: all 0.2s ease;
  width: 320px;
}

.newsroom-search-form:focus-within {
  border-color: var(--nr-dark);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.newsroom-search-form .search-icon {
  color: var(--nr-text-muted);
  margin-right: 8px;
  flex-shrink: 0;
}

.newsroom-search-input {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-family: var(--nr-font-body);
  font-size: 14px;
  color: var(--nr-dark);
  width: 100%;
  padding: 8px 0 !important;
}

.newsroom-search-btn {
  background: var(--nr-dark);
  color: #FFFFFF;
  border: none;
  border-radius: var(--nr-radius-pill);
  padding: 8px 16px;
  font-family: var(--nr-font-heading);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsroom-search-btn:hover {
  background: var(--nr-primary);
}

.newsroom-category-bar-wrapper {
  position: sticky;
  top: 68px;
  z-index: 35;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nr-border);
  padding: 12px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.newsroom-category-scroll-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0;
}

.newsroom-category-scroll-track::-webkit-scrollbar {
  display: none;
}

.newsroom-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--nr-bg-light);
  border: 1px solid var(--nr-border);
  border-radius: var(--nr-radius-pill);
  font-family: var(--nr-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--nr-text-body);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.newsroom-cat-pill:hover {
  background: #E2E8F0;
  color: var(--nr-dark);
  border-color: #CBD5E1;
}

.newsroom-cat-pill.is-active {
  background: var(--nr-dark);
  color: #FFFFFF;
  border-color: var(--nr-dark);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.newsroom-cat-pill .cat-pill-count {
  font-size: 11px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.06);
  padding: 2px 6px;
  border-radius: var(--nr-radius-pill);
  color: var(--nr-text-muted);
}

.newsroom-cat-pill.is-active .cat-pill-count {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* Spotlight Hero Card */
.newsroom-hero-spotlight {
  margin: 32px 0 44px;
  background: #FFFFFF;
  border: 1.5px solid var(--nr-border);
  border-radius: var(--nr-radius-xl);
  overflow: hidden;
  box-shadow: var(--nr-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsroom-hero-spotlight:hover {
  box-shadow: var(--nr-shadow-hover);
}

.newsroom-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}

@media (max-width: 900px) {
  .newsroom-hero-inner {
    grid-template-columns: 1fr;
  }
}

.newsroom-hero-media {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  background: #0F172A;
}

.newsroom-hero-img-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.newsroom-hero-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.newsroom-hero-spotlight:hover .newsroom-hero-img {
  transform: scale(1.03);
}

.newsroom-spotlight-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--nr-font-heading);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--nr-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.newsroom-hero-body {
  padding: 36px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 640px) {
  .newsroom-hero-body {
    padding: 22px 18px;
  }
}

.newsroom-hero-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--nr-text-muted);
}

.newsroom-meta-dot {
  color: var(--nr-border);
  font-weight: 700;
}

.newsroom-reading-time {
  font-weight: 600;
}

.newsroom-hero-title {
  font-family: var(--nr-font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--nr-dark);
  line-height: 1.28;
  margin: 0 0 14px;
}

.newsroom-hero-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.newsroom-hero-title a:hover {
  color: var(--nr-primary);
}

.newsroom-hero-excerpt {
  font-family: var(--nr-font-body);
  font-size: 15px;
  color: var(--nr-text-body);
  line-height: 1.6;
  margin: 0 0 24px;
}

.newsroom-hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--nr-border-light);
  flex-wrap: wrap;
}

.newsroom-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsroom-author-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 1.5px solid var(--nr-border);
}

.newsroom-author-info {
  display: flex;
  flex-direction: column;
}

.newsroom-author-name {
  font-family: var(--nr-font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--nr-dark);
}

.newsroom-post-date {
  font-size: 12px;
  color: var(--nr-text-muted);
}

.newsroom-btn-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nr-primary);
  color: #FFFFFF !important;
  padding: 9px 18px;
  border-radius: var(--nr-radius-pill);
  font-family: var(--nr-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 90, 31, 0.28);
  transition: all 0.2s ease;
}

.newsroom-btn-read:hover {
  background: var(--nr-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.38);
}

/* Horizontal Stacked Story Rows */
.newsroom-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.newsroom-row-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--nr-border);
  transition: transform 0.2s ease;
}

.newsroom-row-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.newsroom-row-media {
  position: relative;
  aspect-ratio: 16/10.5;
  overflow: hidden;
  background: #F1F5F9;
  border-radius: 16px;
}

.newsroom-row-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.newsroom-row-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.newsroom-row-card:hover .newsroom-row-img {
  transform: scale(1.04);
}

.newsroom-row-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-family: var(--nr-font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--nr-radius-pill);
  text-decoration: none;
}

.newsroom-row-cat-badge:hover {
  background: var(--nr-primary);
  color: #FFFFFF;
}

.newsroom-row-body {
  display: flex;
  flex-direction: column;
}

.newsroom-row-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--nr-text-muted);
  margin-bottom: 6px;
}

.newsroom-row-title {
  font-family: var(--nr-font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--nr-dark);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsroom-row-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.newsroom-row-title a:hover {
  color: var(--nr-primary);
}

.newsroom-row-excerpt {
  font-family: var(--nr-font-body);
  font-size: 14.5px;
  color: var(--nr-text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsroom-row-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.newsroom-row-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsroom-row-avatar {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.newsroom-row-author-name {
  font-family: var(--nr-font-heading);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--nr-text-muted);
}

.newsroom-row-read-link {
  font-family: var(--nr-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--nr-primary);
  text-decoration: none;
  transition: transform 0.15s ease;
}

.newsroom-row-read-link:hover {
  text-decoration: underline;
  transform: translateX(3px);
}

@media (max-width: 680px) {
  .newsroom-row-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 24px;
  }
  .newsroom-row-media {
    aspect-ratio: 16/10;
  }
}

/* ==========================================================================
   SINGLE ARTICLE PAGE (.airbnb-newsroom-single)
   ========================================================================== */
.airbnb-newsroom-single {
  background: #FFFFFF;
  padding-bottom: 80px;
}

.newsroom-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nr-text-muted);
  margin-bottom: 20px;
}

.newsroom-breadcrumbs a {
  color: var(--nr-text-muted);
  text-decoration: none;
}

.newsroom-breadcrumbs a:hover {
  color: var(--nr-primary);
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--nr-border);
}

.newsroom-article-header {
  padding-top: 36px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.newsroom-article-top-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.newsroom-reading-pill {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--nr-text-muted);
}

.newsroom-article-title {
  font-family: var(--nr-font-heading);
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  color: var(--nr-dark);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.newsroom-article-lead {
  font-family: var(--nr-font-body);
  font-size: clamp(16px, 2vw, 19px);
  color: var(--nr-text-body);
  line-height: 1.6;
  margin: 0 0 28px;
}

.newsroom-article-author-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--nr-border);
  border-bottom: 1px solid var(--nr-border);
  flex-wrap: wrap;
  gap: 16px;
}

.author-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-bar-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 1.5px solid var(--nr-border);
}

.author-bar-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-bar-name {
  font-family: var(--nr-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--nr-dark);
  text-decoration: none;
}

.author-bar-name:hover {
  color: var(--nr-primary);
}

.author-verified-badge {
  background: #ECFDF5;
  color: #065F46;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--nr-radius-pill);
}

.author-bar-dates {
  font-size: 12.5px;
  color: var(--nr-text-muted);
}

.newsroom-header-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nr-bg-light);
  border: 1px solid var(--nr-border);
  border-radius: var(--nr-radius-pill);
  padding: 8px 16px;
  font-family: var(--nr-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--nr-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsroom-header-share-btn:hover {
  background: var(--nr-dark);
  color: #FFFFFF;
  border-color: var(--nr-dark);
}

.newsroom-hero-media-wrap {
  max-width: 1040px;
  margin: 0 auto 40px;
}

.newsroom-hero-figure {
  margin: 0;
  border-radius: var(--nr-radius-xl);
  overflow: hidden;
  border: 1px solid var(--nr-border);
  box-shadow: var(--nr-shadow);
  background: #0F172A;
}

.newsroom-hero-featured-image {
  width: 100% !important;
  max-height: 540px;
  object-fit: cover !important;
  display: block !important;
}

.newsroom-hero-caption {
  padding: 10px 18px;
  font-size: 12.5px;
  color: var(--nr-text-muted);
  background: #FFFFFF;
  border-top: 1px solid var(--nr-border-light);
}

.newsroom-content-shell {
  max-width: 780px;
  margin: 0 auto;
}

.newsroom-article-body {
  font-family: var(--nr-font-body);
  font-size: 18px;
  line-height: 1.82;
  color: var(--nr-dark-soft);
  margin-bottom: 40px;
}

.newsroom-article-body p {
  margin-bottom: 26px;
}

.newsroom-article-body h2 {
  font-family: var(--nr-font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--nr-dark);
  line-height: 1.3;
  margin: 44px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--nr-primary-soft);
}

.newsroom-article-body h3 {
  font-family: var(--nr-font-heading);
  font-size: 21px;
  font-weight: 800;
  color: var(--nr-dark);
  line-height: 1.35;
  margin: 34px 0 16px;
}

.newsroom-article-body blockquote {
  margin: 34px 0;
  padding: 22px 26px;
  background: var(--nr-primary-soft);
  border-left: 4px solid var(--nr-primary);
  border-radius: 0 var(--nr-radius-md) var(--nr-radius-md) 0;
  font-family: var(--nr-font-heading);
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  color: var(--nr-dark);
}

.newsroom-article-body img {
  border-radius: var(--nr-radius-md);
  margin: 26px 0;
  max-width: 100%;
  height: auto;
}

.newsroom-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--nr-bg-light);
  border: 1px solid var(--nr-border);
  border-radius: var(--nr-radius-lg);
  margin-bottom: 34px;
  flex-wrap: wrap;
  gap: 12px;
}

.newsroom-share-label {
  font-family: var(--nr-font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--nr-dark);
}

.newsroom-share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.newsroom-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--nr-radius-pill);
  font-family: var(--nr-font-heading);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-whatsapp {
  background: #E8F7EE;
  color: #128C7E;
  border-color: #C2EAD0;
}

.share-whatsapp:hover {
  background: #128C7E;
  color: #FFFFFF;
}

.share-x {
  background: #F1F5F9;
  color: #0F172A;
  border-color: var(--nr-border);
}

.share-x:hover {
  background: #0F172A;
  color: #FFFFFF;
}

.share-facebook {
  background: #EBF3FD;
  color: #1877F2;
  border-color: #C6DEFA;
}

.share-facebook:hover {
  background: #1877F2;
  color: #FFFFFF;
}

.share-copy {
  background: #FFFFFF;
  color: var(--nr-dark);
  border-color: var(--nr-border);
}

.share-copy:hover {
  background: var(--nr-primary);
  color: #FFFFFF;
  border-color: var(--nr-primary);
}

.newsroom-article-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--nr-border);
  border-bottom: 1px solid var(--nr-border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tags-label {
  font-family: var(--nr-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--nr-dark);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.newsroom-tag-pill {
  display: inline-block;
  background: var(--nr-bg-light);
  color: var(--nr-text-body);
  border: 1px solid var(--nr-border);
  padding: 4px 12px;
  border-radius: var(--nr-radius-pill);
  font-family: var(--nr-font-heading);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.newsroom-tag-pill:hover {
  background: var(--nr-dark);
  color: #FFFFFF;
  border-color: var(--nr-dark);
}

/* Author Bio Card */
.newsroom-author-bio-card {
  display: flex;
  gap: 22px;
  padding: 28px;
  background: #F8FAFC;
  border: 1px solid var(--nr-border);
  border-radius: var(--nr-radius-xl);
  margin-bottom: 40px;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .newsroom-author-bio-card {
    flex-direction: column;
    padding: 20px;
  }
}

.bio-card-avatar-wrap {
  flex-shrink: 0;
}

.bio-card-avatar {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #FFFFFF;
  box-shadow: var(--nr-shadow-sm);
}

.bio-card-content {
  flex: 1;
}

.bio-card-name {
  font-family: var(--nr-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--nr-dark);
  margin: 0 0 4px;
}

.bio-card-name a {
  color: inherit;
  text-decoration: none;
}

.bio-card-role {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--nr-primary);
  margin-bottom: 10px;
}

.bio-card-desc {
  font-size: 14px;
  color: var(--nr-text-body);
  line-height: 1.6;
  margin: 0 0 12px;
}

.bio-card-all-posts-link {
  font-family: var(--nr-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--nr-dark);
  text-decoration: none;
}

.bio-card-all-posts-link:hover {
  color: var(--nr-primary);
  text-decoration: underline;
}

/* Next / Prev Nav Grid */
.newsroom-post-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .newsroom-post-nav-grid {
    grid-template-columns: 1fr;
  }
}

.nav-post-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid var(--nr-border);
  border-radius: var(--nr-radius-lg);
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-post-card:hover {
  border-color: var(--nr-dark);
  box-shadow: var(--nr-shadow-sm);
  transform: translateY(-2px);
}

.nav-post-img {
  width: 54px !important;
  height: 54px !important;
  border-radius: var(--nr-radius-md) !important;
  object-fit: cover !important;
  flex-shrink: 0;
}

.nav-post-text {
  flex: 1;
  min-width: 0;
}

.nav-direction {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--nr-primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.nav-title {
  font-family: var(--nr-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--nr-dark);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Related Stories Section */
.newsroom-related-section {
  padding-top: 56px;
  border-top: 1px solid var(--nr-border);
  margin-top: 56px;
}

.related-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.related-kicker {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--nr-primary);
  margin-bottom: 6px;
}

.related-heading {
  font-family: var(--nr-font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--nr-dark);
  margin: 0;
}

.related-view-all-link {
  font-family: var(--nr-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--nr-dark);
  text-decoration: none;
}

.related-view-all-link:hover {
  color: var(--nr-primary);
}

.newsroom-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--nr-primary);
  text-decoration: none;
}


/* ==========================================================================
   AIRBNB LUXURY PLACES ARCHIVE & FILTER SYSTEM
   ========================================================================== */

.airbnb-archive-wrap {
  color: #222222;
  min-height: 100vh;
}

.lunqra-discovery-hero {
  padding: 36px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.lunqra-discovery-hero__eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: #FF5A1F;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

#lunqra-discovery-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.lunqra-discovery-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.lunqra-discovery-hero__cta {
  background: #0F172A;
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.lunqra-discovery-hero__cta:hover {
  background: #FF5A1F;
}

.lunqra-discovery-hero__tiles {
  font-size: 36px;
  display: flex;
  gap: 12px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .lunqra-discovery-hero__tiles {
    display: none;
  }
}

/* Airbnb Category Bar */
.airbnb-category-bar-wrapper {
  position: sticky;
  top: 68px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #EBEBEB;
  padding: 12px 0;
}

.category-slider-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-slider-track::-webkit-scrollbar {
  display: none;
}

.lunqra-archive-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.lunqra-archive-category:hover {
  border-color: #0F172A;
  color: #0F172A;
}

.lunqra-archive-category.active {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

/* Luxury Filter Capsule Bar */
.airbnb-filter-capsule-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 14px;
  border: 1px solid #DDDDDD;
  border-radius: 9999px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  margin-bottom: 28px;
  margin-top: 24px;
}

.airbnb-filter-capsule-bar:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}

.filter-capsule-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: #F7F7F7;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.filter-capsule-item:focus-within {
  background: #FFFFFF;
  border-color: #222222;
  box-shadow: 0 0 0 2px rgba(34,34,34,0.08);
}

.capsule-icon {
  color: #717171;
  flex-shrink: 0;
}

.capsule-text-wrap {
  display: flex;
  flex-direction: column;
}

.capsule-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #717171;
  line-height: 1;
  margin-bottom: 2px;
}

.capsule-input {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  font-size: 13.5px;
  font-weight: 600;
  color: #222222;
  padding: 0 !important;
  width: 140px;
}

.capsule-select {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  font-size: 13.5px;
  font-weight: 600;
  color: #222222;
  padding: 0 !important;
  cursor: pointer;
}

.filter-quick-pills-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-wrap: wrap;
}

.airbnb-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #EBEBEB;
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #222222;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.15s;
}

.airbnb-filter-chip:hover {
  border-color: #222222;
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
}

.btn-search-circle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FF5A1F;
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-search-circle:hover {
  background: #E04810;
}

@media (max-width: 992px) {
  .airbnb-filter-capsule-bar {
    border-radius: 20px;
    padding: 12px;
  }
  .filter-capsule-item {
    flex: 1 1 180px;
  }
  .capsule-input {
    width: 100%;
  }
  .filter-quick-pills-row {
    margin-left: 0;
    width: 100%;
  }
}

/* 4-Column Luxury Airbnb Card Grid */
.airbnb-places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px 24px;
}

.airbnb-card-item {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.airbnb-card-item:hover {
  transform: translateY(-4px);
}

.airbnb-card-item .listing-media-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 14px;
  background: #F1F5F9;
}

.airbnb-card-item .listing-primary-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease;
}

.airbnb-card-item:hover .listing-primary-img {
  transform: scale(1.05);
}

.airbnb-card-item .listing-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.badge-gold {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #F8FAFC;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15);
}

.airbnb-card-item .listing-content {
  padding: 12px 2px 4px;
}

.airbnb-card-item .listing-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 13px;
  color: #64748B;
}

.airbnb-card-item .listing-location {
  font-weight: 600;
}

.airbnb-card-item .listing-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.airbnb-card-item .rating-val {
  font-weight: 800;
  color: #0F172A;
}

.airbnb-card-item .reviews-count {
  font-size: 12px;
  color: #94A3B8;
}

.airbnb-card-item .listing-title {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
  line-height: 1.3;
}

.airbnb-card-item .listing-title a {
  color: inherit;
  text-decoration: none;
}

.airbnb-card-item .listing-title a:hover {
  color: #FF5A1F;
}

.airbnb-card-item .listing-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  border-top: 1px solid #F1F5F9;
}

.airbnb-card-item .price-value {
  font-weight: 700;
  color: #64748B;
  font-size: 13px;
  margin-right: 8px;
}

.airbnb-card-item .open-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: #16A34A;
  background: #DCFCE7;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.airbnb-card-item .card-arrow-btn {
  font-size: 13px;
  font-weight: 700;
  color: #FF5A1F;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 9999px;
  background: #FFF0EB;
  transition: all 0.15s;
}

.airbnb-card-item .card-arrow-btn:hover {
  background: #FF5A1F;
  color: #FFFFFF;
}




