:root {
  --page-blog-primary-color: #FF8C1A;
  --page-blog-secondary-color: #FFA53A;
  --page-blog-card-bg: #17191F;
  --page-blog-background: #0D0E12;
  --page-blog-text-main: #FFF3E6;
  --page-blog-border-color: #A84F0C;
  --page-blog-glow-color: #FFB04D;
  --page-blog-deep-orange: #D96800;
  --page-blog-dark-text: #333333;
  --page-blog-light-text: #ffffff;
}

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

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

.page-blog__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--page-blog-secondary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-blog__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 60px;
  padding-top: 10px;
}

.page-blog__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.page-blog__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-blog__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: var(--page-blog-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-blog__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog__btn-primary,
.page-blog__btn-secondary,
.page-blog__hero-cta-button,
.page-blog__cta-button,
.page-blog__view-all-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-blog__btn-primary,
.page-blog__hero-cta-button,
.page-blog__cta-button {
  background: linear-gradient(180deg, var(--page-blog-secondary-color) 0%, var(--page-blog-deep-orange) 100%);
  color: var(--page-blog-light-text);
  border: 2px solid transparent;
}

.page-blog__btn-primary:hover,
.page-blog__hero-cta-button:hover,
.page-blog__cta-button:hover {
  background: linear-gradient(180deg, var(--page-blog-deep-orange) 0%, var(--page-blog-secondary-color) 100%);
  box-shadow: 0 0 15px var(--page-blog-glow-color);
}

.page-blog__btn-secondary {
  background: var(--page-blog-background);
  color: var(--page-blog-primary-color);
  border: 2px solid var(--page-blog-primary-color);
}

.page-blog__btn-secondary:hover {
  background: var(--page-blog-primary-color);
  color: var(--page-blog-light-text);
  box-shadow: 0 0 15px var(--page-blog-glow-color);
}

.page-blog__dark-section {
  background-color: var(--page-blog-card-bg);
  color: var(--page-blog-text-main);
  padding: 60px 0;
}

.page-blog__introduction-section,
.page-blog__types-section,
.page-blog__strategy-section,
.page-blog__trends-section,
.page-blog__benefits-section,
.page-blog__platform-section,
.page-blog__featured-posts,
.page-blog__faq-section,
.page-blog__cta-section {
  padding: 60px 0;
}

.page-blog__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--page-blog-text-main);
  text-align: justify;
}

.page-blog__highlight-text {
  color: var(--page-blog-secondary-color);
  font-weight: bold;
}

.page-blog__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog__promo-type-card {
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  background-color: var(--page-blog-card-bg);
  border: 1px solid var(--page-blog-border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog__card-title {
  font-size: 1.5em;
  color: var(--page-blog-primary-color);
  margin-bottom: 15px;
}

.page-blog__card-text {
  font-size: 1em;
  color: var(--page-blog-text-main);
}

.page-blog__strategy-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--page-blog-card-bg);
  border-left: 5px solid var(--page-blog-primary-color);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog__strategy-title {
  font-size: 1.3em;
  color: var(--page-blog-secondary-color);
  margin-bottom: 10px;
}