/* style/lc88-review.css */

/* Biến CSS */
:root {
  --page-lc88-review-primary-color: #0A2239;
  --page-lc88-review-accent-color: #FFD700;
  --page-lc88-review-text-dark: #333333;
  --page-lc88-review-text-light: #FFFFFF;
  --page-lc88-review-bg-light: #F8F8F8;
  --page-lc88-review-bg-dark: #0A2239;
  --page-lc88-review-button-hover: #E6C200;
}

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

.page-lc88-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-lc88-review__hero {
  background: linear-gradient(135deg, var(--page-lc88-review-bg-dark) 0%, #1A3F60 100%);
  color: var(--page-lc88-review-text-light);
  padding: 100px 0;
  text-align: center;
}

.page-lc88-review__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-lc88-review-accent-color);
  line-height: 1.2;
}

.page-lc88-review__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

/* General Section Styling */
.page-lc88-review__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-lc88-review__section:last-of-type {
  border-bottom: none;
}

.page-lc88-review__section-title {
  font-size: 2.5em;
  color: var(--page-lc88-review-primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-lc88-review__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-lc88-review-accent-color);
  border-radius: 2px;
}

.page-lc88-review__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-lc88-review__content-block--reversed {
  flex-direction: row-reverse;
}

.page-lc88-review__text-content {
  flex: 1;
}

.page-lc88-review__text-content h3 {
  font-size: 1.8em;
  color: var(--page-lc88-review-primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-lc88-review__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-lc88-review__image-wrapper {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

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

/* Buttons */
.page-lc88-review__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-lc88-review__button--primary {
  background-color: var(--page-lc88-review-accent-color);
  color: var(--page-lc88-review-primary-color);
  border: none;
}

.page-lc88-review__button--primary:hover {
  background-color: var(--page-lc88-review-button-hover);
  transform: translateY(-2px);
}

.page-lc88-review__button--secondary {
  background-color: var(--page-lc88-review-primary-color);
  color: var(--page-lc88-review-text-light);
  border: none;
  margin-top: 20px;
}

.page-lc88-review__button--secondary:hover {
  background-color: #1A3F60;
  transform: translateY(-2px);
}

.page-lc88-review__button--link {
  background: none;
  color: var(--page-lc88-review-primary-color);
  border: 1px solid var(--page-lc88-review-primary-color);
  padding: 10px 20px;
  font-size: 1em;
}

.page-lc88-review__button--link:hover {
  background-color: var(--page-lc88-review-primary-color);
  color: var(--page-lc88-review-text-light);
}

/* Detail Pages Grid */
.page-lc88-review__details-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: var(--page-lc88-review-text-dark);
}

.page-lc88-review__details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-lc88-review__detail-item {
  background-color: var(--page-lc88-review-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lc88-review__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-lc88-review__detail-title {
  font-size: 1.5em;
  color: var(--page-lc88-review-primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-lc88-review__detail-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-lc88-review__detail-title a:hover {
  color: var(--page-lc88-review-accent-color);
}

.page-lc88-review__detail-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Conclusion Section */
.page-lc88-review__section--conclusion {
  background-color: var(--page-lc88-review-bg-dark);
  color: var(--page-lc88-review-text-light);
  text-align: center;
  padding: 80px 0;
}

.page-lc88-review__section--conclusion .page-lc88-review__section-title {
  color: var(--page-lc88-review-accent-color);
}

.page-lc88-review__section--conclusion .page-lc88-review__section-title::after {
  background-color: var(--page-lc88-review-text-light);
}

.page-lc88-review__conclusion-text {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.15em;
  line-height: 1.8;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lc88-review__hero-title {
    font-size: 2.5em;
  }

  .page-lc88-review__section-title {
    font-size: 2em;
  }

  .page-lc88-review__content-block {
    flex-direction: column;
    text-align: center;
  }

  .page-lc88-review__content-block--reversed {
    flex-direction: column;
  }

  .page-lc88-review__image-wrapper {
    min-width: unset;
    margin-bottom: 30px;
  }

  .page-lc88-review__text-content h3 {
    font-size: 1.5em;
  }

  .page-lc88-review__details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-lc88-review__hero {
    padding: 80px 20px;
  }

  .page-lc88-review__hero-title {
    font-size: 2em;
  }

  .page-lc88-review__hero-subtitle {
    font-size: 1em;
  }

  .page-lc88-review__section {
    padding: 40px 0;
  }

  .page-lc88-review__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-lc88-review__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-lc88-review__hero-title {
    font-size: 1.8em;
  }

  .page-lc88-review__hero-subtitle {
    font-size: 0.9em;
  }

  .page-lc88-review__section-title {
    font-size: 1.5em;
  }

  .page-lc88-review__text-content h3 {
    font-size: 1.3em;
  }

  .page-lc88-review__detail-title {
    font-size: 1.3em;
  }
}