:root {
  --cwin01-primary: #FF8C1A;
  --cwin01-secondary: #FFA53A;
  --cwin01-card-bg: #17191F;
  --cwin01-background: #0D0E12;
  --cwin01-text-main: #FFF3E6;
  --cwin01-border: #A84F0C;
  --cwin01-glow: #FFB04D;
  --cwin01-deep-orange: #D96800;
}

.page-blog {
  background-color: var(--cwin01-background);
  color: var(--cwin01-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-blog__section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--cwin01-primary);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cwin01-primary), transparent);
  border-radius: 2px;
}

.page-blog__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog__hero-section {
  padding-top: 10px; /* Consistent with fixed header spacing rule */
  position: relative;
  overflow: hidden;
  background-color: var(--cwin01-background);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog__hero-image {
  width: 100%;
  max-height: 600px; /* Limit height for desktop */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog__hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog__hero-content {
  padding: 40px 15px;
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.page-blog__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Using clamp for H1 */
  font-weight: 800;
  color: var(--cwin01-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}