/* ============================================================
   E-QUAL GUIDE PAGE
   ============================================================ */

/* --- Hero --- */
.eq-hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a2332 40%, #1f1a2e 100%);
  color: var(--color-white);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eq-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 25% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 30%, rgba(178, 34, 52, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.eq-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.eq-breadcrumb {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  transition: color 0.2s;
}

.eq-breadcrumb:hover {
  color: var(--color-gold);
  text-decoration: none;
}

.eq-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 8px;
}

.eq-hero h1 .accent {
  color: var(--color-gold);
}

.eq-hero .subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.eq-hero .intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

/* --- Body --- */
.eq-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Table of Contents --- */
.eq-toc {
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 48px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.eq-toc h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
  margin-bottom: 16px;
}

.eq-toc ol {
  padding-left: 24px;
  margin: 0;
  columns: 2;
  column-gap: 32px;
}

.eq-toc li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  break-inside: avoid;
}

.eq-toc a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.eq-toc a:hover {
  color: var(--color-red);
}

/* --- 2026 Election Timeline --- */
.eq-timeline {
  background: linear-gradient(135deg, var(--color-blue) 0%, #2a2960 100%);
  border-radius: 10px;
  padding: 32px 32px 28px;
  margin: 48px 0 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.eq-timeline::before {
  content: '2026';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  opacity: 0.06;
  line-height: 1;
  color: var(--color-white);
  user-select: none;
}

.eq-timeline-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.eq-timeline-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.5;
}

.eq-timeline-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.eq-timeline-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

.eq-timeline-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 20px;
}

.eq-timeline-item::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.eq-timeline-item--active::before {
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: 0 0 12px rgba(178, 34, 52, 0.6);
  animation: timeline-pulse 2s ease-in-out infinite;
}

.eq-timeline-item--primary::before {
  background: var(--color-gold);
  border-color: var(--color-gold);
  width: 14px;
  height: 14px;
  top: 21px;
}

@keyframes timeline-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(178, 34, 52, 0.4); }
  50% { box-shadow: 0 0 18px rgba(178, 34, 52, 0.8); }
}

.eq-timeline-date {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-top: 18px;
}

.eq-timeline-item--active .eq-timeline-date {
  color: var(--color-red);
}

.eq-timeline-item--primary .eq-timeline-date {
  color: var(--color-gold);
  font-size: 1rem;
}

.eq-timeline-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  line-height: 1.4;
}

.eq-timeline-detail {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.eq-timeline-item--active .eq-timeline-detail {
  color: rgba(178, 34, 52, 0.8);
  font-weight: 700;
}

/* --- Sections --- */
.eq-section {
  padding: 48px 0;
  position: relative;
}

.eq-section-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-red);
  opacity: 0.12;
  position: absolute;
  top: 40px;
  right: 0;
  line-height: 1;
  user-select: none;
}

.eq-section h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.eq-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-blue);
  margin: 28px 0 12px;
}

.eq-section p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 14px;
}

.eq-section ul {
  padding-left: 24px;
  margin-bottom: 16px;
  color: #333;
  line-height: 1.7;
}

.eq-section li {
  margin-bottom: 8px;
}

.eq-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  margin: 0;
}

/* --- Callout Boxes --- */
.eq-callout {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 6px;
  margin: 24px 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #333;
}

.eq-callout-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.eq-callout ul {
  margin-top: 8px;
  margin-bottom: 0;
}

.eq-callout--info {
  background: rgba(60, 59, 110, 0.07);
  border-left: 4px solid var(--color-blue);
}

.eq-callout--info .eq-callout-icon {
  color: var(--color-blue);
}

.eq-callout--tip {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--color-gold);
}

.eq-callout--tip .eq-callout-icon {
  color: var(--color-gold);
}

.eq-callout--warn {
  background: rgba(178, 34, 52, 0.06);
  border-left: 4px solid var(--color-red);
}

.eq-callout--warn .eq-callout-icon {
  color: var(--color-red);
}

.eq-callout--urgent {
  background: linear-gradient(135deg, rgba(178, 34, 52, 0.08), rgba(178, 34, 52, 0.04));
  border-left: 4px solid var(--color-red);
  border: 2px solid var(--color-red);
  border-left-width: 6px;
  position: relative;
}

.eq-callout--urgent .eq-callout-icon {
  color: var(--color-red);
  font-size: 1.6rem;
}

/* --- Requirements Cards --- */
.eq-requirements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.eq-req-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.eq-req-header {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-gold);
}

.eq-req-desc {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  margin-bottom: 8px;
}

.eq-req-card ul {
  padding-left: 18px;
  margin: 0;
}

.eq-req-card li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* --- Steps --- */
.eq-steps {
  margin: 24px 0;
}

.eq-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.eq-step:last-child {
  border-bottom: none;
}

.eq-step-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-blue);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.eq-step-content {
  flex: 1;
}

.eq-step-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.eq-step-content p {
  margin-bottom: 12px;
}

/* --- Screenshot Placeholders --- */
.eq-screenshot-placeholder {
  background: linear-gradient(135deg, #e8e0d0, #ddd5c4);
  border: 2px dashed var(--color-gold);
  border-radius: 8px;
  padding: 48px 24px;
  margin: 16px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eq-screenshot-placeholder::before {
  content: '\1F4F7';
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  opacity: 0.5;
}

.eq-placeholder-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: #888;
}

/* --- Screenshot Images (replaces placeholders) --- */
.eq-screenshot {
  margin: 16px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.eq-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.eq-screenshot-caption {
  background: rgba(60, 59, 110, 0.06);
  padding: 10px 16px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

/* --- Form Preview --- */
.eq-form-preview {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.eq-form-preview h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 16px;
}

.eq-form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eq-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f6f0;
  padding: 10px 16px;
  border-radius: 4px;
  border-left: 3px solid var(--color-blue);
}

.eq-field--option-a {
  border-left-color: var(--color-gold);
}

.eq-field--option-b {
  border-left-color: var(--color-red);
}

.eq-field-label {
  font-size: 0.9rem;
  color: #333;
}

.eq-field-req {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-red);
  background: rgba(178, 34, 52, 0.08);
  padding: 2px 8px;
  border-radius: 3px;
}

.eq-field-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  background: rgba(60, 59, 110, 0.08);
  padding: 2px 8px;
  border-radius: 3px;
}

.eq-field-divider {
  padding: 12px 16px 4px;
  font-size: 0.9rem;
  color: #555;
}

.eq-field-or {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: #999;
  padding: 4px 0;
  letter-spacing: 0.1em;
}

/* --- Example Table --- */
.eq-table-example {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.eq-table-header-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
  background: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eq-table-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.88rem;
  align-items: center;
}

.eq-table-row:last-of-type {
  border-bottom: none;
}

.eq-candidate-name {
  font-weight: 700;
  color: var(--color-blue);
}

.eq-party {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 3px;
  text-align: center;
}

.eq-party--dem {
  background: rgba(0, 100, 200, 0.1);
  color: #0056b3;
}

.eq-party--rep {
  background: rgba(200, 0, 0, 0.1);
  color: #c00;
}

.eq-party--none {
  background: rgba(0, 0, 0, 0.06);
  color: #666;
}

.eq-status {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 9999px;
  text-align: center;
  font-weight: 600;
}

.eq-status--open {
  background: #e6f4ea;
  color: #1e7e34;
}

.eq-status--signed {
  background: rgba(60, 59, 110, 0.1);
  color: var(--color-blue);
}

.eq-status--closed {
  background: rgba(0, 0, 0, 0.06);
  color: #666;
}

.eq-table-note {
  padding: 10px 16px;
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.82rem;
  color: #666;
  font-style: italic;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Status Grid --- */
.eq-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.eq-status-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.eq-status-badge {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.eq-status-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.eq-status-card--open .eq-status-badge {
  background: #e6f4ea;
  color: #1e7e34;
}

.eq-status-card--signed .eq-status-badge {
  background: rgba(60, 59, 110, 0.1);
  color: var(--color-blue);
}

.eq-status-card--closed-candidate .eq-status-badge {
  background: rgba(0, 0, 0, 0.06);
  color: #666;
}

.eq-status-card--closed-max .eq-status-badge {
  background: rgba(178, 34, 52, 0.08);
  color: var(--color-red);
}

.eq-status-card--maxed-out .eq-status-badge {
  background: rgba(212, 175, 55, 0.15);
  color: #8a7020;
}

.eq-status-card--redistricted .eq-status-badge {
  background: rgba(0, 0, 0, 0.08);
  color: #555;
}

/* --- Rules Grid --- */
.eq-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.eq-rule {
  background: var(--color-white);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.eq-rule h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-red);
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}

.eq-rule p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 8px;
}

.eq-rule p:last-child {
  margin-bottom: 0;
}

.eq-rule ul {
  padding-left: 18px;
  margin-bottom: 8px;
}

.eq-rule li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 4px;
}

.eq-rule--highlight {
  border: 2px solid var(--color-gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), var(--color-white));
  grid-column: 1 / -1;
}

.eq-rule--highlight h3 {
  color: var(--color-gold);
}

/* --- FAQ --- */
.eq-faq {
  margin: 24px 0;
}

.eq-faq-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.eq-faq-item summary {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-blue);
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.eq-faq-item summary::-webkit-details-marker {
  display: none;
}

.eq-faq-item summary::before {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}

.eq-faq-item[open] summary::before {
  content: '\2212';
  background: var(--color-gold);
  color: var(--color-white);
}

.eq-faq-item summary:hover {
  background: rgba(60, 59, 110, 0.03);
}

.eq-faq-item p {
  padding: 0 20px 16px 60px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* --- CTA --- */
.eq-cta {
  text-align: center;
  padding: 56px 0;
}

.eq-cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 12px;
}

.eq-cta p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

.eq-cta .btn {
  font-size: 1.1rem;
  padding: 14px 36px;
}

.eq-cta-sub {
  margin-top: 20px;
}

.eq-cta-sub a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
}

.eq-cta-sub a:hover {
  color: var(--color-red);
}

/* --- Copy Bar & Buttons --- */
.eq-copy-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.eq-copy-bar .btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 9999px;
  border: 2px solid var(--color-blue);
  background: white;
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
}

.eq-copy-bar .btn-copy:hover {
  background: var(--color-blue);
  color: white;
}

.eq-copy-bar .btn-copy.copied {
  background: #166534;
  border-color: #166534;
  color: white;
}

.eq-copy-bar .btn-copy-link {
  border-color: #2d6a4f;
  color: #2d6a4f;
}

.eq-copy-bar .btn-copy-link:hover {
  background: #2d6a4f;
  border-color: #2d6a4f;
  color: white;
}

/* --- Responsive --- */
@media (max-width: 1023px) {
  .eq-requirements {
    grid-template-columns: 1fr;
  }

  .eq-toc ol {
    columns: 1;
  }

  .eq-timeline-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }

  .eq-timeline-track::before {
    display: none;
  }
}

@media (max-width: 639px) {
  .eq-timeline {
    padding: 24px 20px;
  }

  .eq-timeline-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }

  .eq-timeline-track::before {
    display: none;
  }

  .eq-timeline::before {
    font-size: 4rem;
  }

  .eq-hero {
    padding: 48px 16px 40px;
  }

  .eq-hero h1 {
    font-size: 2.2rem;
  }

  .eq-hero .intro-text {
    font-size: 0.95rem;
  }

  .eq-body {
    padding: 0 16px;
  }

  .eq-toc {
    padding: 20px 24px;
    margin: 32px 0;
  }

  .eq-section {
    padding: 32px 0;
  }

  .eq-section-number {
    font-size: 2.5rem;
  }

  .eq-step {
    flex-direction: column;
    gap: 12px;
  }

  .eq-step-num {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .eq-table-header-row,
  .eq-table-row {
    grid-template-columns: 2fr 1fr 1fr;
    font-size: 0.78rem;
  }

  .eq-table-header-row span:nth-child(2),
  .eq-table-header-row span:nth-child(3),
  .eq-table-row span:nth-child(2),
  .eq-table-row span:nth-child(3) {
    display: none;
  }

  .eq-status-grid,
  .eq-rules-grid {
    grid-template-columns: 1fr;
  }

  .eq-form-preview {
    padding: 16px;
  }

  .eq-cta {
    padding: 40px 0;
  }

  .eq-cta h2 {
    font-size: 1.6rem;
  }
}
