.page-blog-hm88-web-platform-review {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-blog-hm88-web-platform-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-hm88-web-platform-review__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-hm88-web-platform-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px; /* Space between image and content */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-hm88-web-platform-review__hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%; /* Ensure content takes full width within max-width */
  box-sizing: border-box;
  padding: 0 20px;
}

.page-blog-hm88-web-platform-review__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-hm88-web-platform-review__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.page-blog-hm88-web-platform-review__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-blog-hm88-web-platform-review__dark-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-blog-hm88-web-platform-review__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-hm88-web-platform-review__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #13994A 0%, #2AD16F 100%);
  border-radius: 2px;
}

.page-blog-hm88-web-platform-review__sub-title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #F2C14E; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-hm88-web-platform-review__text-block {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-hm88-web-platform-review__text-block strong {
  color: #F2FFF6; /* Text Main for emphasis */
}