
/* szoszatyar-v2b.css — lean, v1-like look, production-clean */
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:#fafafa;color:#111}
a{color:#0b57d0;text-decoration:none} a:hover{text-decoration:underline}
.container{max-width:980px;margin:0 auto;padding:16px}
.panel{background:#fff;border:1px solid #e6e6e6;border-radius:12px;padding:12px;margin:12px 0;box-shadow:0 1px 2px rgba(0,0,0,.04)}
.row{display:flex;gap:8px;flex-wrap:wrap}
input[type=text],select{padding:8px;border:1px solid #ccc;border-radius:10px;min-width:220px}
button{padding:10px 12px;border-radius:10px;background:#f5f5f5;border:1px solid #cfcfcf;cursor:pointer}
button:hover{background:#efefef}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:8px;vertical-align:top;border-bottom:1px solid #eee}
.badge{display:inline-block;padding:2px 8px;border-radius:999px;font-size:12px;border:1px solid #ddd;background:#f7f7f7}
.badge.type-revisit{background:#f0f7ff;border-color:#d6e9ff}
.badge.type-new_questions{background:#f5fff0;border-color:#dcf4cf}
.badge.type-interview{background:#fff7f0;border-color:#ffe1c4}
.badge.type-general{background:#f7f7f7;border-color:#eaeaea}
.badge.type-other{background:#f7f7f7;border-color:#eaeaea}
.small{font-size:12px;opacity:.8}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace}
.h2{font-size:16px;margin:0 0 8px 0}
.section{padding:8px 10px;border-left:4px solid #e9e9e9;margin:8px 0;border-radius:8px;background:#fff}
.section .headerline{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.section .title{font-weight:600}
.section .time{opacity:.7;font-size:12px}
.topic{margin:6px 0 6px 14px;padding-left:10px;border-left:2px dashed #eee}
.topic .title{font-weight:600}
.line{display:flex;gap:8px;padding:6px 0;border-bottom:1px dotted #f0f0f0}

.line .ts{flex: 0 0 3em;text-align:right;opacity:.7;font-feature-settings:"tnum";font-variant-numeric:tabular-nums}
.line .speaker{flex: 0 0 2em;opacity:.7; font-size: 70%;}
.line .text{flex:1 1 auto;white-space:normal;word-wrap:break-word}
.sticky{position:sticky;top:0;background:#fafafa;z-index:5}
.footer{margin:16px 0 40px 0;opacity:.6;font-size:12px;text-align:center}

/* domain label + arrow link */
.url-label {
  font-size: 0.92em;
  font-family: var(--mono, monospace);
  background: #f6f6f6;
  border-radius: 3px;
  padding: 0 0.25em;
  margin: 0 0.1em;
  color: #333;
}

.url-arrow {
  text-decoration: none;
  font-size: 0.9em;
  margin-left: 0.1em;
  opacity: 0.7;
}

.url-arrow:hover {
  opacity: 1;
  text-decoration: underline;
}


.header{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:12px}
.header h1{font-size:20px;margin:0}
.header .meta{opacity:.7;font-size:12px; white-space: nowrap;}

/* --- episode header layout --- */
.headera {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.headera h1 {
  margin: 0;
  font-size: 1.3em;
  line-height: 1.3;
}

/* meta line: desktop horizontal, mobile stacked */
.headera .meta {
  font-size: 0.95em;
  opacity: 0.9;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}

/* ensure meta sits above title on small screens */
@media (max-width: 600px) {
  .header {
    flex-direction: column;   /* reverse order: meta above title */
  }
  .header .meta {
    width: 100%;
    order: -1;
    margin-bottom: 0.3em;
  }
  .header h1 {
    font-size: 1.15em;
  }
}
