.page-index-tt88-latest-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-tt88-latest-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-tt88-latest-news__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF4500, #FFD700);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-tt88-latest-news__hero-content {
  max-width: 600px;
  z-index: 1;
  margin-bottom: 40px;
}

.page-index-tt88-latest-news__hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-tt88-latest-news__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-tt88-latest-news__hero-image-wrapper {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.page-index-tt88-latest-news__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-index-tt88-latest-news__section {
  padding: 60px 0;
}

.page-index-tt88-latest-news__section h2 {
  font-size: 2.5em;
  color: #FF4500;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-tt88-latest-news__section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-tt88-latest-news__section p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.page-index-tt88-latest-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-tt88-latest-news__grid--two-col {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  text-align: left;
}

.page-index-tt88-latest-news__grid--reverse {
  flex-direction: row-reverse;
}

.page-index-tt88-latest-news__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-tt88-latest-news__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-tt88-latest-news__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-tt88-latest-news__card h3 {
  color: #FF4500;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-tt88-latest-news__card p {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
  text-align: left;
}

.page-index-tt88-latest-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-index-tt88-latest-news__btn--primary {
  background-color: #FF4500;
  color: #fff;
  border: 2px solid #FF4500;
}

.page-index-tt88-latest-news__btn--primary:hover {
  background-color: #e63900;
  border-color: #e63900;
  transform: translateY(-2px);
}

.page-index-tt88-latest-news__btn--secondary {
  background-color: transparent;
  color: #FF4500;
  border: 2px solid #FF4500;
}

.page-index-tt88-latest-news__btn--secondary:hover {
  background-color: #FF4500;
  color: #fff;
  transform: translateY(-2px);
}

.page-index-tt88-latest-news__text-center {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #444;
}

.page-index-tt88-latest-news__content-block {
  padding: 20px;
}

.page-index-tt88-latest-news__content-block h3 {
  color: #FF4500;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.page-index-tt88-latest-news__content-block p {
  text-align: left;
  color: #555;
  margin-bottom: 20px;
}

.page-index-tt88-latest-news__content-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-tt88-latest-news__content-block ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.page-index-tt88-latest-news__content-block ul li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-tt88-latest-news__image-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-index-tt88-latest-news__blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-tt88-latest-news__blog-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-tt88-latest-news__blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-tt88-latest-news__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-index-tt88-latest-news__blog-card h3 {
  color: #FF4500;
  font-size: 1.4em;
  margin: 20px 20px 10px;
}

.page-index-tt88-latest-news__blog-card p {
  color: #666;
  font-size: 0.95em;
  margin: 0 20px 20px;
  text-align: left;
}

.page-index-tt88-latest-news__read-more {
  display: inline-block;
  color: #007bff; /* A contrasting blue for links */
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
}

.page-index-tt88-latest-news__read-more:hover {
  text-decoration: underline;
}

.page-index-tt88-latest-news__guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-tt88-latest-news__guide-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-index-tt88-latest-news__guide-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-tt88-latest-news__guide-item h4 {
  color: #FF4500;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index-tt88-latest-news__guide-item p {
  color: #666;
  font-size: 0.9em;
  text-align: center;
  margin-bottom: 0;
}

.page-index-tt88-latest-news__cta-banner {
  background: linear-gradient(90deg, #FF4500, #FFD700);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-tt88-latest-news__cta-content {
  z-index: 2;
  position: relative;
}

.page-index-tt88-latest-news__cta-banner h2 {
  color: #fff;
  font-size: 2.8em;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-index-tt88-latest-news__cta-banner p {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-index-tt88-latest-news__cta-banner .page-index-tt88-latest-news__btn {
  margin: 0 10px;
}

.page-index-tt88-latest-news__cta-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  width: 300px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-tt88-latest-news__hero-content {
    margin-bottom: 30px;
  }

  .page-index-tt88-latest-news__hero h1 {
    font-size: 2.5em;
  }

  .page-index-tt88-latest-news__hero p {
    font-size: 1.1em;
  }

  .page-index-tt88-latest-news__grid--two-col {
    grid-template-columns: 1fr;
  }

  .page-index-tt88-latest-news__grid--reverse {
    flex-direction: column;
  }

  .page-index-tt88-latest-news__content-block, .page-index-tt88-latest-news__image-block {
    padding: 10px;
  }

  .page-index-tt88-latest-news__cta-banner h2 {
    font-size: 2.2em;
  }

  .page-index-tt88-latest-news__cta-banner p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-tt88-latest-news__hero {
    flex-direction: column;
    padding: 40px 15px;
  }

  .page-index-tt88-latest-news__hero-content {
    order: 2;
    margin-bottom: 0;
  }

  .page-index-tt88-latest-news__hero-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }

  .page-index-tt88-latest-news__hero h1 {
    font-size: 2em;
  }

  .page-index-tt88-latest-news__hero p {
    font-size: 1em;
  }

  .page-index-tt88-latest-news__section {
    padding: 40px 0;
  }

  .page-index-tt88-latest-news__section h2 {
    font-size: 2em;
  }

  .page-index-tt88-latest-news__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-index-tt88-latest-news__blog-posts, .page-index-tt88-latest-news__guide-list {
    grid-template-columns: 1fr;
  }

  .page-index-tt88-latest-news__cta-banner h2 {
    font-size: 1.8em;
  }

  .page-index-tt88-latest-news__cta-banner p {
    font-size: 1em;
  }

  .page-index-tt88-latest-news__cta-banner .page-index-tt88-latest-news__btn {
    margin: 10px 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-index-tt88-latest-news__hero h1 {
    font-size: 1.8em;
  }

  .page-index-tt88-latest-news__section h2 {
    font-size: 1.8em;
  }

  .page-index-tt88-latest-news__card-image {
    height: 150px;
  }

  .page-index-tt88-latest-news__blog-image {
    height: 180px;
  }

  .page-index-tt88-latest-news__cta-banner h2 {
    font-size: 1.5em;
  }
}