/* style/industry-news.css */
.page-industry-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-industry-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-industry-news__hero {
  background: linear-gradient(135deg, #0A2463, #E3B505);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-industry-news__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  position: relative;
  z-index: 1;
}

.page-industry-news__hero-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-industry-news__hero-button:hover {
  background-color: #d1a504;
  transform: translateY(-3px);
}

.page-industry-news__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-industry-news__section:nth-of-type(even) {
  background-color: #fdfdfd;
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-industry-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E3B505;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-industry-news__intro p, .page-industry-news__regulations p, .page-industry-news__responsible-gambling p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-industry-news__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-industry-news__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.page-industry-news__trend-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-industry-news__trend-card:hover {
  transform: translateY(-5px);
}

.page-industry-news__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-industry-news__card-title {
  font-size: 1.5em;
  color: #0A2463;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-industry-news__card-description {
  font-size: 1em;
  color: #666;
  padding: 0 20px 20px;
  text-align: justify;
  flex-grow: 1;
}

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

@media (min-width: 768px) {
  .page-industry-news__article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-industry-news__article-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-industry-news__article-card:hover {
  transform: translateY(-5px);
}

.page-industry-news__article-thumbnail {
  width: 180px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-industry-news__article-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-industry-news__article-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-industry-news__article-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news__article-title a:hover {
  color: #E3B505;
}

.page-industry-news__article-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 15px;
}

.page-industry-news__button {
  display: inline-block;
  background-color: #0A2463;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-industry-news__button:hover {
  background-color: #1c4a92;
}

.page-industry-news__news-list {
  list-style: none;
  padding: 0;
}

.page-industry-news__news-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-industry-news__news-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.page-industry-news__item-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-industry-news__item-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news__item-title a:hover {
  color: #E3B505;
}

.page-industry-news__item-description {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.page-industry-news__cta-section {
  background: linear-gradient(to right, #0A2463, #1c4a92);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-industry-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
}

.page-industry-news__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-industry-news__cta-buttons .page-industry-news__button {
  margin: 0 15px;
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-industry-news__button--primary {
  background-color: #E3B505;
  color: #0A2463;
}

.page-industry-news__button--primary:hover {
  background-color: #d1a504;
}

.page-industry-news__button--secondary {
  background-color: transparent;
  border: 2px solid #E3B505;
  color: #E3B505;
}

.page-industry-news__button--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-industry-news__hero-title {
    font-size: 2.8em;
  }
  .page-industry-news__section-title {
    font-size: 2em;
  }
  .page-industry-news__cta-title {
    font-size: 2.2em;
  }
  .page-industry-news__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-industry-news__article-card {
    flex-direction: column;
  }
  .page-industry-news__article-thumbnail {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-industry-news__hero {
    padding: 80px 0;
  }
  .page-industry-news__hero-title {
    font-size: 2.2em;
  }
  .page-industry-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-industry-news__section {
    padding: 40px 0;
  }
  .page-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-industry-news__grid {
    grid-template-columns: 1fr;
  }
  .page-industry-news__cta-title {
    font-size: 1.8em;
  }
  .page-industry-news__cta-description {
    font-size: 1em;
  }
  .page-industry-news__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-industry-news__cta-buttons .page-industry-news__button {
    margin: 0;
  }
  .page-industry-news__article-card {
    flex-direction: column;
  }
  .page-industry-news__article-thumbnail {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news__hero-subtitle {
    font-size: 0.9em;
  }
  .page-industry-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news__section-title {
    font-size: 1.5em;
  }
  .page-industry-news__card-title {
    font-size: 1.3em;
  }
  .page-industry-news__item-title {
    font-size: 1.4em;
  }
  .page-industry-news__article-title {
    font-size: 1.1em;
  }
  .page-industry-news__article-thumbnail {
    height: 150px;
  }
}