/* Live Report Specific Styles */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 0;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #333;
}

/* Live Report Hero Section */
.live-report-hero {
  padding: 40px 0 60px;
  background: #f8f9fa;
  position: relative;
}

.live-report-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Updated badge color to match Live History style */
.live-report-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #666;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.live-report-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0.05em;
}

.live-report-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #666;
}

/* Photo Gallery Section */
.photo-gallery-section {
  padding: 80px 0;
  background: white;
}

.gallery-title {
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 24px;
  color: #000;
  letter-spacing: 0.05em;
}

/* Added carousel styles */
.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-btn-prev {
  left: 16px;
}

.carousel-btn-next {
  right: 16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: #666;
}

/* Old gallery styles - kept for fallback */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4 / 3;
  border: 1px solid #e5e5e5;
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.photo-large {
  grid-column: span 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Live Report Content Section */
.live-report-content-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.report-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

/* Updated article styling to match Live History */
.report-article {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
}

.report-intro {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e5e5;
}

.report-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-weight: 300;
}

.report-body {
  margin-bottom: 40px;
}

/* Updated section title color to match Live History */
.report-section-title {
  font-size: 24px;
  font-weight: 300;
  color: #000;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid #666;
}

.report-text {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 24px;
  font-weight: 300;
}

.report-footer {
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.report-author,
.report-date {
  font-size: 14px;
  color: #666;
  font-weight: 300;
}

.report-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Updated sidebar card styling to match Live History */
.sidebar-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 300;
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #666;
}

.setlist-ordered {
  list-style: none;
  counter-reset: setlist-counter;
  padding: 0;
}

.setlist-ordered li {
  counter-increment: setlist-counter;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid #f1f3f5;
  font-size: 15px;
  color: #666;
  position: relative;
  font-weight: 300;
}

.setlist-ordered li:last-child {
  border-bottom: none;
}

/* Updated counter background to match Live History */
.setlist-ordered li::before {
  content: counter(setlist-counter);
  position: absolute;
  left: 0;
  top: 12px;
  background: #666;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.setlist-note {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
  font-style: italic;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list dt {
  font-weight: 500;
  color: #666;
  font-size: 14px;
  margin-bottom: 4px;
}

.info-list dd {
  color: #666;
  font-size: 15px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f3f5;
  font-weight: 300;
}

.info-list dd:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Updated link styling to match Live History */
.related-link {
  display: block;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #666;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-link:hover {
  background: #666;
  color: white;
  transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .report-content-wrapper {
    grid-template-columns: 1fr;
  }

  .photo-large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .live-report-hero {
    padding: 20px 0 40px;
  }

  .live-report-meta {
    flex-direction: column;
    gap: 16px;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .report-article {
    padding: 24px;
  }

  .report-section-title {
    font-size: 20px;
  }

  .report-footer {
    flex-direction: column;
  }

  /* Mobile carousel button adjustments */
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 28px;
  }

  .report-lead {
    font-size: 16px;
  }

  .report-text {
    font-size: 15px;
  }
}
