/* style/news-center-policy-interpretation.css */

/* Biến CSS */
:root {
  --kkwin-primary: #0A246A;
  --kkwin-secondary: #FFD700;
  --text-dark: #333;
  --text-light: #f9f9f9;
  --background-light: #f5f7fa;
  --background-dark: #071a47;
  --border-color: #e0e0e0;
}

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

.page-news-center-policy-interpretation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-news-center-policy-interpretation__hero-section {
  background: linear-gradient(135deg, var(--kkwin-primary) 0%, #1a3c8a 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-center-policy-interpretation__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-news-center-policy-interpretation__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--kkwin-secondary);
  position: relative;
  z-index: 1;
}

.page-news-center-policy-interpretation__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  position: relative;
  z-index: 1;
}

.page-news-center-policy-interpretation__hero-button {
  display: inline-block;
  background-color: var(--kkwin-secondary);
  color: var(--kkwin-primary);
  padding: 15px 30px;
  border-radius: 50px;
  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-news-center-policy-interpretation__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

/* Content Section */
.page-news-center-policy-interpretation__content-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-news-center-policy-interpretation__article {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-news-center-policy-interpretation__article-heading {
  font-size: 2.2em;
  color: var(--kkwin-primary);
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--kkwin-secondary);
  padding-bottom: 10px;
  font-weight: 600;
}

.page-news-center-policy-interpretation__article-subheading {
  font-size: 1.8em;
  color: #1a3c8a; /* A darker shade of primary for subheadings */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-news-center-policy-interpretation__article p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-news-center-policy-interpretation__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-news-center-policy-interpretation__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-news-center-policy-interpretation__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-news-center-policy-interpretation__list-item strong {
  color: var(--kkwin-primary);
}

/* Call to Action Banner */
.page-news-center-policy-interpretation__cta-banner {
  background: linear-gradient(90deg, var(--kkwin-primary) 0%, #1a3c8a 100%);
  color: var(--text-light);
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-news-center-policy-interpretation__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-news-center-policy-interpretation__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--kkwin-secondary);
  font-weight: 700;
}

.page-news-center-policy-interpretation__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-news-center-policy-interpretation__cta-button {
  display: inline-block;
  background-color: var(--kkwin-secondary);
  color: var(--kkwin-primary);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-center-policy-interpretation__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news-center-policy-interpretation__cta-button--secondary {
  background-color: transparent;
  border: 2px solid var(--kkwin-secondary);
  color: var(--kkwin-secondary);
}

.page-news-center-policy-interpretation__cta-button--secondary:hover {
  background-color: var(--kkwin-secondary);
  color: var(--kkwin-primary);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news-center-policy-interpretation__hero-title {
    font-size: 2.5em;
  }
  .page-news-center-policy-interpretation__article-heading {
    font-size: 1.8em;
  }
  .page-news-center-policy-interpretation__article-subheading {
    font-size: 1.5em;
  }
  .page-news-center-policy-interpretation__cta-title {
    font-size: 2.2em;
  }
  .page-news-center-policy-interpretation__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-news-center-policy-interpretation__hero-section {
    padding: 60px 0;
  }
  .page-news-center-policy-interpretation__hero-title {
    font-size: 2em;
  }
  .page-news-center-policy-interpretation__hero-description {
    font-size: 1em;
  }
  .page-news-center-policy-interpretation__article {
    padding: 25px;
  }
  .page-news-center-policy-interpretation__article-heading {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-news-center-policy-interpretation__article-subheading {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .page-news-center-policy-interpretation__cta-banner {
    padding: 40px 20px;
  }
  .page-news-center-policy-interpretation__cta-title {
    font-size: 1.8em;
  }
  .page-news-center-policy-interpretation__cta-description {
    font-size: 1em;
  }
  .page-news-center-policy-interpretation__cta-button {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .page-news-center-policy-interpretation__hero-title {
    font-size: 1.8em;
  }
  .page-news-center-policy-interpretation__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-news-center-policy-interpretation__article-heading {
    font-size: 1.4em;
  }
  .page-news-center-policy-interpretation__article-subheading {
    font-size: 1.2em;
  }
  .page-news-center-policy-interpretation__cta-title {
    font-size: 1.5em;
  }
}