/* style/live-stream-tutorials.css */
.page-live-stream-tutorials {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-live-stream-tutorials__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live-stream-tutorials__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-live-stream-tutorials__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}

.page-live-stream-tutorials__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-live-stream-tutorials__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-live-stream-tutorials__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-live-stream-tutorials__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live-stream-tutorials__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-live-stream-tutorials__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 50px auto;
  color: #555;
}

.page-live-stream-tutorials__content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-live-stream-tutorials__text-content {
  flex: 1;
  min-width: 300px;
}

.page-live-stream-tutorials__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-live-stream-tutorials__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-live-stream-tutorials__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-live-stream-tutorials__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live-stream-tutorials__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live-stream-tutorials__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-live-stream-tutorials__card-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live-stream-tutorials__card-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live-stream-tutorials__card-text {
  font-size: 1em;
  color: #555;
  flex-grow: 1;
}

.page-live-stream-tutorials__detail-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-live-stream-tutorials__detail-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-live-stream-tutorials__detail-item {
    flex-direction: row;
    align-items: center;
  }
}

.page-live-stream-tutorials__detail-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .page-live-stream-tutorials__detail-image {
    width: 350px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 10px 0 0 10px;
  }
}

.page-live-stream-tutorials__detail-content {
  padding: 30px;
  flex-grow: 1;
}

.page-live-stream-tutorials__detail-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live-stream-tutorials__detail-title a {
  color: #007bff;
  text-decoration: none;
}

.page-live-stream-tutorials__detail-title a:hover {
  text-decoration: underline;
}

.page-live-stream-tutorials__detail-description {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 20px;
}

.page-live-stream-tutorials__detail-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-live-stream-tutorials__detail-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-live-stream-tutorials__cta {
  background: linear-gradient(90deg, #007bff, #ffc107);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-live-stream-tutorials__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-live-stream-tutorials__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.page-live-stream-tutorials__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-live-stream-tutorials__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-stream-tutorials__cta-button--primary {
  background-color: #ffc107;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-stream-tutorials__cta-button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-live-stream-tutorials__cta-button--secondary {
  background-color: #0056b3;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-stream-tutorials__cta-button--secondary:hover {
  background-color: #004085;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-live-stream-tutorials__faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-live-stream-tutorials__faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.page-live-stream-tutorials__faq-question {
  font-size: 1.2em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live-stream-tutorials__faq-answer {
  font-size: 1em;
  color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-live-stream-tutorials__hero {
    padding: 60px 15px;
  }

  .page-live-stream-tutorials__hero-title {
    font-size: 2em;
  }

  .page-live-stream-tutorials__hero-subtitle {
    font-size: 1em;
  }

  .page-live-stream-tutorials__section {
    padding: 40px 15px;
  }

  .page-live-stream-tutorials__section-title {
    font-size: 1.8em;
  }

  .page-live-stream-tutorials__section-description {
    font-size: 1em;
  }

  .page-live-stream-tutorials__content-grid {
    flex-direction: column;
  }

  .page-live-stream-tutorials__card-grid {
    grid-template-columns: 1fr;
  }

  .page-live-stream-tutorials__detail-item {
    flex-direction: column;
  }

  .page-live-stream-tutorials__detail-image {
    border-radius: 10px 10px 0 0;
  }

  .page-live-stream-tutorials__cta {
    padding: 50px 15px;
  }

  .page-live-stream-tutorials__cta-title {
    font-size: 1.8em;
  }

  .page-live-stream-tutorials__cta-description {
    font-size: 1em;
  }

  .page-live-stream-tutorials__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}