/* style/news-industry-analysis.css */

/* Base styles for the page content */
.page-news-industry-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body, explicitly set for clarity */
}

.page-news-industry-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  color: #ffffff;
  text-align: center;
  background-color: #121212;
}

.page-news-industry-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.page-news-industry-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-news-industry-analysis__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-news-industry-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-news-industry-analysis__subtitle {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news-industry-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-news-industry-analysis__cta-buttons--center {
  margin-top: 40px;
}

.page-news-industry-analysis__btn-primary,
.page-news-industry-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-industry-analysis__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-news-industry-analysis__btn-primary:hover {
  background-color: #1a8cc2;
  border-color: #1a8cc2;
}

.page-news-industry-analysis__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-news-industry-analysis__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-news-industry-analysis__section {
  padding: 60px 20px;
}

.page-news-industry-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #1e1e1e; /* Slightly lighter dark background for content */
  color: #ffffff; /* Light text for dark background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-industry-analysis__dark-section {
  background-color: #121212;
  color: #ffffff;
}

.page-news-industry-analysis__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news-industry-analysis__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
}

.page-news-industry-analysis__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-news-industry-analysis__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-news-industry-analysis__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 40px auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-news-industry-analysis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-news-industry-analysis__grid-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-news-industry-analysis__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-news-industry-analysis__list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-news-industry-analysis__list li::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
  top: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news-industry-analysis__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-news-industry-analysis__section-title {
    font-size: 1.8rem;
  }

  .page-news-industry-analysis__sub-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-news-industry-analysis__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-news-industry-analysis__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-news-industry-analysis__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-news-industry-analysis__subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-news-industry-analysis__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-news-industry-analysis__btn-primary,
  .page-news-industry-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news-industry-analysis__section {
    padding: 40px 15px;
  }

  .page-news-industry-analysis__content-area,
  .page-news-industry-analysis__content-wrapper {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news-industry-analysis__section-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .page-news-industry-analysis__sub-title {
    font-size: 1.3rem;
  }

  .page-news-industry-analysis__text-block,
  .page-news-industry-analysis__list li {
    font-size: 0.95rem;
  }

  .page-news-industry-analysis__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
    margin: 30px auto !important;
  }

  .page-news-industry-analysis__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .page-news-industry-analysis__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-news-industry-analysis__section-title {
    font-size: 1.4rem;
  }
}