/* ========================================
   PLACID — Additional / Page-specific CSS
   ======================================== */

/* ---- Reading Progress Bar ---- */
#reading-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; background: #D77A61;
  width: 0%; z-index: 9999;
  transition: width .1s linear;
}

/* ---- Podcast Single Page ---- */
.podcast-hero {
  background: #1A2E3C;
  padding: 64px 0;
}
.podcast-hero-inner {
  display: flex; gap: 40px; align-items: flex-start;
}
.podcast-cover-large {
  width: 220px; height: 220px;
  border-radius: 8px; object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.podcast-hero-info h1 { color: #fff; margin-bottom: 8px; font-size: 36px; }
.podcast-hero-info .host { color: #9EAFC2; font-size: 16px; margin-bottom: 16px; }
.podcast-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.badge {
  padding: 4px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  background: rgba(215,122,97,.2); color: #D77A61;
  border: 1px solid rgba(215,122,97,.3);
}

/* ---- Article page ---- */
.article-body { font-size: 18px; line-height: 1.75; }
.article-body h2 { margin-top: 48px; margin-bottom: 20px; }
.article-body h3 { margin-top: 36px; margin-bottom: 16px; }
.article-body p { margin-bottom: 22px; }
.article-body ul, .article-body ol { margin-bottom: 22px; }
.article-body li { margin-bottom: 10px; }
.article-img { border-radius: 4px; margin: 32px 0; width: 100%; max-height: 440px; object-fit: cover; }

/* ---- Category Page ---- */
.category-header {
  background: #1A2E3C;
  padding: 56px 0;
}
.category-header h1 { color: #fff; }
.category-header p  { color: #9EAFC2; }

/* ---- Contact Page ---- */
.contact-map-placeholder {
  height: 300px; background: #E0E6EB;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #888;
  border: 1px solid #D1D8E0;
}

/* ---- Thank You Page ---- */
.thankyou-section {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  background: #F7F9FB;
  padding: 80px 0;
}
.thankyou-box {
  text-align: center;
  max-width: 560px;
  padding: 56px 48px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #D1D8E0;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.thankyou-icon {
  width: 72px; height: 72px;
  background: #D77A61;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px; color: #fff;
}

/* ---- Policy Pages ---- */
.policy-content { max-width: 840px; }
.policy-content h2 { font-size: 26px; margin-top: 48px; margin-bottom: 16px; }
.policy-content h3 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
.policy-content p, .policy-content li { font-size: 16px; line-height: 1.75; color: #444; }
.policy-content ul, .policy-content ol { margin-bottom: 20px; }
.policy-date {
  font-size: 14px; color: #888; margin-bottom: 32px;
  padding: 10px 16px; background: #F0F4F7; border-radius: 4px;
  display: inline-block;
}

/* ---- FAQ Page ---- */
.faq-category-title {
  font-size: 20px; font-weight: 700; color: #1A2E3C;
  margin-bottom: 16px; margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D77A61;
}

/* ---- Sitemap Page ---- */
.sitemap-section h3 { margin-bottom: 16px; }
.sitemap-section ul { list-style: none; padding: 0; }
.sitemap-section ul li { margin-bottom: 8px; }
.sitemap-section ul li a { color: #333; font-size: 15px; }
.sitemap-section ul li a:hover { color: #D77A61; }
.sitemap-section ul li::before { content: '→ '; color: #D77A61; font-weight: 700; }

/* ---- Top Podcasts rankings ---- */
.rank-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff;
  border-radius: 4px; border: 1px solid #D1D8E0;
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow .25s, transform .25s;
}
.rank-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,.13); transform: translateY(-2px); }
.rank-number {
  font-size: 40px; font-weight: 700; color: #D77A61;
  line-height: 1; min-width: 48px; text-align: center; flex-shrink: 0;
}
.rank-cover { width: 80px; height: 80px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.rank-info { flex: 1; }
.rank-info h3 { font-size: 18px; margin-bottom: 6px; }
.rank-info p  { font-size: 14px; color: #666; margin-bottom: 12px; }

/* ---- Experts page ---- */
.expert-full-card {
  background: #fff;
  border: 1px solid #D1D8E0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.expert-full-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,.13); transform: translateY(-3px); }
.expert-photo-wrap { height: 240px; overflow: hidden; }
.expert-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.expert-full-body { padding: 24px; }
.expert-full-body h3 { margin-bottom: 4px; }
.expert-specialty { font-size: 13px; color: #D77A61; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }

/* ---- Inline info boxes ---- */
.info-box {
  border: 1px solid #C8D4DC;
  border-radius: 4px;
  padding: 20px 24px;
  background: #F7F9FB;
  margin: 24px 0;
}
.info-box .info-title { font-size: 15px; font-weight: 700; color: #1A2E3C; margin-bottom: 8px; }
.info-box p { font-size: 14px; color: #555; margin: 0; }

/* ---- Search bar ---- */
.search-bar {
  display: flex; gap: 0;
  border: 1px solid #C8D4DC;
  border-radius: 4px;
  overflow: hidden;
  max-width: 480px;
}
.search-bar input {
  flex: 1; border: none; border-radius: 0;
  padding: 12px 16px;
}
.search-bar input:focus { box-shadow: none; }
.search-bar button {
  background: #1A2E3C; color: #fff;
  border: none; padding: 12px 20px;
  cursor: pointer; font-size: 15px;
  transition: background .2s;
}
.search-bar button:hover { background: #D77A61; }
