/* ============================================
   The Bible Talks — Design System
   Matches Claude Design handoff spec exactly
   ============================================ */

:root {
  --ink: #0B0B0C;
  --surface: #141416;
  --surface-hover: #1A1A1D;
  --gold: #B08D4F;
  --gold-bright: #D4B072;
  --gold-hover-text: #F0D9A8;
  --cream: #F5F2EA;
  --body-text: #CFC8BE;
  --muted: #A9A29A;
  --dim: #8E867C;
  --faint: #6E675F;
  --footer-legal: #5E584F;
  --numeral-ghost: #33312E;
  --nav-text: #E4DED3;
  --tagline: #9A8F80;
  --hairline: rgba(255,255,255,0.08);
  --hairline-cell: rgba(255,255,255,0.09);
  --hairline-gold: rgba(176,141,79,0.35);
  --border-ghost: rgba(245,242,234,0.28);
  --border-inactive: rgba(245,242,234,0.18);
  --font: 'Avenir Next', 'Avenir', 'Nunito Sans', system-ui, -apple-system, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--gold-hover-text); }
::selection { background: var(--gold); color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--font); font-weight: 500; margin: 0; color: var(--cream); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; z-index: 1000; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Eyebrow ---------- */
.eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.eyebrow-row.tight { margin-bottom: 28px; }
.eyebrow-rule { width: 34px; height: 1px; background: var(--gold); flex: none; }
.eyebrow-text {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font);
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px; white-space: nowrap; cursor: pointer; border: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-lg { padding: 15px 28px; }
.btn-md { padding: 13px 24px; }
.btn-sm { padding: 11px 20px; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-bright); color: var(--ink); }
.btn-ghost { background: transparent; border: 1px solid var(--border-ghost); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-inactive {
  background: transparent; border: 1px solid var(--border-inactive); color: var(--faint);
  font-size: 13px; letter-spacing: 0.08em; padding: 13px 24px;
}
.link-underline {
  display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 4px;
  color: var(--cream);
}
.link-underline:hover { color: var(--gold-bright); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); border-bottom: 1px solid var(--hairline-gold);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px 32px; min-height: 78px;
}
@media (max-width: 1040px) {
  .nav-inner { padding: 16px 20px; min-height: auto; }
}
.wordmark-link { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.wordmark { font-family: 'Montserrat', var(--font); font-weight: 700; font-size: 21px; letter-spacing: 0.13em; color: var(--cream); line-height: 1; }
.tagline { font-size: 9px; letter-spacing: 0.19em; color: var(--tagline); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 30px; list-style: none; margin: 0; padding: 0; }
@media (max-width: 1040px) { .nav-links { gap: 14px 18px; } }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--nav-text);
  padding: 6px 0; position: relative; text-transform: none;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold);
}
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-ghost); border-radius: 2px;
  padding: 8px 12px; color: var(--cream); cursor: pointer; font-family: var(--font); font-size: 13px;
}
@media (max-width: 720px) {
  .nav-links { display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 12px 0; border-bottom: 1px solid var(--hairline); }
  .nav-cta-item { padding: 14px 0 4px !important; border-bottom: none !important; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { position: relative; }
}

/* ---------- Facts strip ---------- */
.facts-strip { background: var(--surface); border-bottom: 1px solid var(--hairline); }
.facts-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.fact-cell { padding: 40px 40px 40px 0; border-right: 1px solid var(--hairline-cell); }
.fact-cell:nth-child(2) { padding: 40px; }
.fact-cell:last-child { padding: 40px 0 40px 40px; border-right: none; }
.fact-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.fact-title { font-size: 26px; color: var(--cream); margin-bottom: 6px; }
.fact-detail { font-size: 15px; color: var(--muted); }
@media (max-width: 1040px) {
  .facts-grid { grid-template-columns: 1fr; }
  .fact-cell, .fact-cell:nth-child(2), .fact-cell:last-child { padding: 28px 0; border-right: none; border-bottom: 1px solid var(--hairline-cell); }
  .fact-cell:last-child { border-bottom: none; }
}

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: minmax(0,0.95fr) minmax(0,1.05fr); align-items: stretch; border-bottom: 1px solid var(--hairline); }
@media (max-width: 1040px) { .hero { grid-template-columns: 1fr; } }
.hero-copy-wrap { padding: 96px 64px 96px 0; max-width: 640px; justify-self: end; width: 100%; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 1040px) { .hero-copy-wrap { padding: 56px 24px 48px; max-width: 100%; justify-self: stretch; } }
.hero-copy-inner { padding-left: 32px; }
@media (max-width: 1040px) { .hero-copy-inner { padding-left: 0; } }
.hero h1 { font-size: 60px; line-height: 1.06; letter-spacing: -0.02em; text-wrap: balance; }
@media (max-width: 1040px) { .hero h1 { font-size: 46px; } }
@media (max-width: 720px) { .hero h1 { font-size: 36px; } }
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero-lead { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 28px 0 0; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-media { position: relative; min-height: 560px; background: var(--surface); }
@media (max-width: 1040px) { .hero-media { min-height: 380px; } }

/* ---------- Photo slot placeholder ---------- */
.photo-slot {
  position: relative; width: 100%; height: 100%;
  background:
    linear-gradient(155deg, #1c1a15 0%, #0B0B0C 65%);
  border: 1px dashed rgba(176,141,79,0.3);
  display: flex; align-items: flex-end; padding: 18px;
}
.photo-slot::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(176,141,79,0.05) 0 2px, transparent 2px 34px);
}
.photo-slot-label {
  position: relative; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint); background: rgba(11,11,12,0.6); padding: 6px 10px; border-radius: 2px;
}

/* ---------- Section ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 96px 32px; }
@media (max-width: 720px) { .section { padding: 56px 20px; } }
.section-tight-top { padding-top: 88px; }
h2.section-title { font-size: 40px; line-height: 1.12; color: var(--cream); }

/* ---------- Three ways in ---------- */
.ways-grid { display: grid; grid-template-columns: 340px minmax(0,1fr); gap: 80px; align-items: start; }
@media (max-width: 1040px) { .ways-grid { grid-template-columns: 1fr; gap: 40px; } }
.ways-copy p { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 20px 0 0; }
.ways-list { display: grid; gap: 2px; }
.way-row {
  background: var(--surface); padding: 34px 36px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.way-row:hover { background: var(--surface-hover); }
.way-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.way-row p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--body-text); }
.way-num { font-size: 34px; color: var(--numeral-ghost); }

/* ---------- Photo strip ---------- */
.photo-strip-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
@media (max-width: 1040px) { .photo-strip-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 720px) { .photo-strip-grid { grid-template-columns: 1fr; } }
.photo-strip-item { height: 300px; position: relative; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2px; }
@media (max-width: 1040px) { .testimonial-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 720px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { margin: 0; background: var(--surface); padding: 40px 36px; display: flex; flex-direction: column; gap: 24px; }
.testimonial-mark { font-size: 44px; line-height: 0.6; color: var(--gold); }
.testimonial-quote { margin: 0; font-size: 17px; line-height: 1.7; color: var(--body-text); flex: 1; }
.testimonial-name { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--surface); border-top: 1px solid var(--hairline); }
.cta-band-inner {
  max-width: var(--max); margin: 0 auto; padding: 72px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.cta-band h2 { font-size: 36px; }
.cta-band p { font-size: 16px; color: var(--muted); margin: 12px 0 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 80px; align-items: start; }
@media (max-width: 1040px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-copy h1 { font-size: 52px; line-height: 1.1; }
@media (max-width: 1040px) { .about-copy h1 { font-size: 42px; } }
@media (max-width: 720px) { .about-copy h1 { font-size: 34px; } }
.about-copy p.lead { font-size: 18px; line-height: 1.7; color: var(--body-text); margin: 32px 0 0; }
.about-copy p.body { font-size: 17px; line-height: 1.7; color: var(--muted); margin: 20px 0 0; }
.about-copy p.draft-note { font-size: 13px; color: var(--faint); margin: 28px 0 0; font-style: italic; }
.about-media { height: 520px; position: relative; }
@media (max-width: 1040px) { .about-media { height: 360px; } }

.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 2px; }
@media (max-width: 1040px) { .team-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: var(--surface); }
.team-photo { height: 320px; position: relative; }
.team-body { padding: 28px 32px 34px; }
.team-name { font-size: 26px; color: var(--cream); }
.team-role { font-size: 15px; line-height: 1.6; color: var(--gold); font-weight: 500; margin-top: 10px; }
.team-bio { font-size: 14px; line-height: 1.65; color: var(--muted); margin-top: 14px; }

/* ---------- Get Involved ---------- */
.page-h1 { font-size: 52px; line-height: 1.1; color: var(--cream); }
@media (max-width: 1040px) { .page-h1 { font-size: 42px; } }
@media (max-width: 720px) { .page-h1 { font-size: 34px; } }
.involved-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: 80px; align-items: start; }
@media (max-width: 1040px) { .involved-grid { grid-template-columns: 1fr; gap: 40px; } }
.involved-copy p { font-size: 18px; line-height: 1.7; color: var(--body-text); margin: 32px 0 0; }
.verse-block { margin: 0; border-left: 2px solid var(--gold); padding: 8px 0 8px 32px; }
.verse-text { font-size: 22px; line-height: 1.55; color: var(--nav-text); margin: 0; font-style: italic; }
.verse-cite { display: block; margin-top: 18px; font-style: normal; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.program-rows { display: grid; gap: 2px; }
.program-row { background: var(--surface); display: grid; grid-template-columns: 280px minmax(0,1fr); }
@media (max-width: 1040px) { .program-row { grid-template-columns: 1fr; } }
.program-label-col { padding: 40px 0 40px 40px; }
@media (max-width: 1040px) { .program-label-col { padding: 32px 28px 0; } }
.program-desc-col { padding: 40px 40px 40px 0; }
@media (max-width: 1040px) { .program-desc-col { padding: 16px 28px 32px; } }
.program-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.program-time { margin-top: 14px; font-size: 20px; color: var(--cream); line-height: 1.4; }
.program-time span { font-size: 15px; color: var(--muted); display: block; }
.program-desc-col p { margin: 0; font-size: 17px; line-height: 1.7; color: var(--body-text); }

/* ---------- Events ---------- */
.events-list { display: grid; gap: 2px; }
.event-row {
  background: var(--surface); padding: 40px; display: grid;
  grid-template-columns: 140px 160px minmax(0,1fr) auto; gap: 28px 32px; align-items: center;
}
@media (max-width: 1040px) { .event-row { grid-template-columns: 1fr; align-items: start; } .event-photo { width: 100%; height: 200px; } }
.event-photo { width: 140px; height: 140px; object-fit: cover; display: block; }
.event-date { font-size: 38px; color: var(--gold-bright); line-height: 1; }
.event-price { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin-top: 8px; }
.event-row p { margin: 0; font-size: 17px; line-height: 1.7; color: var(--body-text); }
.event-note { font-size: 15px; color: var(--footer-legal); margin: 36px 0 0; }
.event-note a { color: var(--gold-bright); }

/* ---------- Talks ---------- */
.talks-embed-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 80px; align-items: start; margin-bottom: 56px; }
@media (max-width: 1040px) { .talks-embed-grid { grid-template-columns: 1fr; gap: 40px; } }
.spotify-frame-wrap { background: var(--surface); padding: 8px; }
.spotify-frame-wrap iframe { border: 0; display: block; border-radius: 2px; width: 100%; }
.talks-follow-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.talks-follow p { margin: 0; font-size: 17px; line-height: 1.7; color: var(--body-text); }
.talks-follow .btn { margin-top: 26px; }

.episodes-label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 20px; }
.episode-list { display: grid; gap: 2px; }
.episode-row {
  background: var(--surface); padding: 30px 36px; display: grid;
  grid-template-columns: auto minmax(0,1fr) auto; gap: 12px 28px; align-items: center; color: inherit;
}
.episode-row:hover { background: var(--surface-hover); }
@media (max-width: 1040px) {
  .episode-row { grid-template-columns: auto minmax(0,1fr); }
  .episode-meta { grid-column: 2; }
}
.episode-play {
  width: 44px; height: 44px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold-bright);
  font-size: 12px; flex-shrink: 0;
}
.episode-title { font-size: 19px; line-height: 1.4; color: var(--cream); font-weight: 600; }
.episode-blurb { font-size: 14px; line-height: 1.6; color: var(--dim); margin-top: 6px; }
.episode-meta { display: flex; gap: 18px; font-size: 14px; color: var(--dim); white-space: nowrap; }

/* ---------- Merch ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2px; }
@media (max-width: 1040px) { .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 720px) { .product-grid { grid-template-columns: 1fr; } }
.product-card { background: var(--surface); }
.product-photo { height: 340px; position: relative; }
.product-body { padding: 24px 28px 30px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.product-name { font-size: 20px; color: var(--cream); }
.product-price { font-size: 15px; color: var(--gold); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); border-top: 1px solid var(--hairline-gold); }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 64px 32px 40px; display: grid; grid-template-columns: minmax(0,1.4fr) repeat(3, minmax(0,1fr)); gap: 44px; }
@media (max-width: 1040px) { .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-wordmark { font-family: 'Montserrat', var(--font); font-weight: 700; font-size: 19px; letter-spacing: 0.13em; color: var(--cream); }
.footer-tagline { font-size: 10px; letter-spacing: 0.19em; color: var(--tagline); text-transform: uppercase; margin-top: 4px; }
.footer-desc { font-size: 15px; line-height: 1.7; color: var(--dim); margin: 24px 0 0; }
.footer-col-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.footer-addr { font-size: 15px; line-height: 1.8; color: var(--muted); }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom-wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px 40px; }
.footer-bottom { border-top: 1px solid var(--hairline); padding-top: 24px; font-size: 13px; color: var(--footer-legal); }

/* ---------- Watch link (YouTube) ---------- */
.watch-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--gold-bright); margin-top: 14px; }
.watch-link:hover { color: var(--gold-hover-text); }

/* ---------- Beliefs ---------- */
.belief-rows { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2px; }
@media (max-width: 900px) { .belief-rows { grid-template-columns: 1fr; } }
.belief-row { background: var(--surface); padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.belief-num { font-family: var(--font); font-size: 30px; color: var(--gold); line-height: 1; }
.belief-row h3 { color: var(--gold); font-weight: 700; letter-spacing: 0.02em; font-size: 19px; margin: 0; }
.belief-row p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--cream); flex: 1; }
.belief-refs { display: block; margin-top: 14px; font-size: 13px; letter-spacing: 0.04em; color: var(--gold-bright); }
.belief-source { font-size: 15px; color: var(--dim); max-width: 720px; margin: 0 0 32px; }
.belief-source a { color: var(--gold-bright); }

/* ---------- Vintage photo treatment ---------- */
.hero-media img,
.photo-strip-item img,
.about-media img,
.team-photo img,
.product-photo img,
.event-photo,
.band-photo-strip img {
  filter: sepia(0.28) saturate(0.7) contrast(1.08) brightness(0.9) hue-rotate(-6deg);
}

.text-center { text-align: center; }

/* ---------- Form confidentiality note ---------- */
p.form-note { font-size: 10.5px; color: var(--dim); line-height: 1.5; margin: 10px 0 0; max-width: 480px; }

/* ---------- What's Coming Up (band page + homepage) ---------- */
.week-rundown { display: grid; gap: 10px; max-width: 640px; margin: 0 auto; }
.week-row { background: var(--surface); border: 1px solid var(--hairline); padding: 16px 20px; display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: center; text-align: left; border-radius: 6px; }
@media (max-width: 560px) { .week-row { grid-template-columns: 52px 1fr; gap: 14px; padding: 14px 16px; } }
.cal-tile { width: 60px; border-radius: 7px; overflow: hidden; text-align: center; background: var(--ink); border: 1px solid var(--hairline-gold); flex-shrink: 0; }
@media (max-width: 560px) { .cal-tile { width: 52px; } }
.cal-tile .cal-month { background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 0; }
.cal-tile .cal-day { font-size: 22px; font-weight: 800; color: var(--cream); line-height: 1; padding: 6px 0 2px; }
.cal-tile .cal-weekday { font-size: 9px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.06em; padding-bottom: 6px; }
.week-title { color: var(--cream); font-weight: 700; font-size: 15px; margin: 0 0 4px; }
.week-title .week-time { color: var(--gold); font-weight: 600; font-size: 12.5px; margin-left: 8px; }
.week-detail { color: var(--body-text); font-size: 13.5px; line-height: 1.6; margin: 0; }
.week-detail a { color: var(--gold); }

/* Condensed variant for homepage use */
.week-rundown.condensed { gap: 6px; }
.week-rundown.condensed .week-row { padding: 12px 16px; border: none; background: var(--surface); }
.week-rundown.condensed .cal-tile { width: 46px; }
.week-rundown.condensed .cal-tile .cal-day { font-size: 17px; padding: 4px 0 1px; }
.week-rundown.condensed .cal-tile .cal-month { font-size: 9px; }
.week-rundown.condensed .cal-tile .cal-weekday { font-size: 8px; padding-bottom: 4px; }
.week-rundown.condensed .week-title { font-size: 13.5px; }
.week-rundown.condensed .week-detail { font-size: 12.5px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
