@import url('../assets/css/tokens.css');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Jost', sans-serif; font-weight: 300; line-height: 1.6; color: var(--charcoal); background: var(--teal-dark); }

/* Split layout (login, register, account, plans) */
.split-page{display:flex;min-height:100vh;background:var(--teal-dark)}
.split-brand{flex:0 0 50%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;gap:1rem;background:var(--teal-dark)}
.split-brand .brand-img{flex:1;min-height:0;width:100%;display:flex;align-items:center;justify-content:center}
.split-brand .brand-img img{max-width:100%;max-height:100%;width:100%;height:100%;object-fit:contain;border-radius:var(--r)}
.split-brand .brand-text{text-align:center}
.split-brand .brand-text h2{font-family:'Playfair Display',serif;font-size:1.5rem;color:#fff;font-weight:600;margin-bottom:0.35rem}
.split-brand .brand-text p{font-size:0.85rem;color:rgba(250,247,242,0.6)}
.split-form{flex:0 0 50%;display:flex;align-items:center;justify-content:center;padding:2rem}
.split-form .member-card,.split-form .account-content,.split-form .plans-content{width:100%;max-width:420px;margin:0}

/* Page footer */
.page-footer{background:var(--teal-dark);padding:2rem;text-align:center}
.page-footer-inner{max-width:600px;margin:0 auto}
.page-footer-brand{display:flex;align-items:center;justify-content:center;gap:0.5rem;margin-bottom:1rem}
.page-footer-brand span{font-family:'Playfair Display',serif;font-size:0.85rem;color:rgba(250,247,242,0.5);letter-spacing:0.1em}
.page-footer-links{display:flex;justify-content:center;gap:1.5rem;flex-wrap:wrap;margin-bottom:1rem}
.page-footer-links a{font-size:0.75rem;color:rgba(250,247,242,0.4);letter-spacing:0.1em;text-transform:uppercase;transition:color 0.2s}
.page-footer-links a:hover{color:var(--gold)}
.page-footer-copy{font-size:0.7rem;color:rgba(250,247,242,0.25)}

/* Card footer links */
.card-footer{margin-top:1.5rem;text-align:center;font-size:0.9rem;color:var(--mist)}
.card-footer a{color:var(--teal);font-weight:500;text-decoration:none}
.card-footer a:hover{text-decoration:underline}

@media(max-width:768px){.split-brand{display:none}.split-form{flex:0 0 100%;padding:1.5rem}}

/* Card */
.member-card { background: var(--ivory); border-radius: var(--r-lg); padding: 2.5rem 2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.member-card-header { text-align: center; margin-bottom: 1.75rem; }
.member-logo { width: 52px; height: 52px; margin-bottom: 1rem; }
.member-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.35rem; }
.member-sub { font-size: 0.9rem; color: var(--mist); }

.member-tabs { display: flex; gap: 0; margin-bottom: 1.5rem; border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--border); }
.member-tab { flex: 1; padding: 0.6rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; border: none; background: var(--cream); color: var(--mist); cursor: pointer; transition: all 0.2s; }
.member-tab.active { background: var(--teal); color: #fff; }
.member-tab:hover:not(.active):not(.disabled) { background: var(--teal-light); }
.member-tab.disabled { opacity: 0.5; cursor: default; position: relative; }
.coming-soon { display: inline-block; font-size: 0.55rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: var(--gold); color: var(--teal-dark); padding: 0.08rem 0.35rem; border-radius: 4px; margin-left: 0.3rem; vertical-align: middle; }
.member-btn:disabled { opacity: 0.6; cursor: default; }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.08em; }
.field input { width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-family: 'Jost', sans-serif; font-size: 0.95rem; color: var(--charcoal); background: var(--cream); transition: border-color 0.2s; }
.field input:focus { outline: none; border-color: var(--teal-mid); }

.member-btn { width: 100%; padding: 0.75rem; background: var(--teal); color: #fff; border: none; border-radius: var(--r-sm); font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.member-btn:hover { background: var(--teal-mid); }

.member-error { margin-top: 0.75rem; font-size: 0.85rem; color: var(--red); text-align: center; }
.field-error { font-size: 0.8rem; color: var(--red); margin-top: 0.2rem; }
.member-success { margin-top: 0.75rem; font-size: 0.85rem; color: var(--green); text-align: center; }

.member-footer { margin-top: 1.5rem; text-align: center; font-size: 0.9rem; color: var(--mist); }
.member-footer a { color: var(--teal); font-weight: 500; text-decoration: none; }
.member-footer a:hover { color: var(--teal-mid); text-decoration: underline; }

.account-page { max-width: 640px; }
.account-section { background: var(--ivory); border-radius: var(--r-lg); padding: 2rem; margin-bottom: 1rem; }
.account-section h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--charcoal); margin-bottom: 1rem; }
.account-plan { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--border-light); }
.account-plan:last-child { border-bottom: none; }
.plan-name { font-weight: 600; color: var(--charcoal); }
.plan-badge { display: inline-block; padding: 0.15rem 0.6rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.plan-badge.active { background: var(--green); color: #fff; }
.plan-badge.trialing { background: var(--gold); color: #fff; }
.plan-badge.cancelled { background: var(--mist); color: #fff; }
.plan-badge.past_due { background: var(--red); color: #fff; }
.plan-price { font-size: 1.1rem; font-weight: 600; color: var(--charcoal); }

.member-table { width: 100%; border-collapse: collapse; }
.member-table td { padding: 0.6rem 0; font-size: 0.9rem; color: var(--charcoal); border-bottom: 1px solid var(--border-light); }
.member-table td:last-child { text-align: right; color: var(--mist); }

.account-nav { display: flex; gap: 1rem; margin-bottom: 1rem; }
.account-nav a { color: var(--gold); text-decoration: none; font-size: 0.85rem; font-weight: 500; }
.account-nav a:hover { text-decoration: underline; }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.pricing-card { border: 1.5px solid var(--border); border-radius: var(--r); padding: 1.5rem; text-align: center; transition: border-color 0.2s, box-shadow 0.2s; }
.pricing-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,169,110,0.15); }
.pricing-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.pricing-card .price { font-size: 1.5rem; font-weight: 700; color: var(--teal); margin-bottom: 0.25rem; }
.pricing-card .interval { font-size: 0.8rem; color: var(--mist); margin-bottom: 1rem; }
.pricing-card ul { list-style: none; text-align: left; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 1.25rem; }
.pricing-card ul li { padding: 0.2rem 0; }
.pricing-card ul li:before { content: '✓ '; color: var(--teal); font-weight: 600; }

.account-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.account-header h1 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--ivory); }
.account-header a { color: var(--gold); text-decoration: none; font-size: 0.85rem; }
.account-header a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   DASHBOARD — Premium Member Experience
   ═══════════════════════════════════════════ */

.dash-page { background: #F5F2ED; min-height: 100vh; display: flex; flex-direction: column; }

/* ── Top Navigation ── */
.dash-topbar { display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 60px; background: linear-gradient(135deg, var(--teal-dark) 0%, #0A3F36 100%); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(201,169,110,0.08); }
.dash-topbar-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.dash-topbar-logo span { font-family: 'Playfair Display', serif; font-size: 0.8rem; color: rgba(250,247,242,0.6); letter-spacing: 0.18em; font-weight: 400; }
.dash-topbar-nav { display: flex; align-items: center; gap: 1.5rem; }
.dash-topbar-nav a { font-size: 0.78rem; color: rgba(250,247,242,0.5); text-decoration: none; letter-spacing: 0.06em; font-weight: 400; transition: color 0.25s; position: relative; }
.dash-topbar-nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.dash-topbar-nav a:hover { color: rgba(250,247,242,0.85); }
.dash-topbar-nav a:hover::after { width: 100%; }

.plan-badge-nav { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 20px; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: rgba(201,169,110,0.12); color: var(--gold-light); }
.plan-badge-nav.active { background: rgba(39,174,96,0.15); color: #6FCF97; }
.plan-badge-nav.trialing { background: rgba(201,169,110,0.15); color: var(--gold-light); }
.plan-badge-nav.cancelled { background: rgba(107,138,132,0.15); color: rgba(250,247,242,0.45); }
.dash-signout { font-size: 0.75rem; color: rgba(250,247,242,0.4); background: none; border: 1px solid rgba(250,247,242,0.1); padding: 0.3rem 0.8rem; border-radius: 6px; cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 400; letter-spacing: 0.05em; transition: all 0.25s; }
.dash-signout:hover { color: rgba(250,247,242,0.8); border-color: rgba(250,247,242,0.25); background: rgba(250,247,242,0.04); }

.dash-mobile-menu { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 4px; }
.dash-mobile-menu span { display: block; width: 20px; height: 1.5px; background: rgba(250,247,242,0.5); border-radius: 2px; transition: all 0.3s; }

/* ── Main Content ── */
.dash-main { flex: 1; max-width: 960px; width: 100%; margin: 0 auto; padding: 2.5rem 2rem 3rem; }

/* ── Welcome Hero ── */
.dash-welcome { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; gap: 2rem; }
.dash-welcome-content { flex: 1; }
.dash-greeting { display: inline-block; font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--mist); margin-bottom: 0.3rem; }
.dash-title { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 600; color: var(--charcoal); line-height: 1.2; margin-bottom: 0.35rem; }
.dash-sub { font-size: 0.9rem; color: var(--mist); line-height: 1.5; }
.dash-welcome-graphic { flex-shrink: 0; opacity: 0.6; }

/* ── Stats Row ── */
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-bottom: 2.5rem; }
.dash-stat-card { display: flex; align-items: center; gap: 0.85rem; background: #fff; border-radius: 14px; padding: 1rem 1.25rem; box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 4px 12px rgba(0,0,0,0.02); transition: box-shadow 0.25s, transform 0.25s; }
.dash-stat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.03); transform: translateY(-1px); }
.dash-stat-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.stat-teal .dash-stat-icon { background: rgba(13,92,82,0.1); color: var(--teal); }
.stat-gold .dash-stat-icon { background: rgba(201,169,110,0.12); color: var(--gold); }
.stat-emerald .dash-stat-icon { background: rgba(39,174,96,0.1); color: var(--green); }
.stat-amber .dash-stat-icon { background: rgba(201,169,110,0.08); color: #A8884E; }
.dash-stat-body { min-width: 0; }
.dash-stat-value { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--charcoal); line-height: 1.2; }
.dash-stat-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mist); margin-top: 0.05rem; font-weight: 500; }

/* ── Section Header ── */
.dash-section { margin-bottom: 2.5rem; }
.dash-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.dash-section-header h2 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--charcoal); letter-spacing: -0.01em; }
.dash-section-link { font-size: 0.82rem; color: var(--teal); text-decoration: none; font-weight: 500; transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.2rem; }
.dash-section-link:hover { color: var(--teal-mid); }
.dash-arrow { transition: transform 0.2s; display: inline-block; }
.dash-section-link:hover .dash-arrow { transform: translateX(3px); }
.dash-count { font-size: 0.78rem; color: var(--mist); font-weight: 400; }

/* ── Tools Grid ── */
.dash-tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.dash-tool-card { display: flex; flex-direction: column; position: relative; background: #fff; border-radius: 14px; padding: 1.25rem; text-decoration: none; box-shadow: 0 1px 3px rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.02); transition: box-shadow 0.3s, transform 0.3s; overflow: hidden; }
.dash-tool-card::before { content: ''; position: absolute; inset: 0; border-radius: 14px; border: 1px solid rgba(212,232,228,0.5); pointer-events: none; }
.dash-tool-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.05), 0 12px 32px rgba(0,0,0,0.03); transform: translateY(-2px); }
.dash-tool-indicator { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--teal); border-radius: 14px 14px 0 0; opacity: 0; transition: opacity 0.3s; }
.dash-tool-card.unlocked .dash-tool-indicator { opacity: 1; }
.dash-tool-card.locked .dash-tool-indicator { background: var(--border); opacity: 0.5; }
.dash-tool-body { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
.dash-tool-icon-wrap { flex-shrink: 0; width: 32px; height: 32px; background: rgba(13,92,82,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--teal); }
.dash-tool-card.locked .dash-tool-icon-wrap { background: rgba(107,138,132,0.08); color: var(--mist); }
.dash-tool-title { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.25rem; }
.dash-tool-desc { font-size: 0.76rem; color: var(--mist); line-height: 1.5; }
.dash-tool-status { display: flex; align-items: center; gap: 0.5rem; }
.dash-tool-badge { font-size: 0.62rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; padding: 0.2rem 0.55rem; border-radius: 6px; }
.badge-available { background: rgba(13,92,82,0.08); color: var(--teal); }
.badge-locked { background: rgba(107,138,132,0.08); color: var(--mist); }
.dash-tool-card.locked .dash-tool-status svg { color: var(--mist); opacity: 0.5; }

/* ── Post Cards ── */
.dash-library { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.dash-post-card { display: flex; flex-direction: column; background: #fff; border-radius: 14px; overflow: hidden; text-decoration: none; box-shadow: 0 1px 3px rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.02); transition: box-shadow 0.3s, transform 0.3s; }
.dash-post-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.05), 0 12px 32px rgba(0,0,0,0.03); transform: translateY(-2px); }
.dash-post-img { position: relative; height: 130px; background: var(--cream); overflow: hidden; }
.dash-post-img.no-img { background: linear-gradient(135deg, var(--teal-light), #D4E8E4); }
.dash-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.dash-post-card:hover .dash-post-img img { transform: scale(1.04); }
.dash-post-body { padding: 0.85rem 0.9rem 0.9rem; display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.dash-post-cat { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--cat-color, var(--teal)); }
.dash-post-title { font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dash-post-meta { font-size: 0.68rem; color: var(--mist); display: flex; align-items: center; gap: 0.3rem; margin-top: auto; padding-top: 0.3rem; }
.dash-post-sep { color: var(--border); }

/* ── CTA Banner ── */
.dash-cta { background: linear-gradient(135deg, var(--teal-dark) 0%, #0A3F36 100%); border-radius: 16px; margin-bottom: 2rem; overflow: hidden; }
.dash-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.75rem 2rem; }
.dash-cta-content h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 0.3rem; }
.dash-cta-content p { font-size: 0.85rem; color: rgba(250,247,242,0.5); line-height: 1.5; }
.dash-cta-btn { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.6rem 1.25rem; background: var(--gold); color: var(--teal-dark); border-radius: 8px; font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: background 0.25s, transform 0.2s; flex-shrink: 0; }
.dash-cta-btn:hover { background: #DDB96E; transform: translateY(-1px); }
.dash-cta-btn .dash-arrow { transition: transform 0.2s; }
.dash-cta-btn:hover .dash-arrow { transform: translateX(3px); }

/* ── Error State ── */
.dash-error-state { display:flex; flex-direction:column; align-items:center; text-align:center; padding:2.5rem 1rem; grid-column:1/-1; }
.dash-err-title { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:600; color:var(--charcoal); margin-top:0.5rem; }
.dash-err-desc { font-size:0.85rem; color:var(--mist); margin:0.3rem 0 1rem; line-height:1.5; }
.dash-err-btn { padding:0.5rem 1.2rem; background:var(--teal); color:#fff; border:none; border-radius:8px; font-family:'Jost',sans-serif; font-size:0.85rem; cursor:pointer; transition:background 0.2s; }
.dash-err-btn:hover { background:var(--teal-mid); }

/* ── Empty / Loading States ── */
.dash-empty-state { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 2rem; text-align: center; }
.dash-empty-state p { font-size: 0.9rem; color: var(--mist); }
.dash-empty-state a { color: var(--teal); font-weight: 500; text-decoration: none; }
.dash-empty-state a:hover { text-decoration: underline; }

.dash-post-card-skeleton { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }

/* ── Responsive ── */
@media(max-width:900px){
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-library { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px){
  .dash-topbar { padding: 0 1rem; height: 56px; }
  .dash-topbar-nav { gap: 1rem; }
  .dash-topbar-nav a:nth-child(-n+2) { display: none; }
  .dash-mobile-menu { display: flex; }
  .dash-topbar.nav-open .dash-topbar-nav { display: flex; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: var(--teal-dark); padding: 1rem; border-bottom: 1px solid rgba(201,169,110,0.1); }
  .dash-topbar.nav-open .dash-topbar-nav a { display: block; }
  .dash-topbar.nav-open .dash-mobile-menu span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .dash-topbar.nav-open .dash-mobile-menu span:nth-child(2) { opacity: 0; }
  .dash-topbar.nav-open .dash-mobile-menu span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
  .dash-main { padding: 1.5rem 1rem 2rem; }
  .dash-welcome-graphic { display: none; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .dash-tools-grid { grid-template-columns: 1fr; }
  .dash-library { grid-template-columns: 1fr; }
  .dash-cta-inner { flex-direction: column; text-align: center; padding: 1.5rem; }
}

/* ── Coming Soon Grid ── */
.dash-coming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.dash-coming-card { display: flex; flex-direction: column; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.02); transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s; border: 1.5px solid transparent; position: relative; }
.dash-coming-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.05), 0 12px 32px rgba(0,0,0,0.03); transform: translateY(-2px); }
.dash-coming-card.voted { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), 0 4px 16px rgba(13,92,82,0.08); }
.dash-coming-accent { height: 3px; width: 100%; }
.dash-coming-top { display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.9rem 0.9rem 0.4rem; }
.dash-coming-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.dash-coming-info { min-width: 0; }
.dash-coming-name { font-family: 'Playfair Display', serif; font-size: 0.82rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.dash-coming-full { font-size: 0.62rem; color: var(--mist); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; margin-top: 1px; }
.dash-coming-tagline { font-size: 0.7rem; color: #888; line-height: 1.45; padding: 0 0.9rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 1.9em; }
.dash-coming-bottom { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0.9rem 0.7rem; gap: 0.5rem; margin-top: auto; }
.dash-coming-chips { display: flex; gap: 4px; flex-wrap: wrap; min-width: 0; }
.dash-chip { font-size: 0.55rem; font-weight: 600; padding: 2px 6px; border-radius: 4px; letter-spacing: 0.04em; white-space: nowrap; }
.dash-chip.tam { background: rgba(13,92,82,0.08); color: var(--teal); }
.dash-chip.rev { background: rgba(201,169,110,0.1); color: #A8884E; }
.dash-vote-btn { font-size: 0.68rem; font-weight: 600; font-family: 'Jost', sans-serif; padding: 0.3rem 0.7rem; border-radius: 6px; border: 1.5px solid var(--teal); background: transparent; color: var(--teal); cursor: pointer; transition: all 0.2s; letter-spacing: 0.03em; white-space: nowrap; flex-shrink: 0; }
.dash-vote-btn:hover { background: var(--teal); color: #fff; }
.dash-vote-btn.voted { background: var(--teal); color: #fff; border-color: var(--teal); }
.skeleton-coming { height: 110px; background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%); background-size: 400px 100%; animation: shimmer 1.4s ease infinite; border-radius: 14px; }

@media(max-width:900px){
  .dash-coming-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px){
  .dash-coming-grid { grid-template-columns: 1fr; }
}
