/* style/bj88-news-center.css */

:root {
  --page-bj88-news-center-primary-color: #0A192F;
  --page-bj88-news-center-secondary-color: #FFD700;
  --page-bj88-news-center-text-light: #FFFFFF;
  --page-bj88-news-center-text-dark: #333333;
  --page-bj88-news-center-background-light: #F8F8F8;
  --page-bj88-news-center-accent-dark: #B39700; /* Darker variant of secondary for text on secondary background */
  --page-bj88-news-center-accent-light: #545e6d; /* Lighter variant of primary for text on primary background */
}

.page-bj88-news-center {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-bj88-news-center-text-dark);
  background-color: var(--page-bj88-news-center-background-light);
}

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

.page-bj88-news-center__hero-section {
  background: linear-gradient(135deg, var(--page-bj88-news-center-primary-color) 0%, #1a355e 100%); /* Slightly lighter blue for gradient */
  color: var(--page-bj88-news-center-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-bj88-news-center__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-bj88-news-center__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--page-bj88-news-center-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-bj88-news-center__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-bj88-news-center__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-bj88-news-center__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-bj88-news-center__button--primary {
  background-color: var(--page-bj88-news-center-secondary-color);
  color: var(--page-bj88-news-center-primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-bj88-news-center__button--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-bj88-news-center__button--secondary {
  background-color: transparent;
  color: var(--page-bj88-news-center-secondary-color);
  border: 2px solid var(--page-bj88-news-center-secondary-color);
}

.page-bj88-news-center__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-bj88-news-center__content-section {
  padding: 60px 0;
  background-color: var(--page-bj88-news-center-background-light);
}

.page-bj88-news-center__section-title {
  font-size: 2.5em;
  color: var(--page-bj88-news-center-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-bj88-news-center__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-bj88-news-center-secondary-color);
  border-radius: 2px;
}

.page-bj88-news-center__subsection-title {
  font-size: 2em;
  color: var(--page-bj88-news-center-primary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 5px solid var(--page-bj88-news-center-secondary-color);
  padding-left: 15px;
}

.page-bj88-news-center__paragraph {
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.8;
  color: #555;
}

.page-bj88-news-center__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-bj88-news-center__news-card {
  background-color: var(--page-bj88-news-center-text-light);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-bj88-news-center__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-bj88-news-center__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-bj88-news-center__card-title {
  font-size: 1.5em;
  color: var(--page-bj88-news-center-primary-color);
  padding: 20px 25px 10px;
  margin: 0;
}

.page-bj88-news-center__card-title a {
  color: var(--page-bj88-news-center-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bj88-news-center__card-title a:hover {
  color: var(--page-bj88-news-center-secondary-color);
}

.page-bj88-news-center__card-description {
  font-size: 1em;
  color: #666;
  padding: 0 25px 20px;
  flex-grow: 1;
}

.page-bj88-news-center__button--link {
  display: block;
  width: calc(100% - 50px);
  margin: 0 25px 25px;
  background-color: var(--page-bj88-news-center-primary-color);
  color: var(--page-bj88-news-center-text-light);
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-bj88-news-center__button--link:hover {
  background-color: #1a355e;
}

.page-bj88-news-center__benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-bj88-news-center__benefits-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #444;
}

.page-bj88-news-center__list-icon {
  color: var(--page-bj88-news-center-secondary-color);
  font-weight: bold;
  font-size: 1.3em;
  margin-right: 10px;
  line-height: 1;
}

.page-bj88-news-center__cta-banner {
  background-color: var(--page-bj88-news-center-primary-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 60px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-bj88-news-center__banner-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  min-height: 250px;
}

.page-bj88-news-center__banner-content {
  padding: 40px;
  width: 60%;
  color: var(--page-bj88-news-center-text-light);
}

.page-bj88-news-center__banner-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: var(--page-bj88-news-center-secondary-color);
}

.page-bj88-news-center__banner-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-bj88-news-center__cta-group--bottom {
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-bj88-news-center__news-types-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-bj88-news-center__news-types-list li {
  background-color: var(--page-bj88-news-center-text-light);
  border-left: 4px solid var(--page-bj88-news-center-secondary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-bj88-news-center__news-types-list li strong {
  color: var(--page-bj88-news-center-primary-color);
}

.page-bj88-news-center__faq-item {
  background-color: var(--page-bj88-news-center-text-light);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.page-bj88-news-center__faq-question {
  font-size: 1.4em;
  color: var(--page-bj88-news-center-primary-color);
  margin-bottom: 10px;
}

.page-bj88-news-center__faq-answer {
  font-size: 1.05em;
  color: #555;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-bj88-news-center__hero-title {
    font-size: 2.8em;
  }
  .page-bj88-news-center__hero-description {
    font-size: 1.1em;
  }
  .page-bj88-news-center__section-title {
    font-size: 2em;
  }
  .page-bj88-news-center__subsection-title {
    font-size: 1.8em;
  }
  .page-bj88-news-center__banner-image {
    width: 100%;
    height: 200px;
    min-height: unset;
  }
  .page-bj88-news-center__banner-content {
    width: 100%;
    padding: 30px;
    text-align: center;
  }
  .page-bj88-news-center__cta-banner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-bj88-news-center__hero-section {
    padding: 80px 0;
  }
  .page-bj88-news-center__hero-title {
    font-size: 2.2em;
  }
  .page-bj88-news-center__hero-description {
    font-size: 1em;
  }
  .page-bj88-news-center__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-bj88-news-center__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-bj88-news-center__news-grid {
    grid-template-columns: 1fr;
  }
  .page-bj88-news-center__section-title {
    font-size: 1.8em;
  }
  .page-bj88-news-center__subsection-title {
    font-size: 1.5em;
  }
  .page-bj88-news-center__news-card {
    margin-bottom: 20px;
  }
  .page-bj88-news-center__banner-title {
    font-size: 1.6em;
  }
  .page-bj88-news-center__banner-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-bj88-news-center__hero-section {
    padding: 60px 0;
  }
  .page-bj88-news-center__hero-title {
    font-size: 1.8em;
  }
  .page-bj88-news-center__hero-description {
    font-size: 0.9em;
  }
  .page-bj88-news-center__button {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-bj88-news-center__section-title {
    font-size: 1.6em;
  }
  .page-bj88-news-center__subsection-title {
    font-size: 1.3em;
  }
  .page-bj88-news-center__card-title {
    font-size: 1.3em;
  }
  .page-bj88-news-center__banner-title {
    font-size: 1.4em;
  }
}