.opera-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.opera-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 58, 58, 0.55);
}

.opera-modal__panel {
  position: relative;
  background: #FFFFFF;
  border-radius: 10px;
  width: 90%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 1;
}

.opera-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.opera-modal__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-border);
}

.opera-modal__body {
  padding: 20px 24px 28px;
}

.opera-modal__meta {
  margin: 4px 0 16px;
}
