  <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Rank #1 - Pay to Rank</title>
   
        @import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,440;9..144,560;9..144,680&family=Inter:wght@400;500;600;700&display=swap');

  
		:root {
    /* ============ LAYOUT COLORS ============ */
    --bg-main: #FFFFFF;                  
    --bg-card: #FAF9F6;                  /* Premium soft ivory */
    --bg-raised: #FFFFFF;                
    --text-main: #09090B;                
    --text-muted: #71717A;               
    --border-light: #EBEAE5;             

		
    /* ============ LAYOUT BASECOLORS ============ */
    --bg-main: #FFFFFF; 
    --bg-card: #FAF9F6;                  /* Plain light ivory baseline */
    --bg-raised: #FFFFFF; 
    --text-main: #18181B; 
    --text-muted: #71717A; 
    --border-light: #EBEAE5; 

    /* ============ TIER 1: EXACT SOLID LUXURY MATTE GOLD ============ */

   --gold-solid: #FAF6EE;               /* Light version gold tint canvas background */
    --gold-accent: #C1AD87;              /* Solid gold structural framing boundary */
    --gold-dark: #D4AF37;                /* Rich deep gold ink for text headers */
		
			
			
	--emerald:#0a7b4a;
    --emerald-dark:#076138;
			
    /* ============ TIER 2: SOLID SILVER ============ */
   --silver-solid: #F4F5F6;             
    --silver-accent: #C7C7CC;            
    --silver-dark: #2C2C2E;              

    /* ============ TIER 3: SOLID BRONZE ============ */
    --bronze-solid: #F6F3EE;             
    --bronze-accent: #D1C4B5;            
    --bronze-dark: #4A3E31;              
		
    /* ============ UTILITY ACCENTS ============ */
   
    --emerald-bg: #E6F4EA;               /* Ultra-soft pastel sage mint */
    --amber: #78350F;                    /* Rich burnt amber text */
    --amber-bg: #FEF3C7;                 /* Soft warm morning light amber background */
}
	
		

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

 
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

 { 
    color: inherit; 
    text-decoration: none; 
}

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
}


		
		
/* ============ HEADER - SINGLE ROW LAYOUT ============ */
.site-header {
    height: 80px; /* Reduced from 100px to save more vertical hero space */
    background: #fffffff;
   
    position: sticky;
    top: 0;
    z-index: 100;
    
    /* Layout positioning */
    display: flex;
    justify-content: space-between; 
    align-items: center;
    
    /* Responsive sizing constraints */
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ============ LOGO ============ */
.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 55px; /* Scaled down slightly to fit the 80px bar elegantly */
    width: auto;
    object-fit: contain;
}

/* ============ NAVIGATION ============ */
.main-nav {
    display: flex;
    align-items: center;
    gap: 12px; /* Increased slightly for cleaner item spacing */
    flex-shrink: 0;
}

.nav-link {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 20px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-main);
    background: #f0f0f0;
}

.ws-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg-main);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    white-space: nowrap;
}

.ws-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
    flex-shrink: 0;
}
		
		

		
/* ============ LETTER LOGO (fallback when no logo uploaded) ============ */
.listing-logo.letter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf8ec 0%, #faefd9 100%);
    border: 1px solid var(--gold-accent);
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--gold-deep);
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    user-select: none;
}

.listing-logo.letter-logo span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tier-specific letter logo colors */
.billboard-card.tier-1 .listing-logo.letter-logo {
    background: linear-gradient(135deg, #fdf8ec 0%, #f5ecd8 100%);
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

.billboard-card.tier-2 .listing-logo.letter-logo {
    background: linear-gradient(135deg, #f5f6f9 0%, #eceef2 100%);
    border-color: var(--silver-accent);
    color: var(--silver-dark);
}

.billboard-card.tier-3 .listing-logo.letter-logo {
    background: linear-gradient(135deg, #f6f3ee 0%, #ede4d8 100%);
    border-color: var(--bronze-accent);
    color: var(--bronze-dark);
}		



		

/* ============ HERO - PERFECTED ============ */
.hero {
    background: #ffffff;
    padding: 8px 0 6px;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}
.hero-button-wrapper {
    text-align: center;
}
.hero-claim-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 8px 28px;
    background: var(--emerald);
    color: #FFFFFF;
    font-family: 'Fraunces', serif;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 3px 16px rgba(212, 175, 55, 0.3);
    /* ✅ Add this to center the button */
    margin: 0 auto;
}

.hero-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45);
}

.hero-btn-label {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
}

.hero-btn-highlight {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.hero-btn-sub {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.85;
    font-family: 'Inter', sans-serif;
    background: rgba(255,255,255,0.12);
    padding: 1px 14px;
    border-radius: 16px;
    margin-top: 1px;
}

.hero-text {
    margin-top: 15px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
	    text-align: center;
}

.hero-main-text {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-main-text .highlight {
    color: var(--text-main);
    font-weight: 600;
}

.hero-main-text .urgency {
    color: #DC2626;
    font-weight: 500;
}

.hero-secondary-text {
    font-size: 12px;
    color: var(--text-main);
    margin-top: 2px;
}

.hero-secondary-text .stat-highlight {
    color: var(--text-main);
    font-weight: 700;
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
    font-size: 12px;
    flex-wrap: wrap;
}

.hero-why-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 2px 10px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid transparent;
}

.hero-why-link:hover {
    color: var(--gold-dark);
    background: var(--gold-light);
    border-color: var(--gold-accent);
}

.hero-why-link .hero-arrow {
    transition: transform 0.2s ease;
}

.hero-why-link:hover .hero-arrow {
    transform: translateX(2px);
}

.hero-divider {
    color: var(--border-light);
    font-weight: 300;
}

.hero-live-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-weight: 500;
}

.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}


/* ============ WHY JOIN LINK IN HERO TEXT ============ */
.hero-why-link-text {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.hero-why-link-text:hover {
    color: var(--gold-accent);
    border-bottom-color: var(--gold-accent);
}


 	

   /* ============ STATS BAR + ASK-AI LOGOS ============ */
.stats-bar {
    background: var(--bg-card);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

/* The bar itself is a 3-column grid:
   [empty] [centered stats] [right-aligned logos]  */
.stats-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    min-height: 34px;
}

/* Left column — invisible spacer, keeps stats truly centered */
.stats-content::before {
    content: '';
    display: block;
}

/* The stats block (your two numbers) goes in the middle column */
.stats-content > .stat-item,
.stats-content > .stat-divider,
.stats-left {
    grid-column: 2;
}

/* Group the stats into one centered middle row */
.stats-left {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    white-space: nowrap;
}

/* If stats are direct children (no .stats-left wrapper),
   we still want them inline and centered */
.stats-content {
    justify-items: center;
}

/* Right column — the ask-ai block */
.stats-right {
    grid-column: 3;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
    margin-left: auto;
}

/* ── Stat items — one line each ── */
.stats-content .stat-item,
.stat-item {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.stat-value {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-main);
    display: inline-block;
}

.stat-label {
    display: inline-block;
    font-size: 12px;
    color: var(--text-muted);
}

.stat-divider {
    color: #D4D4D8;
}

.stat-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
    margin-right: 4px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ── Ask AI label + logos ── */
.ask-ai-inline-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    margin-right: 4px;
}

/* Gold + bold highlight inside the Ask AI label */
.ask-ai-inline-label em {
    color: #000000;
    font-weight: 800;
    font-style: normal;
}


.ask-ai-logos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
}

.ask-ai-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.ask-ai-logos a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.ask-ai-logos img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Remove the old standalone hero version (it's not used now) */
.ask-ai-hero {
    display: none;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .stats-content {
        gap: 8px;
        font-size: 10px;
    }
    .stats-left {
        gap: 8px;
    }
    .ask-ai-inline-label {
        display: none;
    }
    .ask-ai-logos {
        gap: 5px;
    }
    .ask-ai-logos a {
        width: 22px;
        height: 22px;
    }
}
        /* ============ CATEGORIES ============ */
  
/* Categories Container - Add spacing */
.categories {
    display: flex;
    gap: 6px;
    padding: 16px 0 18px; /* Increased top and bottom padding */
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
    background: var(--bg-main);
}

/* Category Tabs */
.category-tab {
    padding: 6px 15px;
    border-radius: 20px;
    background: var(--bg-card);
    color: #000000;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: all 0.2s;
    margin: 2px 0; /* Adds vertical spacing between rows */
}		
		


.category-tab:hover {
    background: var(--bg-main);
    color: var(--text-main);
}

.category-tab.active {
    background: var(--text-main);
    color: #000000;
    border-color: var(--text-main);
}

/* Gold "All" button - always gold when active */
.category-tab.gold {
    background: var(--gold-accent);
    color: #FFFFFF;
    border-color: var(--gold-accent);
}

.category-tab.gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.category-tab.gold.active {
    background: var(--gold-dark);
    color: #FFFFFF;
    border-color: var(--gold-dark);
}

/* Alternating category colors */
.category-tab:nth-child(2) { background: #ffffff; }  /* AI Agents - light gold */
.category-tab:nth-child(3) { background: #D4AF37;}  /* SEO - light blue */
.category-tab:nth-child(4) { background: #Ffffff }  /* AI Content - light green */
.category-tab:nth-child(5) { background: #D4AF37; }  /* Social Media - light pink */
.category-tab:nth-child(6) { background: #Ffffff; }  /* E-Commerce - light blue */
.category-tab:nth-child(7) { background: #D4AF37;}  /* Branding - light gold */
.category-tab:nth-child(8) { background: #FFffff; }  /* Writing - light indigo */
		
		
		
		
.category-more {
    position: relative;
    display: inline-block;
}


.more-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 50;
}

.more-dropdown.show {
    display: block;
}

.more-dropdown .category-tab {
    display: block;
    border: none;
    border-radius: 0;
    padding: 8px 16px;
    text-align: left;
    width: 100%;
    background: transparent !important;
}

.more-dropdown .category-tab:hover {
    background: var(--bg-main) !important;
}

.more-dropdown .category-tab.active {
    background: var(--text-main) !important;
    color: var(--bg-card) !important;
}
		
			
/* ============ TOP 3 DIVIDER ============ */
 
.top-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 16px;
    padding: 0 20px;
}

.top-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    max-width: 120px;
}

.top-divider .label {
    font-family: 'Fraunces', serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}		
		
		
		


/* ============ ENGINE COLUMN CONFIGURATION ============ */


.listing-logo {
    width: 52px !important;              /* Jumbo layout sizing directly from reference */
    height: 52px !important;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-raised);
    border: 1px solid var(--border-light);
}
.listing-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.empty-logo {
    background: #E4E4E7;
}

.listing-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.listing-top {
    display: flex;
    align-items: baseline;               /* Align text cleanly along reading axis */
    gap: 8px;
    flex-wrap: wrap;
}

.listing-name {
    font-family: 'Inter', -apple-system, sans-serif; /* Clean tech sans-serif title look */
    font-weight: 700;
    font-size: 17px;
    color: var(--text-main);
    text-decoration: none;
}
.listing-name:hover {
    text-decoration: underline;
}

.listing-tagline {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.listing-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.listing-category {
    font-weight: 600;
    color: var(--gold-dark);                     /* High contrast hot-red tag highlights */
}




/* ============ FLOATING SHARE POPUP (with header + close) ============ */
/* ============ FLOATING SHARE POPUP (with header + close) ============ */
.listing-meta .share-popup {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    display: none;
    flex-direction: column;
    width: max-content;
    background: #ffffff;
    border: 1px solid #e7e4dd;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
    padding: 8px 10px 10px;
    z-index: 9999;
    box-sizing: border-box;
}

.listing-meta .share-popup.show {
    display: flex;
}

.listing-meta .share-popup::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-right: 1px solid #e7e4dd;
    border-bottom: 1px solid #e7e4dd;
    transform: rotate(45deg);
}

/* Header row */
.listing-meta .share-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f5f4f1;
    white-space: nowrap;
}

.listing-meta .share-popup-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #71717a;
    line-height: 1;
}

.listing-meta .share-popup-close {
    background: transparent;
    border: none;
    color: #71717a;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.listing-meta .share-popup-close:hover {
    background: #f5f4f1;
    color: #09090b;
}

/* Icons row */
.listing-meta .share-popup-icons {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-start;
}

.listing-meta .share-popup-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #000000;
    color: #000000;
    background: transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.listing-meta .share-popup-icons a:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}

.listing-meta .share-popup-icons a svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}







/* SOCIAL ROW - inline with meta */
/* SOCIAL ROW - inline with meta */
.social-row {
    display: flex;
    gap: 4px;
    align-items: center;
}


.social-icon {
    width: 28px;
    height: 28px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
    background: transparent;
    cursor: pointer;
    color: #000;
}
.social-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.social-icon:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}
.tier-1 .social-icon,
.tier-2 .social-icon,
.tier-3 .social-icon {
    border-color: #000;
    color: #000;
}


.tier-1 .social-icon:hover,
.tier-2 .social-icon:hover,
.tier-3 .social-icon:hover {
    background: #000;
    color: #fff;
}



/* ============ SHARE ICON ON LISTING CARD ============ */
.share-icon-btn {
    width: 28px;
    height: 29px;
    border: 1px solid #000000;
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color:#000000;
    padding: 0;
    flex-shrink: 0;
}

.share-icon-btn:hover {
    background:transparent;
    border-color: #000000;
    color: #000000;
    transform: translateY(-1px);
}
.share-icon-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============ COMPACT SHARE POPUP ============ */

/* ============ COMPACT SHARE POPUP ============ */
.share-popup {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    width: 140px;
    height: 80px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: none;
    align-items: center;
    justify-content: space-around;
    padding: 0 4px;
    z-index: 500;
}

/* ============ FLOATING SHARE POPUP (with header + close) ============ */
.listing-meta .share-popup {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    display: none;
    flex-direction: column;
    width: max-content;
    background: #ffffff;
    border: 1px solid #e7e4dd;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
    padding: 8px 10px 10px;
    z-index: 9999;
    box-sizing: border-box;
}

.listing-meta .share-popup.show {
    display: flex;
}

.listing-meta .share-popup::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-right: 1px solid #e7e4dd;
    border-bottom: 1px solid #e7e4dd;
    transform: rotate(45deg);
}

/* Header row */
.listing-meta .share-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f5f4f1;
    white-space: nowrap;
}

.listing-meta .share-popup-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #71717a;
    line-height: 1;
}

.share-popup-close {
    position: absolute;
    top: 4px;
    right: 6px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    z-index: 10;
    transition: all 0.2s ease;
}

.listing-meta .share-popup-close:hover {
    background: #f5f4f1;
    color: #09090b;
}

/* Icons row */
.listing-meta .share-popup-icons {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-start;
}

.listing-meta .share-popup-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #000000;
    color: #000000;
    background: transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.listing-meta .share-popup-icons a:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}

.listing-meta .share-popup-icons a svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}





/* ============ TOAST FOR "COPIED" ============ */
.copy-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--text-main);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 3000;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

		
		
		

/* PRICE TAG PLATFORM */
.price-plate {
    display: flex;
    align-items: center;
    padding-left: 16px;
}
.price-badge {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--gold-dark);                     /* High contrast valuation color */
}


/* ============ BILLBOARD CARDS - CLEAN ============ */
.billboard-card {
    display: grid;
    grid-template-columns: 44px 52px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 82px;
    margin-bottom: 10px;
    position: relative;
}

/* ============ RANK MEDALLION ============ */
.rank-medallion {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 14px;
    background: #EBEAE5;
    color: var(--text-main);
    flex-shrink: 0;
}

/* ============ TOP 3 - GOLD/SILVER/BRONZE ============ */
.billboard-card.tier-1 {
    background: var(--gold-light) !important;
    border: 1.5px solid var(--gold-dark) !important;
}
.billboard-card.tier-1 .rank-medallion {
    background: var(--gold-dark) !important;
    color: #FFFFFF !important;
}
.billboard-card.tier-1 .price-badge {
    color: var(--gold-dark) !important;
}
.billboard-card.tier-1 .listing-name {
    color: var(--gold-dark) !important;
}

.billboard-card.tier-2 {
    background: var(--silver-light) !important;
    border: 1.5px solid var(--silver-accent) !important;
}
.billboard-card.tier-2 .rank-medallion {
    background: var(--silver-accent) !important;
    color: #FFFFFF !important;
}
.billboard-card.tier-2 .price-badge {
    color: var(--silver-dark) !important;
}
.billboard-card.tier-2 .listing-name {
    color: var(--silver-dark) !important;
}

.billboard-card.tier-3 {
    background: #F6F3EE !important;
    border: 1.5px solid #D1C4B5 !important;
}
.billboard-card.tier-3 .rank-medallion {
    background: #D1C4B5 !important;
    color: #FFFFFF !important;
}
.billboard-card.tier-3 .price-badge {
    color: #8B7D6B !important;
}
.billboard-card.tier-3 .listing-name {
    color: #8B7D6B !important;
}



/* ============ EMPTY SLOT CARDS ============ */
.billboard-card.empty-slot {
    background: var(--bg-card);
    border: 1px dashed var(--border-light);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.billboard-card.empty-slot:hover {
    opacity: 1;
    border-color: var(--gold-accent);
    background: var(--gold-light);
}



/* ============ FIX: Center cup icon in empty logo ============ */
.billboard-card.empty-slot .listing-logo.empty-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: var(--bg-main);
}

.billboard-card.empty-slot .listing-logo.empty-logo span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}



.btn-claim-spot {
    padding: 6px 16px;
    background: var(--gold-dark);
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.btn-claim-spot:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Rank medallion for empty slots */
.billboard-card.empty-slot .rank-medallion {
    background: #E4E4E7;
    color: var(--text-muted);
}




/* ============ FREE LISTING BADGE ============ */
.billboard-card.free-listing .price-badge::after {
    content: ' FREE';
    font-size: 10px;
    background: var(--gold-dark);
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 600;
}

.billboard-card.free-listing .price-plate {
    position: relative;
}

.billboard-card.free-listing .price-plate::after {
    content: '🎉';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 14px;
}

/* Free listing countdown in meta */
.listing-free-badge {
    background: var(--gold-dark);
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}





		
/* PENDING STATUS */
.billboard-card.pending {
    background: repeating-linear-gradient(135deg, #FFFFFF, #FFFFFF 12px, #FAFAFA 12px, #F4F4F5 24px);
    opacity: 0.6;
    border-style: dashed;
}
		

/* ============ FILTERS BAR ============ */
.filters-bar {
    display: flex;
    gap: 20px;
    padding: 12px 0 16px;
    flex-wrap: wrap;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-main);
	 margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 500;
    min-width: 160px;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2371717A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.filter-select:hover {
    border-color: var(--gold-accent);
}

.ranking-display {
    margin-left: auto;
    padding: 8px 16px;
    background: var(--gold-light);
    border-radius: 8px;
    border: 1px solid var(--gold-accent);
}

.ranking-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
}

.ranking-label span {
    color: var(--text-main);
}



/* ============ SEARCHABLE FILTER ============ */
.searchable-filter {
    position: relative;
    min-width: 200px;
}

.searchable-filter input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.2s;
    cursor: pointer;
}

.searchable-filter input:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.searchable-filter input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.searchable-filter .filter-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: none;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 4px 0;
}

.searchable-filter .filter-options.show {
    display: block;
}

.searchable-filter .filter-option {
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s;
    color: var(--text-main);
}

.searchable-filter .filter-option:hover {
    background: var(--bg-main);
}

.searchable-filter .filter-option.selected {
    background: var(--gold-dark);
    color: #FFFFFF;
}

.searchable-filter .filter-option .flag {
    margin-right: 8px;
}

.searchable-filter .filter-option .city-count {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 6px;
}

.searchable-filter .filter-option.selected .city-count {
    color: rgba(255,255,255,0.7);
}

.searchable-filter .no-results {
    padding: 8px 14px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

/* Scrollbar styling */
.searchable-filter .filter-options::-webkit-scrollbar {
    width: 6px;
}

.searchable-filter .filter-options::-webkit-scrollbar-track {
    background: var(--bg-main);
    border-radius: 3px;
}

.searchable-filter .filter-options::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

.searchable-filter .filter-options::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}



/* ============ RESET FILTERS - ICON ONLY ============ */
.reset-group {
    justify-content: center;
    align-items: flex-end;
}

.btn-reset-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    padding: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset-filters:hover {
    background: var(--gold-light);
    border-color: var(--gold-accent);
    color: var(--gold-dark);
  
}

.btn-reset-filters:active {
 
}

.btn-reset-filters svg {
    flex-shrink: 0;
}




        /* PAGINATION */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 4px;
            padding: 16px 0 8px;
            border-top: 1px solid var(--border-light);
            background: var(--bg-card);
            margin-top: 4px;
            border-radius: 0 0 10px 10px;
        }

        .pagination button {
            padding: 4px 10px;
            border: 1px solid var(--border-light);
            border-radius: 6px;
            background: var(--bg-card);
            color: var(--text-main);
            cursor: pointer;
            font-size: 11px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .pagination button:hover {
            background: var(--bg-main);
        }

        .pagination button.active {
            background: var(--text-main);
            color: var(--bg-card);
            border-color: var(--text-main);
        }

        .pagination button:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* ============ MODAL ============ */

	/* ============ PRECISE MODAL WINDOW FIXES ============ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex !important;
}

.modal {
    background: #FFFFFF !important;
    border-radius: 16px;
    padding: 28px;
    max-width: 840px !important;
    width: 100% !important;
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid #E4E4E7;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    margin: auto;
}	
		
	


		

        @keyframes modalIn {
            from {
                transform: scale(0.95) translateY(10px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-light);
        }

        .modal-title {
            font-family: 'Fraunces', serif;
            font-size: 22px;
            font-weight: 680;
        }

        .modal-title small {
            display: block;
            font-size: 13px;
            font-weight: 400;
            color: var(--text-muted);
            margin-top: 2px;
            font-family: 'Inter', sans-serif;
        }

        .modal-close {
            background: var(--bg-main);
            border: none;
            color: var(--text-muted);
            font-size: 18px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            flex-shrink: 0;
        }

        .modal-close:hover {
            background: var(--border-light);
            color: var(--text-main);
        }

        .form-group {
            margin-bottom: 12px;
        }

        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 3px;
            color: var(--text-main);
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 8px 12px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            transition: border-color 0.2s;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--gold-accent);
            box-shadow: 0 0 0 3px rgba(201, 164, 75, 0.15);
        }

        .form-hint {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 3px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }







/* ============ SEARCHABLE SELECT ============ */
.searchable-select {
    position: relative;
    width: 100%;
}

.searchable-select input {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 13px;
    transition: border-color 0.2s;
}

.searchable-select input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(201, 164, 75, 0.15);
}

.searchable-select input:disabled {
    background: var(--bg-main);
    color: var(--text-muted);
    cursor: not-allowed;
}

.searchable-select .options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 4px 0;
}

.searchable-select .options.show {
    display: block;
}

.searchable-select .option-item {
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s;
    color: var(--text-main);
    display: block;
}

.searchable-select .option-item:hover {
    background: var(--bg-main);
}

.searchable-select .option-item.selected {
    background: var(--gold-accent);
    color: #fff;
}

.searchable-select .option-item .flag {
    margin-right: 8px;
}

.searchable-select .no-results {
    color: #999;
    padding: 8px 14px;
    font-style: italic;
    cursor: default;
}

/* Scrollbar styling */
.searchable-select .options::-webkit-scrollbar {
    width: 6px;
}

.searchable-select .options::-webkit-scrollbar-track {
    background: var(--bg-main);
    border-radius: 3px;
}

.searchable-select .options::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

.searchable-select .options::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}





        .logo-upload {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 14px;
            background: var(--bg-main);
            border-radius: 6px;
            border: 1px dashed var(--border-light);
        }

        .logo-preview {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .logo-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .logo-upload-input {
            flex: 1;
        }

        .logo-upload-input input[type="file"] {
            display: none;
        }

        .logo-upload-input label {
            display: inline-block;
            padding: 6px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .logo-upload-input label:hover {
            background: var(--bg-main);
        }

        .logo-upload-input .file-name {
            font-size: 11px;
            color: var(--text-muted);
            margin-left: 6px;
        }

        .btn-add-social {
            background: #09090B;
            color: #FFFFFF;
            border: none;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-add-social:hover { background: #27272A; }

        .social-selection-row {
            display: flex;
            gap: 6px;
            align-items: center;
            animation: slideDownFade 0.2s ease-out;
        }

        .btn-remove-row {
            background: #FEE2E2;
            color: #EF4444;
            border: 1px solid #FCA5A5;
            width: 30px;
            height: 30px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            flex-shrink: 0;
        }

        .btn-remove-row:hover { background: #FCA5A5; color: #B91C1C; }

        @keyframes slideDownFade {
            from { opacity: 0; transform: translateY(-4px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn-success {
            background: var(--gold-accent);
            color: #FFFFFF;
            padding: 10px 24px;
            font-size: 14px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
			
        }

        .btn-success:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: var(--bg-card);
            color: var(--text-main);
            border: 1px solid var(--border-light);
            padding: 8px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--bg-main);
        }

        #paymentInstructions,
        #raisePaymentInstructions {
            margin-top: 12px;
            padding: 16px;
            background: var(--bg-main);
            border-radius: 6px;
            border: 1px dashed var(--border-light);
        }

        #paymentInstructions h3,
        #raisePaymentInstructions h3 {
            font-family: 'Fraunces', serif;
            font-size: 17px;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        #paymentInstructions p,
        #raisePaymentInstructions p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 6px;
            line-height: 1.5;
        }

        #paymentInstructions strong,
        #raisePaymentInstructions strong {
            color: var(--text-main);
        }

        .ref-chip {
            background: var(--text-main);
            color: #FFFFFF;
            padding: 3px 12px;
            border-radius: 4px;
            font-weight: 700;
            display: inline-block;
            margin-top: 3px;
            font-size: 18px;
            letter-spacing: 0.5px;
            font-family: 'Fraunces', serif;
        }

        .iban-chip {
            background: var(--bg-card);
            padding: 2px 6px;
            border: 1px solid var(--border-light);
            border-radius: 4px;
            font-size: 12px;
            font-family: monospace;
        }

        .success-icon {
            text-align: center;
            font-size: 40px;
            margin-bottom: 10px;
        }

        /* ============ TOAST ============ */
        .toast-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 2000;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .toast {
            padding: 10px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            color: var(--text-main);
            font-size: 13px;
            font-weight: 500;
            min-width: 240px;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideIn 0.3s ease;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .toast::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .toast.success::before {
            background: var(--emerald);
        }

        .toast.error::before {
            background: #EF4444;
        }

        .toast.info::before {
            background: var(--gold-accent);
        }

        @keyframes slideIn {
            from {
                transform: translateY(12px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* ============ LOADING / EMPTY ============ */
        .loading,
        .empty-state {
            text-align: center;
            padding: 40px 24px;
            color: var(--text-muted);
            background: var(--bg-card);
            border-radius: 12px;
            border: 1px solid var(--border-light);
        }

        .loading-spinner {
            border: 3px solid var(--border-light);
            border-top: 3px solid var(--gold-accent);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 12px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .empty-state p {
            font-family: 'Fraunces', serif;
            font-size: 16px;
            color: var(--text-main);
            margin-bottom: 12px;
        }

        /* ============ FOOTER ============ */
        .footer {
            border-top: 1px solid var(--border-light);
            background: var(--bg-card);
            padding: 16px 0;
            text-align: center;
            font-size: 11px;
            color: var(--text-muted);
        }

        .footer a {
            color: var(--text-main);
            font-weight: 500;
        }

        .footer a:hover {
            text-decoration: underline;
        }



/* === NAV: BLOG DROPDOWN === */
.blog-dropdown{position:relative;display:inline-block;}
.blog-dropdown > .nav-link{cursor:pointer;}
.blog-dropdown-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(4px);min-width:230px;background:#fff;border:1px solid #eee;border-radius:12px;box-shadow:0 12px 32px rgba(0,0,0,.08);padding:8px 0;opacity:0;visibility:hidden;transition:opacity .18s ease, transform .18s ease;z-index:1000;}
.blog-dropdown:hover .blog-dropdown-menu,.blog-dropdown:focus-within .blog-dropdown-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
.blog-dropdown-menu a{display:block;padding:10px 20px;font-size:14px;color:#333;text-decoration:none;transition:background .15s ease, color .15s ease;white-space:nowrap;}
.blog-dropdown-menu a:hover{background:#faf6ef;color:#b8873a;}
.blog-dropdown-menu .menu-divider{height:1px;background:#f0f0f0;margin:6px 12px;}
.blog-dropdown-menu .menu-muted{font-size:12px;color:#999;text-transform:uppercase;letter-spacing:.08em;padding:8px 20px 4px;}
.blog-dropdown-menu::before{content:'';position:absolute;top:-6px;left:50%;transform:translateX(-50%) rotate(45deg);width:10px;height:10px;background:#fff;border-top:1px solid #eee;border-left:1px solid #eee;}



/* === SHARED: TOPICS / BLOG CONTAINER === */
.topics-wrap{max-width:1240px;margin:0 auto;padding:0 40px;}
@media(max-width:640px){.topics-wrap{padding:0 20px;}}

.topics-masthead{padding:72px 0 32px;text-align:center;border-bottom:1px solid #eee;}
.topics-eyebrow{display:inline-block;font-size:11px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:#b8873a;padding:6px 16px;background:#faf6ef;border:1px solid #e8d9bc;border-radius:100px;margin-bottom:16px;}
.topics-h1{font-family:'Fraunces',Georgia,serif;font-weight:500;font-size:clamp(32px,4.5vw,48px);line-height:1.1;letter-spacing:-0.02em;color:#0a0a0b;margin:0 0 14px;}
.topics-intro{font-size:17px;line-height:1.6;color:#666;max-width:62ch;margin:0 auto;}
.topics-body{padding:48px 0 96px;}

/* Cards grid */
.pillar-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
@media(max-width:900px){.pillar-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.pillar-grid{grid-template-columns:1fr;}}
.pillar-card{display:flex;flex-direction:column;background:#fff;border:1px solid #eee;border-radius:14px;overflow:hidden;text-decoration:none;color:inherit;transition:all .25s ease;min-height:320px;}
.pillar-card:hover{border-color:#d8c9a6;box-shadow:0 10px 28px rgba(0,0,0,.07);transform:translateY(-3px);}
.pillar-card-img{width:100%;aspect-ratio:16/10;object-fit:cover;background:#f5f5f5;display:block;}
.pillar-card-body{padding:24px 26px;display:flex;flex-direction:column;flex:1;}

.pillar-card-title{font-family:'Fraunces',Georgia,serif;font-weight:500;font-size:19px;line-height:1.25;color:#0a0a0b;margin:0 0 12px;letter-spacing:-0.01em;}

.pillar-card-excerpt{font-size:14px;line-height:1.6;color:#555;margin:0 0 16px;flex:1;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.pillar-card-meta{font-size:12px;color:#999;text-transform:uppercase;letter-spacing:.06em;font-weight:500;display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
.pillar-card-meta .dot{color:#ccc;}

.pillar-tag{color:#8a6a2e;text-decoration:none;font-weight:600;text-transform:capitalize;}
.pillar-tag:hover{text-decoration:underline;}

/* Pillar row 1 (60/40) */
.pillar-row1{display:grid;grid-template-columns:3fr 2fr;gap:24px;margin-bottom:24px;align-items:stretch;}
@media(max-width:768px){.pillar-row1{grid-template-columns:1fr;}}
.pillar-featured-card .pillar-card-title{font-size:clamp(24px,3vw,32px);}
.pillar-featured-card .pillar-card-excerpt{-webkit-line-clamp:4;font-size:15px;}

/* Related topics chips */
.pillar-rel{margin-top:64px;padding-top:40px;border-top:1px solid #eee;}
.pillar-rel-title{font-family:'Fraunces',Georgia,serif;font-weight:500;font-size:20px;color:#0a0a0b;margin:0 0 16px;}
.pillar-rel-chips{display:flex;flex-wrap:wrap;gap:10px;}
.pillar-rel-chip{font-size:13px;font-weight:500;padding:8px 16px;background:#faf9f6;border:1px solid #e8d9bc;border-radius:100px;color:#8a6a2e;text-decoration:none;transition:all .2s;text-transform:capitalize;}
.pillar-rel-chip:hover{background:#f5eddc;border-color:#b8873a;color:#5f4720;}

/* Pillars index */
.pillars-idx-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
@media(max-width:768px){.pillars-idx-grid{grid-template-columns:1fr;}}
.pillars-idx-card{display:block;padding:32px 28px;background:#fff;border:1px solid #eee;border-left:3px solid #b8873a;border-radius:14px;text-decoration:none;color:inherit;transition:all .2s;}
.pillars-idx-card:hover{background:#faf6ef;border-color:#d8c9a6;border-left-color:#b8873a;transform:translateY(-2px);}
.pillars-idx-name{font-family:'Fraunces',Georgia,serif;font-weight:500;font-size:22px;color:#0a0a0b;margin:0 0 8px;}
.pillars-idx-tagline{font-size:14px;line-height:1.55;color:#666;margin:0 0 12px;}
.pillars-idx-count{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:#b8873a;}

/* Blog filter pills */
.blog-filter-row{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 32px;padding:0 0 24px;border-bottom:1px solid #eee;}
.blog-filter-pill{font-size:13px;font-weight:500;padding:8px 16px;background:#fff;border:1px solid #e5e5e5;border-radius:100px;color:#555;cursor:pointer;transition:all .2s;}
.blog-filter-pill:hover{border-color:#b8873a;color:#8a6a2e;}
.blog-filter-pill.active{background:#faf6ef;border-color:#b8873a;color:#8a6a2e;font-weight:600;}
.blog-filter-pill .count{opacity:.6;margin-left:4px;}


/* ============================================================
   MOBILE — nav dropdown, blog filters, cards
   Single source of truth. Last in file wins.
   ============================================================ */
@media (max-width:900px){

  /* --- Header + nav wrap cleanly --- */
  .site-header{
    padding:12px 16px;
    flex-wrap:wrap;
    gap:10px;
  }
  .main-nav{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:6px 14px;
    width:100%;
  }
  .main-nav .nav-link{
    font-size:14px;
    padding:6px 0;
  }

  /* --- Blog dropdown: tap-to-open full overlay --- */
  .blog-dropdown{
    position:relative;
    display:inline-block;
  }
  .blog-dropdown > .nav-link{
    cursor:pointer;
  }
  /* Disable hover-open on mobile (tap only) */
  .blog-dropdown:hover .blog-dropdown-menu{
    opacity:0;
    visibility:hidden;
  }
  .blog-dropdown-menu{
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    right:auto;
    transform:none;
    opacity:0;
    visibility:hidden;
    min-width:240px;
    max-width:calc(100vw - 32px);
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    box-shadow:0 16px 40px rgba(0,0,0,.18);
    padding:6px 0;
    margin:0;
    z-index:9999;
    transition:opacity .15s ease;
    pointer-events:none;
  }
  .blog-dropdown-menu::before{display:none;}
  .blog-dropdown.open .blog-dropdown-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
  .blog-dropdown-menu a{
    display:block;
    padding:12px 18px;
    font-size:14px;
    color:#333;
    text-decoration:none;
    white-space:normal;
    border-bottom:1px solid #f5f5f5;
  }
  .blog-dropdown-menu a:last-child{border-bottom:none;}
  .blog-dropdown-menu .menu-divider{display:none;}
  .blog-dropdown-menu .menu-muted{
    font-size:11px;
    color:#999;
    padding:10px 18px 4px;
    text-transform:uppercase;
    letter-spacing:.08em;
  }

  /* --- Blog filter pills: only active shows, tap to expand --- */
  .blog-filter-row{
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:0 0 16px;
    margin:0 0 24px;
    overflow:visible;
  }
  .blog-filter-pill{
    width:100%;
    text-align:left;
    display:flex;
    justify-content:space-between;
    padding:12px 16px;
    font-size:14px;
  }
  .blog-filter-pill:not(.active){display:none;}
  .blog-filter-pill.active{
    display:flex;
    background:#faf6ef;
    border-color:#b8873a;
    color:#8a6a2e;
    font-weight:600;
  }
  .blog-filter-row.expanded .blog-filter-pill:not(.active){display:flex;}

  /* --- Blog cards: kill double padding --- */
  #blog-grid{padding:0;}
  #blog-grid .pillar-card{
    padding:0;
    border-radius:12px;
  }
  #blog-grid .pillar-card-body{
    padding:20px 22px;
  }
  #blog-grid .pillar-card-title{
    padding:0;
    font-size:18px;
    line-height:1.28;
    margin:0 0 10px;
    max-width:none;
  }
  #blog-grid .pillar-card-excerpt{
    padding:0;
    font-size:14px;
    line-height:1.55;
    -webkit-line-clamp:3;
    margin:0 0 12px;
    max-width:none;
  }
  #blog-grid .pillar-card-meta{
    padding-top:12px;
    font-size:11px;
  }

  /* --- Page containers --- */
  .topics-wrap{padding:0 16px;}
  .topics-masthead{padding:40px 0 24px;}
  .topics-h1{font-size:clamp(26px,7vw,36px);}
  .topics-intro{font-size:15px;}
  .topics-body{padding:32px 0 64px;}

  /* --- Prevent horizontal slide --- */
  html, body{
    overflow-x:hidden;
    max-width:100%;
  }
  img{max-width:100%;height:auto;}
}

@media (max-width:480px){
  .main-nav{gap:4px 10px;}
  .main-nav .nav-link{font-size:13px;}
  .blog-dropdown-menu a{font-size:13px;padding:10px 16px;}
}



/* Mobile: filters collapse into a dropdown-like select */
@media(max-width:700px){
  .blog-filter-row{
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:0 0 20px;
    margin:0 0 24px;
    overflow:hidden;
  }
  .blog-filter-pill{
    width:100%;
    text-align:left;
    display:flex;
    justify-content:space-between;
    padding:12px 16px;
    font-size:14px;
  }
  .blog-filter-pill .count{opacity:.5;}
  .blog-filter-pill:not(.active){
    /* Hide inactive pills on mobile by default */
    display:none;
  }
  .blog-filter-pill.active{
    display:flex;
    background:#faf6ef;
    border-color:#b8873a;
    color:#8a6a2e;
    font-weight:600;
  }
  /* Show the active pill as the "current" state + a hint */
  .blog-filter-row::before{
    content:'Filter:';
    display:block;
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#999;
    margin-bottom:4px;
  }
  /* Expanded state — show all when a class is toggled */
  .blog-filter-row.expanded .blog-filter-pill:not(.active){
    display:flex;
  }
}


html, body{
  overflow-x:hidden;
  max-width:100%;
}
@media(max-width:640px){
  body{font-size:16px;}
  .topics-wrap{padding:0 16px;}
  .topics-h1{font-size:clamp(28px,7vw,36px);}
  .topics-intro{font-size:15px;}
  .blog-filter-row{padding:0 0 16px;}
}

/* No-image card: keep the same height as its row-mate, don't collapse */
.pillar-card.no-image{background:#faf9f6;border-color:#eee;height:100%;min-height:auto;}
.pillar-card.no-image .pillar-card-body{padding:28px 30px;justify-content:flex-start;display:flex;flex-direction:column;flex:1;}
.pillar-card.no-image .pillar-card-title{font-size:22px;line-height:1.25;margin-bottom:14px;}
.pillar-card.no-image .pillar-card-excerpt{-webkit-line-clamp:5;font-size:15px;margin-bottom:20px;}
.pillar-card.no-image .pillar-card-meta{margin-top:auto;padding-top:16px;border-top:1px solid #eee;}

.blog-filter-toggle{
  display:none;
}
@media(max-width:700px){
  .blog-filter-toggle{
    display:block;
    width:100%;
    text-align:left;
    font-size:13px;
    font-weight:600;
    padding:12px 16px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:100px;
    color:#8a6a2e;
    cursor:pointer;
    margin-bottom:8px;
  }
}


/* Blog list cards: taller + narrower feel */



/* === ABSOLUTE FINAL: /blog card layout === */
#blog-grid{display:block;}
#blog-grid .pillar-card,
#blog-grid .pillar-row1,
#blog-grid .pillar-grid{
    /* just to reset any inherited flex-direction:row */
}




/* Blog card: proper padding + narrower text + meta inside the card */
#blog-grid .pillar-card{
    display:flex;
    flex-direction:column;
    min-height:auto;
    height:auto;
    background:#fff;
    border:1px solid #eee;
    border-radius:14px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    padding:0;
}
#blog-grid .pillar-card .pillar-card-body{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:15px 40px;   /* ← inner padding: 32px top/bottom, 40px left/right */
}
#blog-grid .pillar-card-title{
    font-family:'Fraunces',Georgia,serif;
    font-weight:500;
    font-size:clamp(20px,2vw,24px);
    line-height:1.3;
	padding:15px 40px;   /* ← inner padding: 32px top/bottom, 40px left/right */
    color:#0a0a0b;
    margin:0 0 12px;
    letter-spacing:-0.01em;
    max-width:60ch;      /* ← constrains title width so it wraps to 2 lines */
}
#blog-grid .pillar-card-excerpt{
    font-size:15px;
    line-height:1.65;
    color:#555;
	padding:2px 40px ;   /* ← inner padding: 32px top/bottom, 40px left/right */
    margin:0 0 20px;
    flex:1;
    max-width:90ch;      /* ← constrains excerpt width */
}
#blog-grid .pillar-card-meta{
    font-size:12px;
    color:#999;
    text-transform:uppercase;
    letter-spacing:.06em;
    font-weight:500;
    margin-top:auto;
    padding-top:16px;
    border-top:1px solid #f0f0f0;  /* ← subtle divider above meta */
}
#blog-grid .pillar-card.no-image{
    background:#faf9f6;
}

@media(max-width:640px){
  #blog-grid{
    padding:0 8px !important;    /* less outer padding on mobile */
  }
  #blog-grid .pillar-card-body{
    padding:20px 22px;           /* tighter card padding */
  }
  #blog-grid .pillar-card-title{
    font-size:17px;
    margin-bottom:8px;
  }
  #blog-grid .pillar-card-excerpt{
    font-size:13.5px;
    line-height:1.5;
    -webkit-line-clamp:2;        /* show only 2 lines of excerpt */
    margin-bottom:10px;
  }
  #blog-grid .pillar-card-meta{
    font-size:10px;
    padding-top:10px;
  }
  .topics-masthead{
    padding:32px 0 20px;         /* less masthead padding */
  }
  .topics-eyebrow{
    font-size:10px;
    padding:4px 12px;
    margin-bottom:10px;
  }
  .topics-body{
    padding:24px 0 48px;
  }
}







        /* ============ RESPONSIVE ============ */
  
	@media (max-width: 768px) {
    /* Retain clean landscape structure instead of layout collapse */
    .billboard-card {
        grid-template-columns: 36px 1fr auto;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
    }
    .rank-medallion { margin: 0; width: 32px; height: 32px; font-size: 13px; }
    .listing-logo { width: 38px; height: 38px; }
    .listing-name { font-size: 15px; }
    .listing-description { font-size: 12px; }
    .listing-meta { gap: 8px; }
    .listing-clicks, .listing-time { font-size: 11px; }
    .price-plate { padding-left: 12px; border-left: 1px solid var(--border-light); border-top: none; padding-top: 0; align-items: flex-end; }
    .price-badge { font-size: 16px; }
    .social-icon { width: 24px; height: 24px; }
    .social-icon svg { width: 13px; height: 13px; }
}
	
		
		
		
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .header-actions {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero-claim-btn {
                font-size: 18px;
                padding: 8px 20px;
            }

            .hero-claim-btn #topBidAmount {
                font-size: 20px;
            }

            .categories {
                justify-content: center;
            }

            .modal {
                padding: 18px;
                max-width: 100%;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .pagination {
                flex-wrap: wrap;
            }

            .top-divider .line {
                max-width: 80px;
            }

            .stats-content {
                font-size: 11px;
                gap: 8px;
            }
        }

 


/* ============================================================
   MOBILE & TABLET OPTIMIZATION
   Delete the older @media (max-width: 768px) and (max-width: 480px)
   blocks elsewhere in this file — keep only these.
   ============================================================ */

 /* ============================================================
   MOBILE OPTIMIZATION — Compact v2
   ============================================================ */

/* ============ TABLET — 768px and below ============ */
@media (max-width: 768px) {

    /* --- HEADER --- */
    .site-header { height: auto; padding: 6px 14px; gap: 6px; }
    .brand-logo { height: 40px; }
    .main-nav { gap: 4px; }
    .nav-link { padding: 5px 9px; font-size: 12px; }
    .ws-status { padding: 4px 9px; font-size: 10px; }

    /* --- HERO --- */
    .hero { padding: 8px 0 6px; }
    .hero-claim-btn { padding: 7px 20px; max-width: 280px; }
    .hero-btn-label { font-size: 8px; }
    .hero-btn-highlight { font-size: 21px; }
    .hero-btn-sub { font-size: 9px; padding: 1px 11px; }
    .hero-text { margin-top: 8px; padding: 0 4px; }
    .hero-main-text { font-size: 12px; line-height: 1.4; margin-bottom: 8px; }
    .hero-secondary-text { font-size: 11px; margin-top: 0; }
    .hero-footer { gap: 8px; font-size: 11px; margin-top: 6px; }

    /* --- STATS BAR --- */
    .stats-bar { padding: 5px 0; margin-bottom: 8px; }
    .stats-content { gap: 12px; font-size: 12px; }
    .stat-value { font-size: 15px; }
    .stat-divider { font-size: 11px; }
    .stat-label { font-size: 11px; }

    /* =============================================
       FILTERS — 2 ROWS
       Row 1: Category | City  (each 50%, gap 5px)
       Row 2: Reset icon (left) | Ranking (right)
       ============================================= */

     /* =============================================
       FILTERS — Category (narrow) + City (wide) on row 1
                  Reset (left) + Ranking (right) on row 2
       ============================================= */
    .filters-bar {
        display: grid;
        grid-template-columns: 130px 1fr;   /* Category 130px, City takes rest */
        grid-template-areas:
            "category  city"
            "reset     ranking";
        column-gap: 5px;
        row-gap: 7px;
        padding: 10px 0 12px;
        margin-bottom: 10px;
        align-items: end;
    }
    .filters-bar > .filter-group:nth-child(1) { grid-area: category; }
    .filters-bar > .filter-group:nth-child(3) { grid-area: city; }
    .filters-bar > .reset-group               { grid-area: reset; }
    .filters-bar > .ranking-display           { grid-area: ranking; }

    .filter-group { width: 100%; gap: 3px; }
    .filter-label {
        font-size: 9px;
        letter-spacing: 0.06em;
    }
    .filter-select {
        min-width: 0;
        width: 100%;
        padding: 7px 8px;
        font-size: 12px;
        border-radius: 6px;
        background-position: right 6px center;
        padding-right: 22px;
    }

    .reset-group {
        display: flex;
        align-items: end;
        justify-content: flex-start;
        width: auto;
    }
    .reset-group .filter-label { display: none; }
    .btn-reset-filters {
        width: 32px;
        height: 32px;
        padding: 0;
        border-radius: 6px;
    }
    .btn-reset-filters svg { width: 14px; height: 14px; }

    .ranking-display {
        margin-left: 0;
        padding: 6px 12px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 11px;
        border-radius: 6px;
    }
    .ranking-label { font-size: 11px; }

    .searchable-filter { min-width: 0; width: 100%; }
    .searchable-filter input {
        padding: 7px 10px;
        font-size: 12px;
        border-radius: 6px;
    }
    .searchable-filter .filter-options { max-height: 200px; }
	
	
	
	
	

    /* =============================================
       CARDS — TIGHTENED
       Target: Top 3 visible in first mobile screen
       ============================================= */

    /* =============================================
       CARDS — Tagline clamped to 2 lines
       ============================================= */
    .billboard-card {
        grid-template-columns: 32px 40px 1fr auto;
        gap: 9px;
        padding: 9px 12px;
        min-height: 68px;
        border-radius: 10px;
        margin-bottom: 6px;
    }
    .rank-medallion {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .listing-logo,
    .listing-logo.letter-logo {
        width: 40px !important;
        height: 40px !important;
        border-radius: 9px;
    }
    .listing-logo.letter-logo,
    .listing-logo.letter-logo span { font-size: 17px; }

    .listing-content { gap: 3px; }
    .listing-name { font-size: 14px; line-height: 1.2; }

    /* ✅ Clamp tagline to exactly 2 lines — no more full 25 words */
    .listing-tagline {
        font-size: 11px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .listing-meta { gap: 4px 8px; font-size: 10px; flex-wrap: wrap; }
    .listing-category,
    .listing-location,
    .listing-time,
    .listing-clicks { font-size: 10px; }

    .social-row { gap: 3px; }
    .social-icon { width: 22px; height: 22px; }
    .social-icon svg { width: 12px; height: 12px; }

.social-selection-row {
    display: flex;
    gap: 5px;
    align-items: center;
}
.social-platform-select {
    width: 105px !important;
    flex-shrink: 0;
    padding: 6px 8px !important;
    font-size: 11px !important;
}
.social-handle-input {
    flex: 1;
    min-width: 0;
    padding: 6px 9px !important;
    font-size: 11px !important;
}
.btn-remove-row {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}	
	
	
	
	
	
    .price-plate { padding-left: 8px; }
    .price-badge { font-size: 15px; }

    .billboard-card.tier-1 .listing-name { font-size: 15px; }
    .billboard-card.tier-1 .price-badge { font-size: 16px; }

    .billboard-card.empty-slot { min-height: 62px; padding: 8px 12px; }
    .billboard-card.empty-slot .rank-medallion {
        width: 28px; height: 28px; font-size: 10px;
    }
    .billboard-card.empty-slot .listing-logo.empty-logo {
        width: 38px !important; height: 38px !important;
    }
    .btn-claim-spot { padding: 5px 12px; font-size: 10px; white-space: nowrap; }	
	

    /* Top 3 divider — compact */
    .top-divider {
        margin: 4px 0 8px;
        padding: 0 10px;
        gap: 8px;
    }
    .top-divider .line { max-width: 50px; }
    .top-divider .label { font-size: 9px; letter-spacing: 0.06em; }

    /* Pagination */
    .pagination { padding: 10px 0 6px; gap: 3px; }
    .pagination button { padding: 5px 9px; font-size: 10px; }

    /* Footer */
    .footer { padding: 12px 16px; font-size: 10px; }

    /* Modal */
    .modal { padding: 20px 16px; max-width: 100% !important; max-height: 92vh; border-radius: 12px; }
    .modal-header { margin-bottom: 12px; padding-bottom: 10px; }
    .modal-title { font-size: 18px; }
    .modal-title small { font-size: 11px; }
    .form-row { grid-template-columns: 1fr; gap: 8px; }
    .form-input,
    .form-select,
    .form-textarea { font-size: 14px; padding: 9px 12px; }
    .form-label { font-size: 11px; }
    .form-hint { font-size: 10px; }

    .logo-upload { gap: 10px; padding: 8px 10px; }
    .logo-preview { width: 42px; height: 42px; font-size: 18px; }

    .social-selection-row { flex-wrap: nowrap; gap: 5px; }
    .social-platform-select { width: 100px !important; }
    .btn-remove-row { width: 28px; height: 28px; }

    .searchable-select input { font-size: 14px; padding: 9px 12px; }
    .searchable-select .options { max-height: 180px; }
    .searchable-select .option-item { padding: 9px 12px; font-size: 13px; }

    /* Toast */
    .toast-container { bottom: 14px; right: 14px; left: 14px; }
    .toast { min-width: 0; width: 100%; font-size: 12px; padding: 9px 12px; }
}


/* ============ PHONE — 480px and below ============ */
@media (max-width: 480px) {

    /* --- HEADER --- */
    .site-header { padding: 5px 12px; gap: 4px; }
    .brand-logo { height: 34px; }
    .nav-link { padding: 4px 7px; font-size: 11px; }
    .ws-status { padding: 3px 7px; font-size: 9px; }

    /* --- HERO --- */
    .hero { padding: 6px 0 5px; }
    .hero-claim-btn { padding: 6px 16px; max-width: 240px; border-radius: 9px; }
    .hero-btn-label { font-size: 7px; }
    .hero-btn-highlight { font-size: 18px; }
    .hero-btn-sub { font-size: 8px; padding: 1px 9px; }
    .hero-text { margin-top: 6px; padding: 0; }
    .hero-main-text {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 6px;
        padding: 0 4px;
    }
    .hero-secondary-text { display: none; }  /* hide on smallest screens to save space */
    .hero-footer { gap: 6px; font-size: 10px; margin-top: 4px; }

    /* --- STATS --- */
    .stats-bar { padding: 4px 0; margin-bottom: 6px; }
    .stats-content { gap: 8px; font-size: 10px; }
    .stat-value { font-size: 13px; }
    .stat-divider { font-size: 10px; }
    .stat-label { font-size: 10px; }
    .stat-dot { width: 6px; height: 6px; }

    /* --- FILTERS (same 2-row grid, tighter) --- */
 
	    /* FILTERS — even tighter */
    .filters-bar {
        grid-template-columns: 110px 1fr;   /* Category 110px */
        column-gap: 5px;
        row-gap: 6px;
        padding: 8px 0 10px;
        margin-bottom: 8px;
    }
    .filter-label { font-size: 8px; }
    .filter-select {
        padding: 6px 6px;
        font-size: 11px;
        padding-right: 20px;
        background-position: right 5px center;
    }
    .btn-reset-filters { width: 28px; height: 28px; }
    .btn-reset-filters svg { width: 12px; height: 12px; }
    .ranking-display {
        padding: 5px 10px;
        height: 28px;
        font-size: 10px;
    }
    .ranking-label { font-size: 10px; }

    .searchable-filter input {
        padding: 6px 9px;
        font-size: 11px;
    }
	
	
	
	
	/* --- CARDS --- */
 
	
    /* CARDS — tagline 2 lines clamped */
    .billboard-card {
        grid-template-columns: 28px 36px 1fr auto;
        gap: 8px;
        padding: 8px 10px;
        min-height: 60px;
        border-radius: 9px;
        margin-bottom: 5px;
    }
    .rank-medallion { width: 26px; height: 26px; font-size: 10px; }
    .listing-logo,
    .listing-logo.letter-logo {
        width: 36px !important; height: 36px !important; border-radius: 8px;
    }
    .listing-logo.letter-logo,
    .listing-logo.letter-logo span { font-size: 15px; }

    .listing-content { gap: 2px; }
    .listing-name { font-size: 13px; line-height: 1.2; }

    /* ✅ 2-line clamp on phone */
    .listing-tagline {
        font-size: 10px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .listing-meta { gap: 3px 6px; font-size: 9px; }
    .listing-category,
    .listing-location,
    .listing-time,
    .listing-clicks { font-size: 9px; }

    .social-icon { width: 20px; height: 20px; }
    .social-icon svg { width: 11px; height: 11px; }
    .social-row { gap: 2px; }

    .price-badge { font-size: 14px; }
    .price-plate { padding-left: 6px; }

    .billboard-card.tier-1 .listing-name { font-size: 14px; }
    .billboard-card.tier-1 .price-badge { font-size: 15px; }

    .billboard-card.empty-slot { min-height: 56px; padding: 7px 10px; }
    .billboard-card.empty-slot .rank-medallion {
        width: 24px; height: 24px; font-size: 9px;
    }
    .billboard-card.empty-slot .listing-logo.empty-logo {
        width: 34px !important; height: 34px !important;
    }
    .billboard-card.empty-slot .listing-logo.empty-logo span { font-size: 18px; }
    .btn-claim-spot { padding: 4px 9px; font-size: 9px; }	
	
	
	
	
	
    /* Top 3 divider — minimal */
    .top-divider {
        margin: 3px 0 6px;
        padding: 0 8px;
        gap: 6px;
    }
    .top-divider .line { max-width: 30px; }
    .top-divider .label { font-size: 8px; }

    /* Pagination */
    .pagination button { padding: 4px 8px; font-size: 10px; }

    /* Footer */
    .footer { padding: 10px 12px; font-size: 9px; }

    /* Modal */
    .modal { padding: 14px 12px; border-radius: 10px; }
    .modal-title { font-size: 16px; }
    .modal-title small { font-size: 10px; }
    .form-input,
    .form-select,
    .form-textarea { font-size: 16px; padding: 9px 11px; }
    .modal-close { width: 28px; height: 28px; font-size: 15px; }

    /* Toast */
    .toast { font-size: 11px; padding: 8px 10px; }
}





/* public/hype.css */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,440;9..144,560;9..144,680&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #FFFFFF;
    --bg-card: #FAF9F6;
    --bg-raised: #FFFFFF;
    --text-main: #09090B;
    --text-muted: #71717A;
    --border-light: #EBEAE5;
    --gold-solid: #FAF6EE;
    --gold-accent: #C1AD87;
    --gold-dark: #D4AF37;
    --silver-solid: #F4F5F6;
    --silver-accent: #C7C7CC;
    --silver-dark: #2C2C2E;
    --bronze-solid: #F6F3EE;
    --bronze-accent: #D1C4B5;
    --bronze-dark: #4A3E31;
    --emerald: #14532D;
    --emerald-bg: #E6F4EA;
    --amber: #78350F;
    --amber-bg: #FEF3C7;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HEADER ============ */
.site-header {
    height: 80px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 55px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-link {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 20px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-main);
    background: #f0f0f0;
}

.ws-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg-main);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    white-space: nowrap;
}

.ws-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
    flex-shrink: 0;
}

/* ============ HERO ============ */
.hero {
    background: #ffffff;
    padding: 16px 0 12px;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.hero-claim-btn {
    display: inline-block;
    padding: 10px 28px;
    background: var(--gold-dark);
    color: #FFFFFF;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 680;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    line-height: 1.2;
    box-shadow: 0 4px 16px rgba(201, 164, 75, 0.3);
}

.hero-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 164, 75, 0.5);
    background: var(--gold-dark);
}

.hero p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 6px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.hero-hint .raise-link {
    color: var(--gold-accent);
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

/* ============ STATS BAR ============ */
.stats-bar {
    background: var(--bg-card);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.stats-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.stat-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-main);
}

.stat-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
    margin-right: 4px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============ CATEGORIES ============ */
.categories {
    display: flex;
    gap: 6px;
    padding: 16px 0 18px;
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
    background: var(--bg-main);
}

.category-tab {
    padding: 6px 15px;
    border-radius: 20px;
    background: var(--bg-card);
    color: #000000;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: all 0.2s;
    margin: 2px 0;
}

.category-tab:hover {
    background: var(--bg-main);
    color: var(--text-main);
}

.category-tab.active {
    background: var(--text-main);
    color: #000000;
    border-color: var(--text-main);
}

.category-tab.gold {
    background: var(--gold-accent);
    color: #FFFFFF;
    border-color: var(--gold-accent);
}

.category-tab.gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.category-tab.gold.active {
    background: var(--gold-dark);
    color: #FFFFFF;
    border-color: var(--gold-dark);
}

.category-more {
    position: relative;
    display: inline-block;
}

.more-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 50;
}

.more-dropdown.show {
    display: block;
}

.more-dropdown .category-tab {
    display: block;
    border: none;
    border-radius: 0;
    padding: 8px 16px;
    text-align: left;
    width: 100%;
    background: transparent !important;
}

/* ============ BILLBOARD CARDS ============ */
.billboard-card {
    display: grid;
    grid-template-columns: 44px 52px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 94px;
    box-sizing: border-box;
    
    position: relative;
    margin-bottom: 10px;
}

.rank-medallion {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 15px;
    background: #EBEAE5;
    border: none;
    color: var(--text-main);
    flex-shrink: 0;
}

.listing-logo {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-raised);
    border: 1px solid var(--border-light);
}

.listing-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.listing-name {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text-main);
    text-decoration: none;
}

.listing-name:hover {
    text-decoration: underline;
}

.listing-tagline {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}



/* ============ META ROW - Category, Location, Time, Clicks ============ */
.listing-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.listing-category {
    font-weight: 600;
    color: var(--gold-dark);
}

/* Location display */
.listing-location {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 12px;
}

/* Make flag emoji display properly */
.listing-location .flag {
    font-size: 14px;
    margin-right: 2px;
}

.listing-time {
    color: var(--text-muted);
}

.listing-clicks {
    color: var(--text-muted);
}

.listing-clicks strong {
    color: var(--text-main);
    font-weight: 600;
}




/* ============ SOCIAL ROW ============ */
.social-row {
    display: flex;
    gap: 4px;
    align-items: center;
}

.social-icon {
    width: 28px;
    height: 28px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
    background: transparent;
    cursor: pointer;
    color: #000;
}
.social-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.social-icon:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}



/* ============ PRICE PLATE ============ */
.price-plate {
    display: flex;
    align-items: center;
    padding-left: 16px;
}

.price-badge {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--gold-dark);
}

/* ============ TIERS ============ */
.billboard-card.tier-1 {
    background-color: var(--gold-solid) !important;
    border: 1.5px solid var(--gold-accent) !important;
}

.billboard-card.tier-1 .rank-medallion {
    background-color: #E9967A;
    color: #FFFFFF;
}

.billboard-card.tier-1 .price-badge {
    color: #EF4444;
}

.billboard-card.tier-2 {
    background-color: var(--silver-solid) !important;
    border: 1.5px solid var(--silver-accent) !important;
}

.billboard-card.tier-2 .rank-medallion {
    background-color: #E9967A;
    color: #FFFFFF;
}

.billboard-card.tier-3 {
    background-color: var(--bronze-solid) !important;
    border: 1.5px solid var(--bronze-accent) !important;
}

.billboard-card.pending {
    background: repeating-linear-gradient(135deg, #FFFFFF, #FFFFFF 12px, #FAFAFA 12px, #F4F4F5 24px);
    opacity: 0.6;
    border-style: dashed;
}

/* ============ TOP 3 DIVIDER ============ */
.top-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 16px;
    padding: 0 20px;
}

.top-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    max-width: 120px;
}

.top-divider .label {
    font-family: 'Fraunces', serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

/* ============ PAGINATION ============ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 16px 0 8px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-card);
    margin-top: 4px;
    border-radius: 0 0 10px 10px;
}

.pagination button {
    padding: 4px 10px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text-main);
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination button:hover {
    background: var(--bg-main);
}

.pagination button.active {
    background: var(--text-main);
    color: var(--bg-card);
    border-color: var(--text-main);
}

.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============ MODAL - EXPANDED ============ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex !important;
}

.modal {
    background: #FFFFFF !important;
    border-radius: 16px;
    padding: 32px;
    max-width: 640px !important;
    width: 100% !important;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #E4E4E7;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    margin: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.modal-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 680;
}

.modal-title small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
}

.modal-close {
    background: var(--bg-main);
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--border-light);
    color: var(--text-main);
}

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-main);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(201, 164, 75, 0.15);
}

.form-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 3px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ============ SEARCHABLE SELECT ============ */
.searchable-select {
    position: relative;
}

.searchable-select input {
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 13px;
}

.searchable-select input:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.searchable-select .options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 150px;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    margin-top: 2px;
    display: none;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.searchable-select .options.show {
    display: block;
}

.searchable-select .option-item {
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
}

.searchable-select .option-item:hover {
    background: var(--bg-main);
}

.searchable-select .option-item.selected {
    background: var(--gold-accent);
    color: #fff;
}







/* ============ TOAST ============ */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.toast {
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 500;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.toast.success::before {
    background: var(--emerald);
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.toast.error::before {
    background: #EF4444;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.toast.info::before {
    background: var(--gold-accent);
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes slideIn {
    from { transform: translateY(12px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .billboard-card {
        grid-template-columns: 36px 1fr auto;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
    }
    .rank-medallion { margin: 0; width: 32px; height: 32px; font-size: 13px; }
    .listing-logo { width: 38px; height: 38px; }
    .listing-name { font-size: 15px; }
    .listing-meta { gap: 8px; }
    .listing-clicks, .listing-time { font-size: 11px; }
    .price-plate { padding-left: 12px; border-left: 1px solid var(--border-light); border-top: none; padding-top: 0; align-items: flex-end; }
    .price-badge { font-size: 16px; }
    .social-icon { width: 24px; height: 24px; }
    .site-header { height: auto; padding: 10px 16px; flex-wrap: wrap; justify-content: center; }
    .main-nav { flex-wrap: wrap; justify-content: center; }
    .modal { padding: 20px; max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .categories { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-claim-btn { font-size: 15px; padding: 6px 16px; }
    .billboard-card { padding: 10px; min-height: 70px; }
    .listing-name { font-size: 13px; }
    .price-badge { font-size: 14px; }
    .social-icon { width: 22px; height: 22px; }
    .modal-title { font-size: 18px; }
}

