/* ============================================================
   RootsWorld – reviews.css
   Styles for /reviews/ pages
   ============================================================ */

/* -- Reset -- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: #fff;
  color: #222;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.5;
}

/* -- Links -- */
a { color: #297878; text-decoration: none; }
a:hover, a:focus { text-decoration: underline; color: #1a5555; }

/* -- Page wrapper -- */
.page-wrapper {
  max-width: 610px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* -- Site header bar (iframe + globe) -- */
.site-header {
  text-align: center;
  padding: 5px 0 5px;
  border-bottom: none;: 2px solid #297878;
  margin-bottom: 24px;
}
.site-header iframe {
  width: 590px;
  height: 89px;
  border: none;
  display: block;
  margin: 0 auto 8px;
}
.site-header img { height: auto; width: auto; }

/* -- Review header block -- */
.review-header {
  text-align: center;
  margin-bottom: 16px;
}
.review-header img.banner {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}
.review-header .artist-name {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
}
.review-header .album-title {
  font-size: 1.2rem;
  font-style: italic;
  margin: 1px 0 0;
  line-height: 1.3;
}
.review-header .label {
  font-size: 0.9rem;
  color: #555;
  margin: 2px 0 0;
  line-height: 1.3;
}
.review-header .reviewer {
  font-size: 0.9rem;
  color: #690103;
  font-weight: bold;
  margin: 4px 0 0;
  line-height: 1.3;
}
.review-header .photo-credit {
  font-size: 0.78rem;
  color: #888;
  margin: 1px 0 0;
  line-height: 1.3;
}

/* -- Cover image (floated right inside body text) -- */
img.cover {
  float: right;
  width: 175px;
  height: auto;
  margin: 0 0 12px 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* -- Review body text -- */
.review-body {
  font-size: 0.95rem;
  line-height: 1.5;
}
.review-body p { margin: 0 0 14px; 
}



/* -- Audio / embed boxes -- */
/* Shared card style for all three media types */
.media-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111;
  border: 1px solid #000;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  padding: 10px 14px;
  margin: 18px auto;
  max-width: 620px;
}
.media-card .listen-icon {
  flex: 0 0 32px;
}
.media-card .listen-icon img {
  width: 32px;
  height: auto;
  display: block;
}
.media-card .media-embed {
  flex: 1;
  min-width: 0; /* prevents iframe overflow */
}
.media-card .media-embed iframe {
  width: 100%;
  border: none;
  display: block;
}
.media-card .media-label {
  font-size: 0.78rem;
  color: #ccc;
  line-height: 1.4;
  flex: 0 0 auto;
  max-width: 120px;
}

/* MP3 audio player */
audio.review-audio {
  width: 100%;
  display: block;
}

/* YouTube embed – wider card, stacked */
.media-card.youtube {
  flex-direction: column;
  align-items: stretch;
  max-width: 640px;
  padding: 12px;
}
.media-card.youtube iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 4px;
  border: none;
  display: block;
}

/* -- Find artist / Subscribe links -- */
.review-links {
  margin: 20px 0;
  font-size: 1.0rem;
}

/* -- Search bar -- */
.search-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px 0 16px;
}
.search-wrap iframe {
  width: 100%;
  max-width: 520px;
  height: 40px;
  border: none;
  overflow: hidden;
  position: relative;
  left: 20px;
}

/* -- Bottom nav (globe + graphic buttons) -- */
.bottom-nav {
  text-align: center;
  margin: 20px 0;
}
.bottom-nav img { vertical-align: middle; }
.bottom-nav .nav-buttons { margin-top: 8px; }
.bottom-nav .nav-buttons a { display: inline-block; margin: 2px 3px; }
.bottom-nav .nav-buttons img { height: 25px; border: 0; }
.bottom-nav .nav-buttons a:hover img { opacity: 0.75; }

/* -- Subscribe CTA -- */
.subscribe-cta {
  text-align: center;
  margin: 16px 0;
  font-size: 1.1rem;
  font-weight: bold;
}

/* -- Footer -- */
.review-footer {
  border-top: 1px solid #e0e0e0;
  padding: 14px 0 10px;
  font-size: 0.75rem;
  color: #888;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  line-height: 1.6;
}

/* -- Mobile -- */
@media (max-width: 600px) {
  img.cover {
    float: none;
    display: block;
    width: 140px;
    margin: 0 auto 14px;
  }
  .media-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .media-card .media-label { max-width: 100%; }
  .bottom-nav .nav-buttons img { height: 22px; }
}