/* style/resources-how-to-watch-thomo-live.css */
.page-resources-how-to-watch-thomo-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from shared.css body, but explicitly set for contrast */
}

.page-resources-how-to-watch-thomo-live__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  box-sizing: border-box;
}

.page-resources-how-to-watch-thomo-live__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-how-to-watch-thomo-live__hero-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover; /* Ensures video covers the area */
  cursor: pointer;
}

.page-resources-how-to-watch-thomo-live__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-resources-how-to-watch-thomo-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-resources-how-to-watch-thomo-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-how-to-watch-thomo-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-how-to-watch-thomo-live__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-watch-thomo-live__section {
  padding: 60px 20px;
  text-align: center;
}

.page-resources-how-to-watch-thomo-live__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-how-to-watch-thomo-live__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-how-to-watch-thomo-live__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: left;
}

.page-resources-how-to-watch-thomo-live__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-how-to-watch-thomo-live__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-how-to-watch-thomo-live__dark-bg .page-resources-how-to-watch-thomo-live__section-title {
  color: #ffffff;
}

.page-resources-how-to-watch-thomo-live__light-bg .page-resources-how-to-watch-thomo-live__section-title {
  color: #017439;
}

.page-resources-how-to-watch-thomo-live__light-bg .page-resources-how-to-watch-thomo-live__paragraph {
  color: #333333;
}

.page-resources-how-to-watch-thomo-live__dark-bg .page-resources-how-to-watch-thomo-live__paragraph a {
  color: #FFFF00; /* Link color for dark background */
  text-decoration: underline;
}

.page-resources-how-to-watch-thomo-live__light-bg .page-resources-how-to-watch-thomo-live__paragraph a {
  color: #017439; /* Link color for light background */
  text-decoration: underline;
}

.page-resources-how-to-watch-thomo-live__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-how-to-watch-thomo-live__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-watch-thomo-live__step-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFFF00;
}

.page-resources-how-to-watch-thomo-live__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-how-to-watch-thomo-live__image-container {
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-watch-thomo-live__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-how-to-watch-thomo-live__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-resources-how-to-watch-thomo-live__feature-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-resources-how-to-watch-thomo-live__feature-heading {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #017439;
}

.page-resources-how-to-watch-thomo-live__feature-item p {
  font-size: 1em;
  color: #555555;
}

.page-resources-how-to-watch-thomo-live__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-how-to-watch-thomo-live__card {
  background: #ffffff; /* White background for cards on dark sections */
  color: #333333; /* Dark text for cards on dark sections */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-resources-how-to-watch-thomo-live__card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #017439;
}

.page-resources-how-to-watch-thomo-live__card-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-how-to-watch-thomo-live__cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-watch-thomo-live__btn-primary,
.page-resources-how-to-watch-thomo-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-how-to-watch-thomo-live__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-how-to-watch-thomo-live__btn-primary:hover {
  background-color: #e02c2c;
  border-color: #e02c2c;
}

.page-resources-how-to-watch-thomo-live__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Text color for dark background */
  border: 2px solid #FFFF00;
}

.page-resources-how-to-watch-thomo-live__btn-secondary:hover {
  background-color: #FFFF00;
  color: #017439;
  border-color: #FFFF00;
}

.page-resources-how-to-watch-thomo-live__faq-container {
  margin-top: 40px;
  text-align: left;
}

.page-resources-how-to-watch-thomo-live__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-how-to-watch-thomo-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #017439;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-watch-thomo-live__faq-question h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
}

.page-resources-how-to-watch-thomo-live__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-watch-thomo-live__faq-item.active .page-resources-how-to-watch-thomo-live__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-watch-thomo-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-how-to-watch-thomo-live__faq-item.active .page-resources-how-to-watch-thomo-live__faq-answer {
  max-height: 1000px !important;
  padding: 20px;
}

.page-resources-how-to-watch-thomo-live__faq-answer p {
  margin: 0;
  color: #333333;
}

.page-resources-how-to-watch-thomo-live__cta-section {
  background-color: #017439;
  color: #ffffff;
  padding: 80px 20px;
}

.page-resources-how-to-watch-thomo-live__cta-section .page-resources-how-to-watch-thomo-live__section-title {
  color: #ffffff;
}

.page-resources-how-to-watch-thomo-live__cta-section .page-resources-how-to-watch-thomo-live__paragraph {
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-how-to-watch-thomo-live__hero-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-watch-thomo-live__hero-description {
    font-size: 1.1em;
  }
  .page-resources-how-to-watch-thomo-live__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-watch-thomo-live__hero-section {
    height: 70vh;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-how-to-watch-thomo-live__hero-title {
    font-size: 2em;
  }
  .page-resources-how-to-watch-thomo-live__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-watch-thomo-live__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-how-to-watch-thomo-live__btn-primary,
  .page-resources-how-to-watch-thomo-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-how-to-watch-thomo-live__section {
    padding: 40px 15px;
  }
  .page-resources-how-to-watch-thomo-live__section-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-watch-thomo-live__paragraph {
    font-size: 0.95em;
  }
  .page-resources-how-to-watch-thomo-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-how-to-watch-thomo-live__image-container,
  .page-resources-how-to-watch-thomo-live__video-wrapper,
  .page-resources-how-to-watch-thomo-live__step-by-step,
  .page-resources-how-to-watch-thomo-live__grid-container,
  .page-resources-how-to-watch-thomo-live__feature-list,
  .page-resources-how-to-watch-thomo-live__faq-container,
  .page-resources-how-to-watch-thomo-live__cta-section,
  .page-resources-how-to-watch-thomo-live__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-resources-how-to-watch-thomo-live__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: unset;
    min-width: unset;
    position: relative;
    top: unset;
    left: unset;
    transform: none;
  }
  .page-resources-how-to-watch-thomo-live__faq-question {
    padding: 15px;
    font-size: 1.1em;
  }
  .page-resources-how-to-watch-thomo-live__faq-question h3 {
    font-size: 1.1em;
  }
  .page-resources-how-to-watch-thomo-live__faq-answer {
    padding: 0 15px;
  }
  .page-resources-how-to-watch-thomo-live__faq-item.active .page-resources-how-to-watch-thomo-live__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-watch-thomo-live__hero-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-watch-thomo-live__section-title {
    font-size: 1.5em;
  }
  .page-resources-how-to-watch-thomo-live__step-title,
  .page-resources-how-to-watch-thomo-live__card-title,
  .page-resources-how-to-watch-thomo-live__feature-heading {
    font-size: 1.2em;
  }
}