/* style/blog-123win-chinh-thuc-review.css */

/* Global styles for the page scope */
.page-blog-123win-chinh-thuc-review {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Using custom color for main text */
  background-color: var(--background); /* Using custom background color */
}

/* Variables for custom colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Fixed header offset: body already handles padding-top from shared.css */
/* Page sections should only have small padding-top */

.page-blog-123win-chinh-thuc-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-main);
  padding-bottom: 60px; /* Space for content below image */
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden; /* Ensure nothing overflows */
}

.page-blog-123win-chinh-thuc-review__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-blog-123win-chinh-thuc-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Minimum height for hero image */
}

.page-blog-123win-chinh-thuc-review__hero-content {
  position: relative; /* Ensure content is above image if needed for z-index, but not overlapping */
  z-index: 2;
  max-width: 900px;
  margin-top: 40px; /* Space between image and text */
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-123win-chinh-thuc-review__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--gold-color); /* Use gold for main title */
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-123win-chinh-thuc-review__lead-paragraph {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}