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

/* --- General Page Styles --- */
.page-news-industry-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-news-industry-analysis__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #E53E3E; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-news-industry-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E53E3E;
  border-radius: 2px;
}

.page-news-industry-analysis__sub-title {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff; /* White text for sub-titles on dark background */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
}

.page-news-industry-analysis__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-analysis__list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  color: #f0f0f0;
}

.page-news-industry-analysis__list-item {
  margin-bottom: 10px;
  font-size: 16px;
}

/* --- Background Color Variants --- */
.page-news-industry-analysis__dark-bg {
  background-color: #1A202C; /* Main brand color */
  color: #ffffff;
}

.page-news-industry-analysis__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-news-industry-analysis__light-bg .page-news-industry-analysis__section-title {
  color: #1A202C;
}

.page-news-industry-analysis__light-bg .page-news-industry-analysis__section-title::after {
  background-color: #1A202C;
}

.page-news-industry-analysis__light-bg .page-news-industry-analysis__sub-title {
  color: #1A202C;
}

.page-news-industry-analysis__light-bg .page-news-industry-analysis__list {
  color: #333333;
}

.page-news-industry-analysis__light-bg .page-news-industry-analysis__list-item {
  color: #333333;
}

/* --- Hero Section (M1) --- */
.page-news-industry-analysis__hero-section {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  /* Fixed header spacing */
  padding-top: var(--header-offset, 120px);
}

.page-news-industry-analysis__main-title {
  font-size: 48px;
  color: #E53E3E; /* Auxiliary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news-industry-analysis__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-news-industry-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-news-industry-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Ensure word breaks */
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box; /* Include padding/border in width */
}

.page-news-industry-analysis__btn-primary {
  background-color: #E53E3E; /* Auxiliary color */
  color: #ffffff;
}

.page-news-industry-analysis__btn-primary:hover {
  background-color: #CC2E2E; /* Darker red on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-news-industry-analysis__btn-secondary {
  background-color: #1A202C; /* Main brand color */
  color: #ffffff;
  border: 2px solid #E53E3E;
}

.page-news-industry-analysis__btn-secondary:hover {
  background-color: #2D3748; /* Lighter dark blue-gray on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- Content Section --- */
.page-news-industry-analysis__content-section {
  padding: 60px 0;
}

.page-news-industry-analysis__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-news-industry-analysis__content-text p {
  margin-bottom: 15px;
  font-size: 17px;
  color: inherit; /* Inherit color from parent section */
}

.page-news-industry-analysis__content-text a {
  color: #E53E3E; /* Link color */
  text-decoration: underline;
}

.page-news-industry-analysis__content-text a:hover {
  color: #CC2E2E;
}

.page-news-industry-analysis__content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Min size requirement */
  min-height: 200px; /* Min size requirement */
  object-fit: cover;
}