/* ── More Episodes shelf ─────────────────────────────────── */
.more-section {
  padding: 24px 0 32px;
  background: #000;
  margin-top: 16px;
}
.more-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 28px 0 14px;
}
.more-episodes-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.more-episodes-row::-webkit-scrollbar {
  display: none;
}
.more-episode-item {
  flex: 0 0 calc(25% - 9px);
  scroll-snap-align: start;
  min-width: 140px;
}
@media (max-width: 768px) {
  .more-episode-item {
    flex: 0 0 calc(45% - 6px);
  }
}
@media (max-width: 480px) {
  .more-episode-item {
    flex: 0 0 70%;
  }
}
/* ── Episode description ─────────────────────────────── */
.episode-description {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  white-space: pre-line;
}
/* ── Breadcrumb ──────────────────────────────────────── */
.player-breadcrumb-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s;
}
.player-breadcrumb-link:hover {
  color: #f5c518;
  text-decoration: none;
}
/* ── Prev/Next nav ──────────────────────────────────── */
.player-episode-nav {
  display: flex;
  align-items: center;
  padding: 14px 0 4px;
  gap: 12px;
}
.player-episode-nav .ep-nav-center {
  display: flex;
  gap: 18px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.player-episode-nav {
  position: relative;
}
.player-episode-nav a {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.player-episode-nav a:hover {
  color: #f5c518;
}
.player-episode-nav .ep-nav-spacer {
  flex: 1;
}
@media (max-width: 480px) {
  .player-episode-nav .ep-nav-center {
    position: static;
    transform: none;
  }
}
/* ── Player title / date / share ─────────────────────── */
.player-title-block {
  padding: 8px 0 14px;
  text-align: center;
}
.player-episode-id {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin: 0 0 6px;
}
.player-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.4;
}
.player-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.player-date-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}
.player-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 3px 11px;
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.5);
  transition:
    color 0.15s,
    border-color 0.15s;
  text-transform: uppercase;
}
.player-share-btn:hover {
  color: #f5c518;
  border-color: #f5c518;
}
.player-share-btn i {
  font-size: 0.75rem;
}
.share-count-sep {
  margin: 0 2px;
  opacity: 0.5;
}
#share-count {
  font-variant-numeric: tabular-nums;
}
.rc-discussion-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(245, 197, 24, 0.3);
  background: rgba(245, 197, 24, 0.08);
  color: #f5c518;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.rc-discussion-link:hover {
  background: rgba(245, 197, 24, 0.15);
  border-color: #f5c518;
}
/* ── Comments ────────────────────────────────────────── */
.comments-section {
  padding: 24px 0 32px;
  background: #000;
  margin-top: 16px;
}
.comment-list {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
}
.comment-item {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s;
}
.comment-item:last-child {
  border-bottom: none;
}
.comment-item:hover {
  background: rgba(255, 255, 255, 0.035);
}
.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}
.comment-body {
  flex: 1;
  min-width: 0;
}
.comment-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.comment-author {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}
a.comment-avatar-link {
  display: block;
  flex-shrink: 0;
}
a.comment-author-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
a.comment-author-link:hover {
  color: #f5c518;
}
.comment-date {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
}
/* Rock Cave Community badge on site-native comments */
.rc-community-badge {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #f5c518;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.28);
  border-radius: 3px;
  padding: 1px 5px;
  white-space: nowrap;
  line-height: 1.6;
}
.comment-text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.68;
  margin: 0 0 9px;
  word-break: break-word;
}
.comment-text a {
  color: #f5c518;
  text-decoration: none;
}
.comment-text a:hover {
  text-decoration: underline;
}
.comment-actions {
  display: flex;
  align-items: center;
}
.comment-likes {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.32);
  margin-right: 16px;
}
.comment-likes i {
  margin-right: 3px;
}
.comment-replies-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  color: #f5c518;
  letter-spacing: 0.4px;
  transition: color 0.15s;
}
.comment-replies-btn:hover {
  color: #ffd740;
}
.comment-replies-btn i {
  margin-right: 4px;
  font-size: 0.62rem;
  transition: transform 0.22s;
}
.comment-replies-btn.open i {
  transform: rotate(180deg);
}
.comment-replies-list {
  margin-top: 12px;
  border-left: 2px solid rgba(245, 197, 24, 0.3);
  padding-left: 14px;
}
.comment-reply-item {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.comment-reply-item:last-child {
  border-bottom: none;
}
.comment-reply-item .comment-avatar {
  width: 28px;
  height: 28px;
}
.comments-loading {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  padding: 28px 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.comments-loading i {
  margin-right: 6px;
}
.comments-notice {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.28);
  padding: 18px 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
/* ── Comment compose box ──────────────────────────────── */
.rc-compose-wrap {
  max-width: 900px;
  margin: 0 auto 16px;
}
.rc-compose-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.rc-compose-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: rgba(245, 197, 24, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.rc-compose-avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.rc-compose-field {
  flex: 1;
}
.rc-compose-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.87rem;
  line-height: 1.55;
  resize: vertical;
  min-height: 64px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.18s;
}
.rc-compose-textarea:focus {
  border-color: rgba(245, 197, 24, 0.4);
}
.rc-compose-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.rc-compose-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}
.rc-compose-chars {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
}
.rc-compose-submit {
  padding: 6px 18px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 6px;
  color: #f5c518;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.rc-compose-submit:hover:not(:disabled) {
  background: rgba(245, 197, 24, 0.22);
  border-color: #f5c518;
}
.rc-compose-submit:disabled {
  opacity: 0.38;
  cursor: default;
}
.rc-compose-error {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  color: #e74c3c;
  margin: 6px 0 0;
}
.rc-compose-signin {
  text-align: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}
.rc-compose-signin p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 10px;
}
.rc-compose-signin-btn {
  padding: 7px 20px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.28);
  border-radius: 6px;
  color: #f5c518;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.rc-compose-signin-btn:hover {
  background: rgba(245, 197, 24, 0.2);
}
/* ── Like button ──────────────────────────────────────── */
.rc-like-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
  margin-right: 14px;
}
.rc-like-btn:hover {
  color: #f5c518;
}
.rc-like-btn.liked {
  color: #f5c518;
}
.rc-like-btn.liked i {
  font-weight: 900;
} /* solid heart */
.rc-like-btn i {
  font-size: 0.78rem;
}
/* ── Reply / edit / delete action buttons ─────────────── */
.rc-reply-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.3px;
  transition: color 0.15s;
  margin-right: 14px;
}
.rc-reply-btn:hover {
  color: rgba(255, 255, 255, 0.65);
}
.rc-edit-btn,
.rc-delete-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  transition: color 0.15s;
  margin-left: 10px;
}
.rc-edit-btn {
  color: rgba(255, 255, 255, 0.18);
}
.rc-edit-btn:hover {
  color: rgba(255, 255, 255, 0.55);
}
.rc-delete-btn {
  color: rgba(255, 255, 255, 0.18);
}
.rc-delete-btn:hover {
  color: #e74c3c;
}
/* ── Edited label ─────────────────────────────────────── */
.rc-edited-label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.63rem;
  color: rgba(255, 255, 255, 0.22);
  font-style: italic;
}
/* ── Inline reply compose ─────────────────────────────── */
.rc-reply-compose {
  margin-top: 10px;
  display: none;
}
.rc-reply-compose.open {
  display: block;
}
.rc-reply-compose .rc-compose-textarea {
  min-height: 48px;
  font-size: 0.82rem;
}
.rc-reply-compose-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 6px;
  align-items: center;
}
.rc-reply-cancel-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.38);
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75rem;
  cursor: pointer;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.rc-reply-cancel-btn:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.7);
}
/* ── Inline edit compose ──────────────────────────────── */
.rc-edit-compose {
  margin-top: 8px;
  display: none;
}
.rc-edit-compose.open {
  display: block;
}
/* ── Two-step delete confirm row ──────────────────────── */
.rc-delete-confirm {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}
.rc-delete-confirm.open {
  display: inline-flex;
}
.rc-delete-confirm-yes {
  background: none;
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: 4px;
  padding: 2px 8px;
  color: #e74c3c;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.rc-delete-confirm-yes:hover {
  background: rgba(231, 76, 60, 0.18);
}
.rc-delete-confirm-no {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  padding: 2px 8px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.7rem;
  cursor: pointer;
}
.rc-delete-confirm-no:hover {
  color: rgba(255, 255, 255, 0.7);
}
/* ── Comment animations ───────────────────────────────── */
@keyframes rc-fadein {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rc-comment-new {
  animation: rc-fadein 0.28s ease both;
}
@keyframes rc-fadeout {
  from {
    opacity: 1;
    max-height: 300px;
  }
  to {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
}
.rc-comment-removing {
  animation: rc-fadeout 0.28s ease forwards;
}
/* ── Char counter warning states ──────────────────────── */
.rc-compose-chars.warn {
  color: #f5c518;
}
.rc-compose-chars.over {
  color: #e74c3c;
}
/* ── Pending review badge ─────────────────────────────── */
.rc-pending-badge {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.28);
  color: #f5c518;
  border-radius: 20px;
  padding: 1px 8px;
  margin-left: 6px;
  vertical-align: middle;
}
/* ── Top Contributor badge ────────────────────────────── */
.rc-top-contributor-badge {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    rgba(245, 197, 24, 0.18),
    rgba(245, 197, 24, 0.07)
  );
  border: 1px solid rgba(245, 197, 24, 0.32);
  color: #f5c518;
  border-radius: 20px;
  padding: 1px 9px;
  margin-left: 6px;
  vertical-align: middle;
}
.rc-bot-badge {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    rgba(100, 149, 237, 0.18),
    rgba(100, 149, 237, 0.07)
  );
  border: 1px solid rgba(100, 149, 237, 0.32);
  color: #6495ed;
  border-radius: 20px;
  padding: 1px 9px;
  margin-left: 6px;
  vertical-align: middle;
}
.rc-youtube-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.15),
    rgba(255, 0, 0, 0.05)
  );
  border: 1px solid rgba(255, 0, 0, 0.25);
  color: #ff4444;
  border-radius: 20px;
  padding: 1px 9px;
  margin-left: 6px;
  vertical-align: middle;
}
/* ── Site replies container ───────────────────────────── */
.rc-site-replies > .comment-replies-list {
  margin-top: 10px;
}
