.time-to-complete-text strong {
  font-weight: 700;
  color: rgb(4 120 53 / var(--tw-text-opacity, 1));
}

/* --- Share modal (ref: ../static-markup-ref/src/components/share-modal/share-modal.html) --- */
.modal {
  font-family: HelveticaNowText, sans-serif;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal__container {
  background-color: #fff;
  padding: 40px;
  width: 90%;
  max-width: 650px;
  max-height: 90vh;
  border-radius: 12px;
  overflow-y: auto;
  box-sizing: border-box;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.modal__header h3 {
  margin: 0;
  color: #047835;
  font-family: Domaine, serif;
}
.modal__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  width: 24px;
  height: 24px;
}
.modal__close:before,
.modal__close:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 24px;
  background-color: #4b5563;
  left: 12px;
  top: 0;
}
.modal__close:before {
  transform: rotate(45deg);
}
.modal__close:after {
  transform: rotate(-45deg);
}
.share-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.share-button {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
  background-color: #fff;
  color: #1f2937;
}
.share-button:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.share-button:active {
  transform: translateY(0);
  box-shadow: none;
}
.share-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
/* Animation classes */
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .modal__container {
    padding: 30px 20px;
  }
  .share-options {
    grid-template-columns: 1fr;
  }
}
/* --- End of Share modal styles --- */

/* -- Image Viewere Modal styles START --- */
#image-viewer-modal .modal__header {
  position: fixed;
  top: 20px;
  right: 20px;
  margin: 0;
  z-index: 1;
}
.image-viewer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 90vh;
  overflow: hidden;
}
.image-viewer-content img {
  max-height: 90vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
#modal-image {
  max-height: 90vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
}
/* --- Image Viewere Modal styles END --- */
