.calendar-help {
  display: grid;
  gap: 24px;
}

.calendar-help__hero,
.calendar-help__card {
  padding: 34px;
  border-radius: 28px;
  background: rgba(244, 241, 234, 0.96);
  border: 1px solid rgba(36, 53, 29, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.calendar-help__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #5f7751;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-help__hero h1,
.calendar-help__card h2 {
  margin: 0 0 14px;
  color: #24351d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.94;
}

.calendar-help__hero h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.calendar-help__card h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.calendar-help__hero p,
.calendar-help__card p,
.calendar-help__steps li {
  color: #4f5a53;
  font-size: 1rem;
  line-height: 1.7;
}

.calendar-help__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.calendar-help__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(36, 53, 29, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #24351d;
  text-decoration: none;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.calendar-help__button:hover,
.calendar-help__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(20, 20, 20, 0.1);
}

.calendar-help__button--primary {
  background: #24351d;
  border-color: #24351d;
  color: #f4f1ea;
}

.calendar-help__feed {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 18px;
}

.calendar-help__feed input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(36, 53, 29, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: #24351d;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 0.94rem;
}

.calendar-help__steps {
  margin: 14px 0 0;
  padding-left: 1.2rem;
}

.calendar-help__steps li + li {
  margin-top: 10px;
}

.calendar-help__status {
  margin-top: 12px;
  color: #24351d;
  font-size: 0.92rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .calendar-help__hero,
  .calendar-help__card {
    padding: 24px;
  }

  .calendar-help__feed {
    flex-direction: column;
  }
}