/**
 * Public Media Files List
 */
.tapestry-pm-media-assets {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  color: #000;
}

.tapestry-pm-media-assets__header {
  margin-bottom: 56px;
  text-align: center;
}

.tapestry-pm-media-assets__title {
  margin: 0 0 12px;
  color: #000;
  font-family: bentonmoddisp-semibolditalic, Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.125rem);
  font-weight: 600;
  letter-spacing: -0.9px;
  line-height: 1.1;
  text-transform: uppercase;
}

.tapestry-pm-media-assets__subtitle {
  margin: 0;
  color: #000;
  font-family: DIN2014-Light, franklin-gothic-regular-body-copy, lucida-grande-regular-body-copy, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.tapestry-pm-media-assets__title:empty::before,
.tapestry-pm-media-assets__subtitle:empty::before {
  color: rgba(0, 0, 0, 0.35);
}

.block-editor-block-list__block .tapestry-pm-media-assets__title[data-rich-text-placeholder]::before,
.block-editor-block-list__block .tapestry-pm-media-assets__subtitle[data-rich-text-placeholder]::before {
  opacity: 1;
}

.tapestry-pm-media-assets__section {
  margin-top: 48px;
}

.tapestry-pm-media-assets__section-title {
  margin: 0 0 32px;
  color: #000;
  font-family: bentonmoddisp-semibolditalic, Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.tapestry-pm-media-assets__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tapestry-pm-media-assets__item {
  margin: 0;
}

.tapestry-pm-media-assets__card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.tapestry-pm-media-assets__card--editor {
  cursor: default;
}

.tapestry-pm-media-assets__figure {
  position: relative;
  margin: 0 0 12px;
  overflow: hidden;
}

.tapestry-pm-media-assets__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.tapestry-pm-media-assets__file-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  margin-bottom: 12px;
  background: #f4f4f4;
  border: 1px solid #cfcdc9;
}

.tapestry-pm-media-assets__file-icon::before {
  color: #221d3e;
  font-family: DIN2014-Bold, franklin-gothic-regular-body-copy, lucida-grande-regular-body-copy, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  content: "File";
}

.tapestry-pm-media-assets__download-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.2s ease;
}

.tapestry-pm-media-assets__download-overlay::before {
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  content: "";
}

.tapestry-pm-media-assets__card:hover .tapestry-pm-media-assets__download-overlay,
.tapestry-pm-media-assets__card:focus-visible .tapestry-pm-media-assets__download-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.tapestry-pm-media-assets__card:hover .tapestry-pm-media-assets__download-overlay::before,
.tapestry-pm-media-assets__card:focus-visible .tapestry-pm-media-assets__download-overlay::before {
  opacity: 1;
}

.tapestry-pm-media-assets__card:hover .tapestry-pm-media-assets__caption,
.tapestry-pm-media-assets__card:focus-visible .tapestry-pm-media-assets__caption {
  color: #0b25a1;
  text-decoration: underline;
}

.tapestry-pm-media-assets__caption {
  display: block;
  color: #0d6efd;
  font-family: DIN2014-Regular, franklin-gothic-regular-body-copy, lucida-grande-regular-body-copy, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: left;
}

.tapestry-pm-media-assets__remove {
  margin-top: 8px;
}

.tapestry-pm-media-assets__empty {
  margin: 0;
  text-align: center;
  font-family: DIN2014-Light, franklin-gothic-regular-body-copy, lucida-grande-regular-body-copy, sans-serif;
  font-size: 1rem;
}

.tapestry-pm-download-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10vh 16px 16px;
}

.tapestry-pm-download-modal[hidden] {
  display: none;
}

.tapestry-pm-download-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.tapestry-pm-download-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  margin: 0;
  padding: 32px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.tapestry-pm-download-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.tapestry-pm-download-modal__title {
  margin: 0 0 24px;
  padding-right: 32px;
  font-family: bentonmoddisp-semibolditalic, Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.tapestry-pm-download-modal__field {
  display: block;
  margin-bottom: 16px;
}

.tapestry-pm-download-modal__label {
  display: block;
  margin-bottom: 6px;
  font-family: DIN2014-Bold, franklin-gothic-regular-body-copy, lucida-grande-regular-body-copy, sans-serif;
  font-size: 0.875rem;
}

.tapestry-pm-download-modal__field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfcdc9;
  font-size: 1rem;
}

.tapestry-pm-download-modal__error {
  margin: 0 0 16px;
  color: #b42318;
  font-size: 0.875rem;
}

.tapestry-pm-download-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.tapestry-pm-download-modal__button {
  padding: 10px 18px;
  border: 1px solid #221d3e;
  background: #221d3e;
  color: #fff;
  font-family: DIN2014-Bold, franklin-gothic-regular-body-copy, lucida-grande-regular-body-copy, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.tapestry-pm-download-modal__button--secondary {
  background: #fff;
  color: #221d3e;
}

.tapestry-pm-download-modal__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

body.tapestry-pm-download-modal-open {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .tapestry-pm-media-assets {
    padding: 48px 16px 72px;
  }
  .tapestry-pm-media-assets__header {
    margin-bottom: 40px;
  }
  .tapestry-pm-media-assets__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
