.calendar-export-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  margin: 16px 0 24px;
  border: 1px solid #cdd8c8;
  border-radius: 16px;
  background: #f0f3e9;
}
.calendar-export-strip h2 {
  margin: 6px 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.calendar-export-strip p {
  max-width: 620px;
  margin: 0;
  color: #4e5d50;
  font-size: 13px;
  line-height: 1.6;
}
.calendar-export-strip button {
  flex-shrink: 0;
  white-space: nowrap;
}
.calendar-export-strip button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.calendar-export-note {
  border-left: 3px solid #a57837;
  padding: 12px 16px;
  background: #faf2e3;
  font-size: 13px;
  line-height: 1.6;
}
.calendar-export-note p {
  margin: 6px 0 0;
}
.calendar-export-preview {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  max-height: 360px;
  overflow: auto;
  border-block: 1px solid #dbe1d5;
}
.calendar-export-preview li {
  padding: 14px 4px;
  border-bottom: 1px solid #e7e9e0;
}
.calendar-export-preview li:last-child {
  border: 0;
}
.calendar-export-preview strong,
.calendar-export-preview span {
  display: block;
}
.calendar-export-preview span,
.calendar-export-preview p {
  font-size: 12px;
  color: #57614f;
  margin: 5px 0 0;
  line-height: 1.5;
}
.calendar-export-download {
  background: #234a39;
  color: #fff;
  padding: 12px 18px;
  border: 1px solid #234a39;
  border-radius: 9px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.calendar-export-download:hover {
  background: #163b2a;
}
.calendar-export-download:focus-visible {
  outline: 3px solid #b07541;
  outline-offset: 3px;
}
.calendar-export-feedback {
  min-height: 1.5em;
  font-size: 13px;
}
@media (max-width: 640px) {
  .calendar-export-strip {
    display: block;
    padding: 18px;
  }
  .calendar-export-strip button {
    margin-top: 14px;
    white-space: normal;
  }
  .calendar-export-preview {
    max-height: 300px;
  }
}
