/* ============================================================
   Quiz CTA — link/banner styles for quiz promotion across site
   ============================================================ */

/* Inline quiz link (used in service-cta__actions, article__cta) */
.quiz-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary, 'Golos Text', sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: #8c7b63;
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid rgba(140,123,99,0.3);
  border-radius: 12px;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.quiz-cta-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@media (hover: hover) {
  .quiz-cta-link:hover {
    border-color: #8c7b63;
    background: rgba(140,123,99,0.06);
    color: #6b5d4a;
  }
}

/* Banner variant (used on prices page) */
.quiz-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(140,123,99,0.06);
  border: 1px solid rgba(140,123,99,0.15);
  border-radius: 16px;
  padding: 24px;
}

.quiz-cta-banner__text {
  flex: 1;
  min-width: 0;
}

.quiz-cta-banner__text h3 {
  font-family: var(--font-display, 'Lora', serif);
  font-size: 20px;
  font-weight: 400;
  color: #1c1a15;
  margin: 0 0 6px;
}

.quiz-cta-banner__text p {
  font-family: var(--font-primary, 'Golos Text', sans-serif);
  font-size: 14px;
  color: #78736a;
  margin: 0;
  line-height: 1.5;
}

.quiz-cta-banner .quiz-cta-link {
  flex-shrink: 0;
  background: linear-gradient(135deg, #2c2620 0%, #3d3428 100%);
  color: #faf8f4;
  border-color: transparent;
  padding: 14px 24px;
  font-size: 15px;
}

@media (hover: hover) {
  .quiz-cta-banner .quiz-cta-link:hover {
    background: linear-gradient(135deg, #3d3428 0%, #4e4538 100%);
    color: #fff;
    border-color: transparent;
  }
}

@media (max-width: 600px) {
  .quiz-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }

  .quiz-cta-banner .quiz-cta-link {
    width: 100%;
    justify-content: center;
  }
}
