/* style/blog-how-to-choose-best-promotions.css */

:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --background-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-blog-how-to-choose-best-promotions {
  font-family: Arial, sans-serif;
  color: var(--text-main-color); /* Body background is dark, so text should be light */
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-blog-how-to-choose-best-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for visual */
  overflow: hidden;
}

.page-blog-how-to-choose-best-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit height for aesthetic */
  z-index: 1;
}

.page-blog-how-to-choose-best-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: -150px auto 0 auto; /* Pull content up over image slightly */
  padding: 40px;
  background: rgba(23, 25, 31, 0.9); /* Card BG with transparency */
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.page-blog-how-to-choose-best-promotions__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-blog-how-to-choose-best-promotions__description {
  font-size: clamp(1em, 1.5vw, 1.1em);
  color: var(--text-main-color);
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-blog-how-to-choose-best-promotions__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-best-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-how-to-choose-best-promotions__content-area {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: var(--background-color);
  border-radius: 10px;
}

.page-blog-how-to-choose-best-promotions__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-how-to-choose-best-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.page-blog-how-to-choose-best-promotions__text-block {
  font-size: 1.05em;
  color: var(--text-main-color);
  margin-bottom: 30px;
  text-align: justify;
  opacity: 0.85;
}

.page-blog-how-to-choose-best-promotions__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-blog-how-to-choose-best-promotions__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-how-to-choose-best-promotions__card:hover {
  transform: translateY(-5px);
}

.page-blog-how-to-choose-best-promotions__card-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.page-blog-how-to-choose-best-promotions__card-description {
  font-size: 1em;
  color: var(--text-main-color);
  margin-bottom: 20px;
  opacity: 0.8;
  text-align: justify;
}

.page-blog-how-to-choose-best-promotions__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-how-to-choose-best-promotions__list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 0.95em;
  color: var(--text-main-color);
  opacity: 0.9;
}

.page-blog-how-to-choose-best-promotions__list-item-title {
  color: var(--secondary-color);
  font-size: 1.1em;
  margin-top: 0;
  margin-bottom: 5px;
}

.page-blog-how-to-choose-best-promotions__card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-blog-how-to-choose-best-promotions__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-blog-how-to-choose-best-promotions__info-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-blog-how-to-choose-best-promotions__info-item:hover {
  transform: translateY(-5px);
}

.page-blog-how-to-choose-best-promotions__info-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-choose-best-promotions__info-text {
  font-size: 1em;
  color: var(--text-main-color);
  opacity: 0.85;
  text-align: justify;
}

.page-blog-how-to-choose-best-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-blog-how-to-choose-best-promotions__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.page-blog-how-to-choose-best-promotions__strategy-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.page-blog-how-to-choose-best-promotions__strategy-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-choose-best-promotions__strategy-title {
  font-size: 1.7em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-choose-best-promotions__strategy-text {
  font-size: 1em;
  color: var(--text-main-color);
  opacity: 0.85;
  text-align: justify;
}

.page-blog-how-to-choose-best-promotions__mistake-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.page-blog-how-to-choose-best-promotions__mistake-item {
  background-color: var(--card-bg);
  border: 1px solid var(--deep-orange-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-best-promotions__mistake-title {
  font-size: 1.7em;
  color: var(--deep-orange-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-choose-best-promotions__mistake-text {
  font-size: 1em;
  color: var(--text-main-color);
  opacity: 0.85;
  text-align: justify;
}

.page-blog-how-to-choose-best-promotions__faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: var(--background-color);
  border-radius: 10px;
}

.page-blog-how-to-choose-best-promotions__faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-how-to-choose-best-promotions__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-blog-how-to-choose-best-promotions__faq-item details > summary {
  list-style: none;
}

.page-blog-how-to-choose-best-promotions__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-best-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: var(--secondary-color);
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-how-to-choose-best-promotions__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-how-to-choose-best-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-blog-how-to-choose-best-promotions__faq-item[open] .page-blog-how-to-choose-best-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-choose-best-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-main-color);
  opacity: 0.85;
  text-align: justify;
  background-color: var(--card-bg);
}

.page-blog-how-to-choose-best-promotions__conclusion-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: var(--background-color);
  border-radius: 10px;
}

.page-blog-how-to-choose-best-promotions__cta-wrapper {
  margin-top: 40px;
}

.page-blog-how-to-choose-best-promotions__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-best-promotions__hero-content {
    margin-top: -100px;
    padding: 30px;
  }

  .page-blog-how-to-choose-best-promotions__main-title {
    font-size: 2.8em;
  }

  .page-blog-how-to-choose-best-promotions__description {
    font-size: 1em;
  }

  .page-blog-how-to-choose-best-promotions__section-title {
    font-size: 2em;
  }

  .page-blog-how-to-choose-best-promotions__card-title {
    font-size: 1.6em;
  }

  .page-blog-how-to-choose-best-promotions__info-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-best-promotions__hero-section {
    padding-bottom: 30px;
  }

  .page-blog-how-to-choose-best-promotions__hero-content {
    margin-top: -80px;
    padding: 20px;
    max-width: 95%;
  }

  .page-blog-how-to-choose-best-promotions__main-title {
    font-size: 2.2em;
  }

  .page-blog-how-to-choose-best-promotions__description {
    font-size: 0.95em;
  }

  .page-blog-how-to-choose-best-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-blog-how-to-choose-best-promotions__content-area,
  .page-blog-how-to-choose-best-promotions__faq-section,
  .page-blog-how-to-choose-best-promotions__conclusion-section {
    padding: 20px 15px;
    margin: 20px auto;
  }

  .page-blog-how-to-choose-best-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-choose-best-promotions__text-block {
    font-size: 0.9em;
  }

  .page-blog-how-to-choose-best-promotions__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-choose-best-promotions__card,
  .page-blog-how-to-choose-best-promotions__info-item,
  .page-blog-how-to-choose-best-promotions__strategy-list li,
  .page-blog-how-to-choose-best-promotions__mistake-item,
  .page-blog-how-to-choose-best-promotions__faq-item {
    padding: 20px;
  }

  .page-blog-how-to-choose-best-promotions__card-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-choose-best-promotions__info-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-choose-best-promotions__info-title,
  .page-blog-how-to-choose-best-promotions__strategy-title,
  .page-blog-how-to-choose-best-promotions__mistake-title {
    font-size: 1.4em;
  }

  .page-blog-how-to-choose-best-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-how-to-choose-best-promotions__faq-answer {
    padding: 15px 20px;
  }

  .page-blog-how-to-choose-best-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Mobile image, video, and button adaptation */
  .page-blog-how-to-choose-best-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-choose-best-promotions__section,
  .page-blog-how-to-choose-best-promotions__card,
  .page-blog-how-to-choose-best-promotions__container,
  .page-blog-how-to-choose-best-promotions__info-grid,
  .page-blog-how-to-choose-best-promotions__strategy-list,
  .page-blog-how-to-choose-best-promotions__mistake-list,
  .page-blog-how-to-choose-best-promotions__faq-section,
  .page-blog-how-to-choose-best-promotions__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-blog-how-to-choose-best-promotions__cta-button,
  .page-blog-how-to-choose-best-promotions a[class*="button"],
  .page-blog-how-to-choose-best-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin: 10px 0; /* Add margin for stacked buttons */
  }

  .page-blog-how-to-choose-best-promotions__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}