/* style/resources-daga-live-stream.css */

:root {
  --page-resources-daga-live-stream-primary-color: #0A6847;
  --page-resources-daga-live-stream-secondary-color: #FFD700;
  --page-resources-daga-live-stream-text-dark: #222;
  --page-resources-daga-live-stream-text-light: #fff;
  --page-resources-daga-live-stream-bg-light: #f9f9f9;
  --page-resources-daga-live-stream-bg-dark: #074a33;
  --page-resources-daga-live-stream-border-color: #eee;
}

.page-resources-daga-live-stream {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-resources-daga-live-stream-text-dark);
  background-color: var(--page-resources-daga-live-stream-bg-light);
}

.page-resources-daga-live-stream__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-daga-live-stream__hero {
  background: linear-gradient(135deg, var(--page-resources-daga-live-stream-primary-color) 0%, var(--page-resources-daga-live-stream-bg-dark) 100%);
  color: var(--page-resources-daga-live-stream-text-light);
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-daga-live-stream__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--page-resources-daga-live-stream-secondary-color);
}

.page-resources-daga-live-stream__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-daga-live-stream__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-resources-daga-live-stream__btn--primary {
  background-color: var(--page-resources-daga-live-stream-secondary-color);
  color: var(--page-resources-daga-live-stream-primary-color);
  font-size: 1.1em;
}

.page-resources-daga-live-stream__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-resources-daga-live-stream__btn--secondary {
  background-color: var(--page-resources-daga-live-stream-primary-color);
  color: var(--page-resources-daga-live-stream-text-light);
  border: 1px solid var(--page-resources-daga-live-stream-secondary-color);
}

.page-resources-daga-live-stream__btn--secondary:hover {
  background-color: var(--page-resources-daga-live-stream-bg-dark);
  border-color: var(--page-resources-daga-live-stream-secondary-color);
  transform: translateY(-2px);
}

.page-resources-daga-live-stream__btn--lg {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-resources-daga-live-stream__content-section {
  padding: 60px 0;
}

.page-resources-daga-live-stream__article-content {
  max-width: 800px; /* Optimal width for long-form reading */
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-daga-live-stream__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--page-resources-daga-live-stream-primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.page-resources-daga-live-stream__back-link:hover {
  color: var(--page-resources-daga-live-stream-secondary-color);
}

.page-resources-daga-live-stream__section-title {
  font-size: 2.2em;
  color: var(--page-resources-daga-live-stream-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--page-resources-daga-live-stream-secondary-color);
  padding-bottom: 10px;
}

.page-resources-daga-live-stream__sub-section-title {
  font-size: 1.6em;
  color: var(--page-resources-daga-live-stream-bg-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-daga-live-stream__article-content p {
  margin-bottom: 1em;
  font-size: 1.1em;
  line-height: 1.7;
  color: #333;
}

.page-resources-daga-live-stream__article-content ul,
.page-resources-daga-live-stream__article-content ol {
  margin-bottom: 1em;
  padding-left: 25px;
  font-size: 1.1em;
  color: #333;
}

.page-resources-daga-live-stream__article-content li {
  margin-bottom: 0.5em;
}

.page-resources-daga-live-stream__article-content a {
  color: var(--page-resources-daga-live-stream-primary-color);
  text-decoration: underline;
}

.page-resources-daga-live-stream__article-content a:hover {
  color: var(--page-resources-daga-live-stream-secondary-color);
}

.page-resources-daga-live-stream__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-daga-live-stream__platform-card {
  background-color: var(--page-resources-daga-live-stream-bg-light);
  border: 1px solid var(--page-resources-daga-live-stream-border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-daga-live-stream__card-logo {
  max-width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.page-resources-daga-live-stream__card-title {
  font-size: 1.4em;
  color: var(--page-resources-daga-live-stream-primary-color);
  margin-bottom: 10px;
}

.page-resources-daga-live-stream__card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-resources-daga-live-stream__blockquote {
  border-left: 5px solid var(--page-resources-daga-live-stream-secondary-color);
  padding: 15px 20px;
  margin: 30px 0;
  background-color: #f0f8f4; /* Light green tint */
  font-style: italic;
  color: var(--page-resources-daga-live-stream-primary-color);
  font-size: 1.1em;
}

.page-resources-daga-live-stream__blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: bold;
  color: var(--page-resources-daga-live-stream-bg-dark);
}

.page-resources-daga-live-stream__faq-item {
  background-color: #fff;
  border: 1px solid var(--page-resources-daga-live-stream-border-color);
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-daga-live-stream__faq-question {
  font-size: 1.2em;
  color: var(--page-resources-daga-live-stream-primary-color);
  padding: 15px 20px;
  margin: 0;
  cursor: pointer;
  background-color: var(--page-resources-daga-live-stream-bg-light);
  border-bottom: 1px solid var(--page-resources-daga-live-stream-border-color);
}

.page-resources-daga-live-stream__faq-question:hover {
  background-color: #e8f5e9; /* Lighter green on hover */
}

.page-resources-daga-live-stream__faq-answer {
  padding: 15px 20px;
  margin: 0;
  font-size: 1em;
  color: #444;
  display: none; /* Hidden by default, toggled by JS */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-daga-live-stream__hero-title {
    font-size: 2em;
  }

  .page-resources-daga-live-stream__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-daga-live-stream__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-resources-daga-live-stream__section-title {
    font-size: 1.8em;
  }

  .page-resources-daga-live-stream__sub-section-title {
    font-size: 1.4em;
  }

  .page-resources-daga-live-stream__article-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-daga-live-stream__hero-title {
    font-size: 1.6em;
  }

  .page-resources-daga-live-stream__hero-subtitle {
    font-size: 0.9em;
  }

  .page-resources-daga-live-stream__btn {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  .page-resources-daga-live-stream__section-title {
    font-size: 1.5em;
  }

  .page-resources-daga-live-stream__sub-section-title {
    font-size: 1.2em;
  }

  .page-resources-daga-live-stream__article-content {
    padding: 15px;
  }
}