/* polyamoryweekly.com archive - retro podcast aesthetic, 2007-2018 era */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2522;
  background: #f4ece1;
}

a { color: #6b2d5c; text-decoration: underline; }
a:hover { color: #a83271; }

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

/* Header */
.site-header {
  background: #4a1d3f;
  color: #f4ece1;
  border-bottom: 6px solid #c9a96e;
  padding: 28px 0 22px;
}
.site-header h1 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: normal;
  letter-spacing: 0.5px;
  font-style: italic;
}
.site-header h1 a {
  color: #f4ece1;
  text-decoration: none;
}
.site-header .tagline {
  margin: 6px 0 0;
  font-size: 1rem;
  color: #d8c5b0;
  font-style: italic;
}

/* Nav */
.site-nav {
  background: #2e1228;
  border-bottom: 1px solid #c9a96e;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.site-nav li { margin: 0; }
.site-nav a {
  display: block;
  padding: 12px 18px;
  color: #f4ece1;
  text-decoration: none;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-nav a:hover {
  background: #6b2d5c;
  color: #fff;
}

/* Layout */
.layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  padding: 36px 0 48px;
}

@media (max-width: 760px) {
  .layout { grid-template-columns: 1fr; }
}

/* Main column */
main h2 {
  font-size: 1.6rem;
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c9a96e;
  color: #4a1d3f;
}
main h3 { color: #4a1d3f; }

.intro {
  background: #fff7e9;
  border-left: 4px solid #c9a96e;
  padding: 18px 22px;
  margin: 0 0 28px;
}
.intro p { margin: 0 0 8px; }
.intro p:last-child { margin-bottom: 0; }

.archive-notice {
  background: #fdf3df;
  border: 1px solid #c9a96e;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 0.95rem;
  color: #5a4030;
}
.archive-notice strong { color: #4a1d3f; }

/* Episode cards (homepage) */
.ep-card {
  background: #fff;
  border: 1px solid #d8c5b0;
  border-radius: 3px;
  padding: 18px 22px;
  margin-bottom: 16px;
}
.ep-card h3 {
  margin: 4px 0 6px;
  font-size: 1.2rem;
}
.ep-card .ep-num {
  display: inline-block;
  background: #6b2d5c;
  color: #fff;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-family: Verdana, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ep-card .ep-meta {
  color: #7a6555;
  font-size: 0.85rem;
  margin: 0 0 8px;
  font-style: italic;
}
.ep-card p { margin: 0; }

/* Episode list (full archive) */
.episode {
  border-bottom: 1px dashed #c9a96e;
  padding: 18px 0;
}
.episode:first-of-type { padding-top: 0; }
.episode .ep-title {
  margin: 0 0 4px;
  font-size: 1.15rem;
}
.episode .ep-meta {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: #7a6555;
  font-style: italic;
}
.episode .ep-summary {
  margin: 0;
  color: #3a2e26;
}
.ep-name { font-weight: normal; }

/* Sidebar */
aside.sidebar {
  font-size: 0.92rem;
}
.widget {
  background: #fff;
  border: 1px solid #d8c5b0;
  padding: 16px 18px;
  margin-bottom: 22px;
}
.widget h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4a1d3f;
  border-bottom: 1px solid #c9a96e;
  padding-bottom: 6px;
  font-family: Verdana, sans-serif;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget li {
  padding: 4px 0;
  border-bottom: 1px dotted #e0d0bd;
}
.widget li:last-child { border-bottom: none; }
.widget p { margin: 0 0 8px; }

/* Forms */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 22px 0;
}
.contact-card {
  background: #fff;
  border: 1px solid #d8c5b0;
  padding: 16px 18px;
}
.contact-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #4a1d3f;
}

/* Footer */
.stewardship {
  background: #2e1228;
  color: #d8c5b0;
  text-align: center;
  padding: 24px 18px;
  font-size: 0.85rem;
  line-height: 1.7;
  border-top: 6px solid #c9a96e;
}
.stewardship a { color: #f4d287; }

.site-foot {
  background: #1a0a16;
  color: #8d7868;
  text-align: center;
  padding: 14px 18px;
  font-size: 0.78rem;
  font-family: Verdana, sans-serif;
}
