/* Homepage hero call-to-action buttons (React hero). */
.ie-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 28px;
}

/* Row 1: the three guide buttons — single line */
.ie-hero-guides-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ie-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 22px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.ie-hero-cta:hover,
.ie-hero-cta:focus {
  text-decoration: none !important;
}

.ie-hero-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  line-height: 0;
}

.ie-hero-cta__icon svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  margin: 0 !important;
  flex-shrink: 0;
}

.ie-hero-cta__label {
  white-space: nowrap;
}

/* Row 2: Join Now — primary button */
.ie-hero-cta--primary {
  background: linear-gradient(to bottom, #3d7ab8, #336699) !important;
  color: #fff !important;
  border-color: #254d73 !important;
  box-shadow: 0 2px 10px rgba(51, 102, 153, 0.35);
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 28px;
  padding: 11px 36px;
}

.ie-hero-cta--primary:hover,
.ie-hero-cta--primary:focus {
  background: linear-gradient(to bottom, #35699f, #295882) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(51, 102, 153, 0.42);
}

.ie-hero-cta--primary .ie-hero-cta__icon {
  color: #fff;
}

.ie-hero-cta--guide {
  background: #fff !important;
  color: #1a2f4a !important;
  border-color: rgba(26, 47, 74, 0.22) !important;
  box-shadow: 0 2px 8px rgba(15, 35, 62, 0.06);
  padding: 10px 16px;
}

.ie-hero-cta--guide:hover,
.ie-hero-cta--guide:focus {
  background: #f8fafc !important;
  border-color: rgba(51, 102, 153, 0.35) !important;
  color: #336699 !important;
  box-shadow: 0 3px 12px rgba(15, 35, 62, 0.1);
}

.ie-hero-cta--guide .ie-hero-cta__icon {
  color: #336699;
}

@media (max-width: 600px) {
  .ie-hero-guides-row {
    gap: 6px;
  }

  .ie-hero-guides-row .ie-hero-cta {
    padding: 9px 12px;
    font-size: 12px;
  }

  .ie-hero-cta--primary {
    width: 100%;
    max-width: 280px;
  }
}
