﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* No reports state styling */
.no-reports {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
}

/* Podcast Sources Section */
.sources-section {
  background: var(--bg-primary);
  padding: 4rem 0;
  margin: 2rem 0;
}

.sources-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sources-section .section-header h2 {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sources-section .section-header p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin: 0 auto;
  max-width: 600px;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.podcast-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.podcast-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.podcast-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-image.placeholder {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
}

.podcast-icon {
  font-size: 2rem;
  color: var(--text-primary);
}

.podcast-content {
  flex: 1;
  min-width: 0;
}

.podcast-content h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.podcast-host {
  color: var(--accent-primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.podcast-description {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.podcast-link:hover {
  color: var(--accent-hover);
}

.no-podcasts {
  text-align: center;
  padding: 3rem;
  color: var(--text-tertiary);
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .podcast-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .podcast-card {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .podcast-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
  }

  .sources-section .section-header h2 {
    font-size: 2rem;
  }
}

/* Professional SVG Feature Icons */
.feature-icon svg {
  color: var(--accent-primary);
  stroke: currentColor;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  color: var(--accent-hover);
  transform: scale(1.1);
}

/* Additional spacing for better icon alignment */
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--bg-tertiary);
  border-radius: 12px;
  margin: 0 auto 1.5rem;
}
