/* style/blog-phdream-promo-strategy.css */

:root {
  --phdream-primary: #F2C14E;
  --phdream-secondary: #FFD36B;
  --phdream-bg-dark: #0A0A0A;
  --phdream-card-bg: #111111;
  --phdream-text-main: #FFF6D6;
  --phdream-border: #3A2A12;
  --phdream-glow: #FFD36B;
  --phdream-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

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

.page-blog-phdream-promo-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  background-color: var(--phdream-card-bg);
  overflow: hidden;
}

.page-blog-phdream-promo-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-phdream-promo-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-phdream-promo-strategy__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 15px;
  z-index: 1;
}

.page-blog-phdream-promo-strategy__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--phdream-primary);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-blog-phdream-promo-strategy__hero-description {
  font-size: 1.1rem;
  color: var(--phdream-text-main);
  margin-bottom: 30px;
}

.page-blog-phdream-promo-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--phdream-bg-dark);
  color: var(--phdream-text-main);
}

.page-blog-phdream-promo-strategy__section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-phdream-promo-strategy__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--phdream-primary);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-phdream-promo-strategy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--phdream-secondary);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-phdream-promo-strategy__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--phdream-text-main);
}

.page-blog-phdream-promo-strategy__btn-primary,
.page-blog-phdream-promo-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-phdream-promo-strategy__btn-primary {
  background: var(--phdream-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 0 15px var(--phdream-glow-rgba-03);
}

.page-blog-phdream-promo-strategy__btn-primary:hover {
  background: linear-gradient(180deg, #FFE07A 0%, #E8B02D 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--phdream-glow-rgba-05);
}

.page-blog-phdream-promo-strategy__btn-secondary {
  background: transparent;
  color: var(--phdream-primary);
  border: 2px solid var(--phdream-primary);
}

.page-blog-phdream-promo-strategy__btn-secondary:hover {
  background: var(--phdream-primary);
  color: var(--phdream-bg-dark);
  transform: translateY(-2px);
}

.page-blog-phdream-promo-strategy__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-phdream-promo-strategy__image-card {
  background-color: var(--phdream-card-bg);
  border: 1px solid var(--phdream-border);
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-blog-phdream-promo-strategy__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-blog-phdream-promo-strategy__image-caption {
  font-size: 0.9rem;
  color: var(--phdream-text-main);
  opacity: 0.8;
}

/* FAQ Section Styles */
.page-blog-phdream-promo-strategy__faq-section {
  padding: 60px 20px;
  background-color: var(--phdream-bg-dark);
  color: var(--phdream-text-main);
}

.page-blog-phdream-promo-strategy__faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--phdream-border);
}

.page-blog-phdream-promo-strategy__faq-item {
  border-bottom: 1px solid var(--phdream-border);
}

.page-blog-phdream-promo-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-blog-phdream-promo-strategy__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-phdream-promo-strategy__faq-title {
  font-size: 1.2rem;
  color: var(--phdream-text-main);
  margin: 0;
}

.page-blog-phdream-promo-strategy__faq-toggle {
  font-size: 1.5rem;
  color: var(--phdream-primary);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-blog-phdream-promo-strategy__faq-item.active .page-blog-phdream-promo-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-phdream-promo-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--phdream-text-main);
}

.page-blog-phdream-promo-strategy__faq-item.active .page-blog-phdream-promo-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px;
}

.page-blog-phdream-promo-strategy__faq-answer p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-phdream-promo-strategy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding on mobile */
  }

  .page-blog-phdream-promo-strategy__hero-content {
    padding: 0 10px;
  }

  .page-blog-phdream-promo-strategy__main-title {
    font-size: 1.8rem;
  }

  .page-blog-phdream-promo-strategy__hero-description {
    font-size: 1rem;
  }

  .page-blog-phdream-promo-strategy__section-title {
    font-size: 1.6rem;
  }

  .page-blog-phdream-promo-strategy__sub-title {
    font-size: 1.3rem;
  }

  .page-blog-phdream-promo-strategy__text-block,
  .page-blog-phdream-promo-strategy__image-caption,
  .page-blog-phdream-promo-strategy__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-phdream-promo-strategy__btn-primary,
  .page-blog-phdream-promo-strategy__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-phdream-promo-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-phdream-promo-strategy__content-area,
  .page-blog-phdream-promo-strategy__faq-section {
    padding: 30px 15px;
  }

  .page-blog-phdream-promo-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-phdream-promo-strategy__section,
  .page-blog-phdream-promo-strategy__card,
  .page-blog-phdream-promo-strategy__container,
  .page-blog-phdream-promo-strategy__image-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-phdream-promo-strategy__faq-question {
    padding: 15px 0;
  }

  .page-blog-phdream-promo-strategy__faq-title {
    font-size: 1.1rem;
  }

  .page-blog-phdream-promo-strategy__faq-answer {
    padding: 0 10px;
  }

  .page-blog-phdream-promo-strategy__faq-item.active .page-blog-phdream-promo-strategy__faq-answer {
    padding: 10px;
  }

  .page-blog-phdream-promo-strategy__text-block {
    padding: 0;
  }
}