:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --card-bg: #FFFFFF;
  --background-color: #F4F7FB;
  --text-main-color: #1F2D3D;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  --light-text: #ffffff;
  --dark-text: #333333; /* Default for readability on light backgrounds */
}

.page-blog-f169-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for the page */
  background-color: var(--background-color); /* Page background */
}

/* Hero Section */
.page-blog-f169-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  /* 🚨 页头由 shared 的 body { padding-top: var(--header-offset); } 承担；此处仅用小额顶距，禁止 var(--header-offset) 以免双倍空白 */
  padding-top: 10px; /* Small top padding, body handles main offset */
  background-color: var(--background-color); /* Ensure a consistent background */
  overflow: hidden; /* Prevent content overflow */
}

.page-blog-f169-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain hero image width */
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-f169-latest-promotions-analysis__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum image size */
}

.page-blog-f169-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-f169-latest-promotions-analysis__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main-color);
  margin-bottom: 20px;
  /* 🚨 H1 Font size handled by default browser behavior, not fixed */
  /* If absolutely needed, use clamp, e.g., font-size: clamp(2.5rem, 5vw, 3.5rem); */
}

.page-blog-f169-latest-promotions-analysis__subtitle {
  font-size: 1.15em;
  color: #555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-f169-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-f169-latest-promotions-analysis__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-blog-f169-latest-promotions-analysis__cta-button--small {
  padding: 10px 25px;
  font-size: 0.95em;
  margin-top: 15px;
}

.page-blog-f169-latest-promotions-analysis__cta-button--secondary {
  background: var(--card-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
  margin-left: 15px;
}

.page-blog-f169-latest-promotions-analysis__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--light-text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Main Content Area */
.page-blog-f169-latest-promotions-analysis__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--card-bg); /* Ensure content area has white background */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin-top: -40px; /* Overlap with hero slightly for visual flow */
  position: relative;
  z-index: 10;
}

.page-blog-f169-latest-promotions-analysis__intro-text {
  font-size: 1.05em;
  margin-bottom: 25px;
  color: var(--text-main-color);
}

.page-blog-f169-latest-promotions-analysis__section {
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.page-blog-f169-latest-promotions-analysis__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.page-blog-f169-latest-promotions-analysis__section-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.page-blog-f169-latest-promotions-analysis__section-title:hover {
  color: var(--secondary-color);
}

.page-blog-f169-latest-promotions-analysis__image-text-block {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

.page-blog-f169-latest-promotions-analysis__content-image {
  width: 50%;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum size for content images */
  height: auto;
  object-fit: cover;
}