/* style/blog-2024-55cv-exclusive-promotions-analysis.css */

:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-card-bg: #11271B;
  --page-background: #08160F;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-border-color: #2E7A4E;
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green-color: #0A4B2C;
}

.page-blog-2024-55cv-exclusive-promotions-analysis {
  color: var(--page-text-main); /* Default text color for the page */
  background-color: var(--page-background);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--page-background);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Adjust to pull content up without overlapping image text */
  background: rgba(8, 22, 15, 0.8); /* Semi-transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--page-text-main);
  margin-bottom: 15px;
  max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-blog-2024-55cv-exclusive-promotions-analysis__hero-description {
  font-size: 1.1em;
  color: var(--page-text-secondary);
  margin-bottom: 30px;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__btn-primary,
.page-blog-2024-55cv-exclusive-promotions-analysis__btn-secondary,
.page-blog-2024-55cv-exclusive-promotions-analysis__card-button {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  display: inline-block;
  text-align: center;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__btn-secondary {
  background: transparent;
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__btn-secondary:hover {
  background: var(--page-primary-color);
  color: #ffffff;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--page-background);
  color: var(--page-text-main);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__section-title {
  color: var(--page-text-main);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--page-primary-color);
  border-radius: 2px;
}

.page-blog-2024-55cv-exclusive-promotions-analysis p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--page-text-secondary);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__promotions-grid,
.page-blog-2024-55cv-exclusive-promotions-analysis__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__card {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__card:hover {
  transform: translateY(-5px);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__card-image,
.page-blog-2024-55cv-exclusive-promotions-analysis__card-icon {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__card-title {
  color: var(--page-text-main);
  font-weight: bold;
  margin-bottom: 10px;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__card-description {
  color: var(--page-text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__card-button {
  background: var(--page-primary-color);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__card-button:hover {
  background: var(--page-secondary-color);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 40px;
  color: var(--page-text-secondary);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__ordered-list li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__ordered-list strong {
  color: var(--page-text-main);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: var(--page-text-main);
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-2024-55cv-exclusive-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__faq-item[open] > .page-blog-2024-55cv-exclusive-promotions-analysis__faq-question {
  background-color: var(--page-deep-green-color);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-primary-color);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--page-text-secondary);
  line-height: 1.6;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: var(--page-deep-green-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__cta-bottom .page-blog-2024-55cv-exclusive-promotions-analysis__section-title {
  color: var(--page-text-main);
  margin-bottom: 20px;
}

.page-blog-2024-55cv-exclusive-promotions-analysis__cta-bottom .page-blog-2024-55cv-exclusive-promotions-analysis__section-title::after {
  background: var(--page-gold-color);
}

.page-blog-2024-55cv-exclusive-promotions-analysis__cta-bottom p {
  color: var(--page-text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-2024-55cv-exclusive-promotions-analysis__hero-content {
    margin-top: -100px;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-blog-2024-55cv-exclusive-promotions-analysis__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__hero-content {
    margin-top: -80px;
    padding: 15px;
    max-width: 95%;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__main-title {
    font-size: 1.8em;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__hero-description {
    font-size: 1em;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__btn-primary,
  .page-blog-2024-55cv-exclusive-promotions-analysis__btn-secondary,
  .page-blog-2024-55cv-exclusive-promotions-analysis__card-button {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__content-area {
    padding: 40px 15px;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__container {
    padding: 0 10px;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__section-title {
    font-size: 1.5em;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__section,
  .page-blog-2024-55cv-exclusive-promotions-analysis__card,
  .page-blog-2024-55cv-exclusive-promotions-analysis__container,
  .page-blog-2024-55cv-exclusive-promotions-analysis__promotions-grid,
  .page-blog-2024-55cv-exclusive-promotions-analysis__features-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-2024-55cv-exclusive-promotions-analysis__hero-content {
    margin-top: -60px;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__main-title {
    font-size: 1.5em;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__hero-description {
    font-size: 0.9em;
  }
  .page-blog-2024-55cv-exclusive-promotions-analysis__section-title {
    font-size: 1.3em;
  }
}