:root{--page-title-display:none;}/* Start custom CSS */img { max-width: 100%; display: block; }
a { color: inherit; }
:root {
  --navy:         #1a1a2e;
  --navy-mid:     #222640;
  --gold:         #C9A227;
  --gold-light:   #e0b93c;
  --gold-dim:     rgba(201,162,39,0.14);
  --gold-border:  rgba(201,162,39,0.35);
  --cream:        #f7f5ef;
  --cream-dark:   #eeebe1;
  --white:        #ffffff;
  --muted:        #6b7280;
  --light:        #a0a8c0;
  --border:       #e0e0e8;
  --radius:       10px;
  --radius-sm:    6px;
  --max:          1140px;
}
.eyebrow {
  font-size: 18px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #6B8F71; margin-bottom: 10px;
}
.section-h2 {
  font-size: 26px; font-weight: 700;
  color: var(--navy); line-height: 1.28;
  margin-bottom: 10px;
}
.section-h3 {
  font-size: 24px; font-weight: 700;
  color: var(--navy); line-height: 1.28;
  margin-bottom: 10px;
}
.section-sub {
  color: var(--muted); font-size: 16px;
  line-height: 1.7; max-width: 640px; margin-bottom: 8px;
}
.section-head { margin-bottom: 32px; }
.section-head-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.view-all {
  font-size: 16px; font-weight: 700; color: var(--navy);
  text-decoration: none; white-space: nowrap;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2px;
}
.view-all:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  background:
    linear-gradient(rgba(26,26,46,0.80), rgba(26,26,46,0.80)),
    url('https://tempofunding.com/wp-content/uploads/2026/07/panoramic-banner-for-Resourses-page-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px 20px;
  text-align: center;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim); border: 0.5px solid #6B8F71;
  border-radius: 20px; padding: 6px 18px; color: #6B8F71;
  font-size: 24px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-h1 { font-size: 36px; font-weight: 700; color: #fff; line-height: 1.22; margin-bottom: 16px; }
.hero-sub { color: #d6d6d6; font-size: 18px; line-height: 1.75; }
/* Quick-jump chips */
.jump { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 10px; }
.jump a {
  font-size: 14px; font-weight: 600; color: #C9A227;
  border: 1px solid #C9A227; border-radius: 20px;
  padding: 8px 16px; text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.jump a:hover { border-color: var(--gold-border); color: var(--gold); }
/* ════════════════════════════════════════════════
   SHARED SECTION WRAPPER
════════════════════════════════════════════════ */
.section { padding: 64px 40px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section.alt { background: var(--cream); }
/* ════════════════════════════════════════════════
   GUIDES
════════════════════════════════════════════════ */
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.guide-card {
  display: flex; gap: 20px; align-items: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; background: #fff; text-decoration: none; color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.guide-card:hover { border-color: var(--gold-border); box-shadow: 0 6px 20px rgba(26,26,46,0.06); }
.guide-cover {
  width: 84px; height: 84px; flex-shrink: 0; border-radius: var(--radius-sm);
  overflow: hidden; background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.guide-cover img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.guide-tag { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.guide-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
.guide-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
/* ════════════════════════════════════════════════
   BLOG + PODCAST CARD GRID
════════════════════════════════════════════════ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: #fff; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.post-card:hover { border-color: var(--gold-border); box-shadow: 0 6px 20px rgba(26,26,46,0.06); }
.post-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--cream-dark); }
.post-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.post-title { font-size: 15.5px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.post-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.post-link { font-size: 14px; font-weight: 700; color: var(--gold-light); margin-top: auto; }
/* Podcast-specific: square thumb + episode number badge */
.podcast-card { flex-direction: row; align-items: flex-start; padding: 18px; gap: 14px; }
.podcast-thumb { width: 68px; height: 68px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.podcast-body { display: flex; flex-direction: column; flex: 1; }
.podcast-ep { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; margin-bottom: 4px; }
/* ════════════════════════════════════════════════
   MEDIA / YOUTUBE BAND
════════════════════════════════════════════════ */
.media-band {
  background: var(--navy); border-radius: var(--radius);
  padding: 40px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.media-band-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold-dim);
  border: 0.5px solid var(--gold-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.media-band-h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.media-band-sub { font-size: 14px; color: var(--light); line-height: 1.6; max-width: 480px; }
.media-band-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background-color: #C9A227 !important;
  color: #1a1a2e !important;
  font-weight: 700;
  font-size: 14px; padding: 12px 22px; border-radius: 24px;
  border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.media-band-cta:hover {
  background-color: #1a1a2e !important;
  border-color: #C9A227 !important;
  color: #C9A227 !important;
}
/* ════════════════════════════════════════════════
   FAQ + GLOSSARY (two-up)
════════════════════════════════════════════════ */
.ref-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ref-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; background: #fff;
}
.ref-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.ref-h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.ref-body { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.ref-link { font-size: 14px; font-weight: 700; color: var(--navy); text-decoration: none; }
.ref-link:hover { color: var(--gold-light); }
/* ════════════════════════════════════════════════
   BOTTOM CTA
════════════════════════════════════════════════ */
.cta-band { background:
    linear-gradient(rgba(26,26,46,0.80), rgba(26,26,46,0.80)),
    url('https://tempofunding.com/wp-content/uploads/2026/08/Call-Us-BG-FIN-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; padding: 64px 40px; text-align: center; }
.cta-band-inner { max-width: 560px; margin: 0 auto; }
.cta-band h2 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-band p { color: var(--light); font-size: 15px; line-height: 1.7; margin-bottom: 26px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background-color: #C9A227 !important;
  color: #1a1a2e !important;
  font-weight: 700;
  font-size: 14px; padding: 12px 22px; border-radius: 24px;
  border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.cta-btn:hover {
  background-color: #1a1a2e !important;
  border-color: #C9A227 !important;
  color: #C9A227 !important;
}
/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer { background: var(--navy); padding: 40px; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.footer-logo img { height: 56px; margin-bottom: 14px; }
.footer-addr { font-size: 13px; color: var(--light); line-height: 1.7; }
.footer-addr a { color: var(--gold); text-decoration: none; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.footer-social a:hover { background: var(--gold-dim); }
.footer-social svg { width: 16px; height: 16px; fill: var(--light); }
.footer-social a:hover svg { fill: var(--gold); }
.footer-bottom {
  max-width: var(--max); margin: 24px auto 0; padding-top: 20px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  font-size: 12px; color: #6b7280; text-align: center;
}
/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .guide-grid, .card-grid, .ref-grid { grid-template-columns: 1fr; }
  .media-band { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 560px) {
  .nav { padding: 12px 20px; }
  .hero { padding: 44px 20px 40px; }
  .hero-h1 { font-size: 26px; }
  .section { padding: 44px 20px; }
  .guide-card { flex-direction: column; align-items: flex-start; }
  .podcast-card { flex-direction: column; }
  .footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; }
  .cta-band { padding: 48px 20px; }
}/* End custom CSS */