.upload-size-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: 20px;
}

.upload-size-modal[hidden] {
  display: none;
}

.upload-size-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 42, 40, 0.52);
}

.upload-size-modal__dialog {
  position: relative;
  width: min(100%, 26rem);
  max-height: min(92vh, 640px);
  overflow: auto;
  padding: 24px 22px 22px;
  border-radius: 20px;
  background: #fffaf4;
  border: 1px solid #e8ddd4;
  box-shadow: 0 24px 70px rgba(47, 42, 40, 0.16);
}

.upload-size-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8a7a74;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.upload-size-modal__eyebrow {
  margin: 0 0 6px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b46f72;
  font-weight: 700;
}

.upload-size-modal__title {
  margin: 0 0 10px;
  padding-right: 2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.15;
  color: #201817;
}

.upload-size-modal__lead {
  margin: 0 0 14px;
  color: #6e6260;
  font-size: 0.95rem;
  line-height: 1.55;
}

.upload-size-modal__details {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e8ddd4;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #2f2a28;
}

.upload-size-modal__details strong {
  display: block;
  margin-bottom: 4px;
  word-break: break-word;
}

.upload-size-modal__tips {
  margin: 0 0 18px;
  padding-left: 1.15rem;
  color: #2f2a28;
  font-size: 0.92rem;
  line-height: 1.55;
}

.upload-size-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.upload-size-modal__actions .button,
.upload-size-modal__actions .admin-button {
  flex: 1 1 11rem;
  min-height: 48px;
}

body.upload-size-modal-open {
  overflow: hidden;
}

.admin-shell .upload-size-modal__dialog {
  background: #fff;
  border-color: #eadfd6;
}

.admin-shell .upload-size-modal__title {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .upload-size-modal {
    display: flex;
    align-items: flex-end;
    padding: 0;
  }

  .upload-size-modal__dialog {
    width: 100%;
    max-height: min(92vh, 640px);
    border-radius: 20px 20px 0 0;
    padding: 20px 16px calc(16px + env(safe-area-inset-bottom, 0));
  }

  .upload-size-modal__close {
    top: 8px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }
}
