.managed-empty-state {
  padding: 26px 28px;
  border: 1px dashed rgba(47, 51, 119, 0.18);
  border-radius: 24px;
  color: #666d82;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.6);
}

.managed-news-card {
  overflow: hidden;
}

.managed-news-archive-list {
  display: grid;
  gap: 0;
}

.managed-news-summary-layout {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.managed-news-summary-layout.is-placeholder {
  grid-template-columns: 156px minmax(0, 1fr);
}

.managed-news-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 156px;
  height: 156px;
  padding: 0;
  border-radius: 14px;
  background: transparent;
  border: 0;
  text-decoration: none;
  overflow: hidden;
}

.managed-news-thumb--placeholder {
  color: #69718d;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.managed-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}

.managed-news-summary-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  height: 156px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 51, 119, 0.25) transparent;
}

.managed-news-summary-copy::-webkit-scrollbar {
  width: 6px;
}

.managed-news-summary-copy::-webkit-scrollbar-thumb {
  background: rgba(47, 51, 119, 0.24);
  border-radius: 999px;
}

.managed-news-card--summary .timeline-title {
  max-width: none;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.managed-news-card--summary .timeline-meta {
  margin-bottom: 8px;
}

.managed-news-card--summary {
  padding-top: 16px;
  padding-bottom: 16px;
}

.managed-news-card--summary .dot {
  top: 50%;
}

.managed-news-title-link {
  color: inherit;
  text-decoration: none;
}

.managed-news-title-link:hover,
.managed-news-title-link:focus-visible {
  color: #2f3377;
}

.managed-news-excerpt {
  margin: 12px 0 0;
  color: #686d7e;
  font-size: clamp(16px, 1.02vw, 21px);
  font-weight: 300;
  line-height: 1.56;
  max-width: 60ch;
}

.managed-news-inline-link,
.managed-news-back-link {
  color: #2f3377;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.managed-news-page {
  display: grid;
  gap: 30px;
}

.managed-news-detail {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 2vw, 30px);
  border: 1px solid rgba(47, 51, 119, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
}

.managed-news-detail-header {
  display: grid;
  gap: 24px;
}

.managed-news-detail-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  max-width: 74ch;
}

.managed-news-detail-copy .timeline-meta {
  margin-bottom: 0;
}

.managed-news-detail-title {
  margin: 0;
  color: #30364a;
  font-size: clamp(30px, 2.35vw, 46px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.managed-news-detail-lead {
  max-width: 38ch;
  color: #4f5770;
  font-size: clamp(18px, 1.18vw, 22px);
  line-height: 1.78;
}

.managed-news-detail-lead p {
  margin-bottom: 0;
}

.managed-news-detail-carousel {
  --carousel-side-peek: clamp(22px, 5vw, 52px);
  --carousel-gap: clamp(12px, 1.6vw, 20px);
  display: grid;
  gap: 14px;
  width: min(880px, 100%);
  margin: 0 auto;
}

.managed-news-carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.managed-news-carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.34s ease;
  will-change: transform;
}

.managed-news-carousel-slide {
  flex: 0 0 100%;
  margin: 0;
  min-width: 100%;
  height: clamp(220px, 29vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.managed-news-detail-carousel:not(.is-interactive) .managed-news-carousel-track {
  justify-content: center;
}

.managed-news-detail-carousel:not(.is-interactive) .managed-news-carousel-slide {
  flex: 0 1 760px;
  width: min(100%, 760px);
  min-width: 0;
}

.managed-news-detail-carousel.is-interactive .managed-news-carousel-track {
  gap: var(--carousel-gap);
  padding-inline: var(--carousel-side-peek);
}

.managed-news-detail-carousel.is-interactive .managed-news-carousel-slide {
  flex-basis: calc(100% - (2 * var(--carousel-side-peek)));
  min-width: calc(100% - (2 * var(--carousel-side-peek)));
  opacity: 0.52;
  transform: scale(0.965);
}

.managed-news-detail-carousel.is-interactive .managed-news-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.managed-news-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}

.managed-news-carousel-footer {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.managed-news-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: auto;
  max-width: 100%;
}

.managed-news-carousel-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47, 51, 119, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #2f3377;
  font: inherit;
  cursor: pointer;
}

.managed-news-carousel-counter {
  margin: 0;
  min-width: 68px;
  color: #7b8398;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.managed-news-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.managed-news-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 51, 119, 0.18);
  cursor: pointer;
}

.managed-news-carousel-dot.is-active {
  background: #2f3377;
  transform: scale(1.08);
}

.managed-news-detail-story {
  display: grid;
  gap: 24px;
}

.managed-news-detail-body {
  max-width: 74ch;
}

.managed-news-detail-body:empty {
  display: none;
}

.managed-news-related {
  display: grid;
  gap: 6px;
}

.managed-news-related .managed-news-archive-list {
  display: grid;
  gap: 16px;
}

.managed-news-related .timeline-item {
  padding-left: 0;
}

.managed-news-related .dot {
  display: none;
}

.managed-richtext {
  color: #565d73;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.72;
}

.managed-richtext p,
.managed-richtext ul,
.managed-richtext ol,
.managed-richtext blockquote,
.managed-richtext h2,
.managed-richtext h3 {
  margin-top: 0;
}

.managed-richtext p:last-child,
.managed-richtext ul:last-child,
.managed-richtext ol:last-child,
.managed-richtext blockquote:last-child {
  margin-bottom: 0;
}

.managed-richtext h2 {
  margin-bottom: 10px;
  color: #2d3344;
  font-size: clamp(24px, 1.6vw, 30px);
  font-weight: 400;
  line-height: 1.25;
}

.managed-richtext h3 {
  margin-bottom: 10px;
  color: #32384a;
  font-size: clamp(20px, 1.28vw, 24px);
  font-weight: 400;
  line-height: 1.28;
}

.managed-richtext ul,
.managed-richtext ol {
  padding-left: 22px;
}

.managed-richtext blockquote {
  margin-left: 0;
  padding-left: 18px;
  border-left: 2px solid rgba(47, 51, 119, 0.24);
  color: #6d7387;
}

.managed-richtext a {
  color: #2f3377;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.managed-gallery-block,
.managed-calendar-block {
  margin-top: clamp(48px, 4.2vw, 72px);
  padding-top: clamp(34px, 3.2vw, 48px);
  border-top: 1px solid #e1e5ef;
}

.managed-section-heading {
  margin-bottom: 30px;
}

.managed-section-heading h2 {
  margin: 0 0 10px;
  color: #343949;
  font-size: clamp(28px, 2.05vw, 40px);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.managed-section-heading p {
  margin: 0;
  max-width: 60ch;
  color: #67708a;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.7;
}

.managed-gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  justify-content: center;
  gap: 24px;
}

.managed-gallery-folder-card {
  width: 220px;
}

.managed-gallery-folder-link {
  display: grid;
  gap: 14px;
  justify-items: center;
  color: inherit;
  text-decoration: none;
}

.managed-gallery-folder-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid rgba(47, 51, 119, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(47, 51, 119, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.managed-gallery-folder-link:hover .managed-gallery-folder-preview,
.managed-gallery-folder-link:focus-visible .managed-gallery-folder-preview {
  transform: translateY(-2px);
  border-color: rgba(47, 51, 119, 0.28);
  box-shadow: 0 18px 34px rgba(47, 51, 119, 0.1);
}

.managed-gallery-folder-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 94px);
  grid-template-rows: repeat(2, 94px);
  width: 196px;
  height: 196px;
  gap: 8px;
  align-content: center;
  justify-content: center;
}

.managed-gallery-folder-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 94px;
  height: 94px;
  border-radius: 22px;
  border: 1px solid rgba(47, 51, 119, 0.12);
  background: linear-gradient(180deg, rgba(238, 242, 249, 0.95), rgba(247, 248, 251, 0.98));
}

.managed-gallery-folder-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.managed-gallery-folder-tile.is-placeholder {
  background: linear-gradient(180deg, rgba(241, 244, 251, 0.95), rgba(248, 249, 252, 0.98));
}

.managed-gallery-folder-tile.is-indicator {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(210, 218, 239, 0.95), rgba(227, 232, 245, 0.98));
}

.managed-gallery-folder-tile.is-indicator span {
  color: #2f3377;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.managed-gallery-folder-meta {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
  width: 100%;
}

.managed-gallery-folder-title,
.managed-gallery-detail-title {
  margin: 0;
  color: #2f3445;
  font-size: clamp(24px, 1.7vw, 34px);
  font-weight: 300;
  line-height: 1.16;
}

.managed-gallery-folder-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.18;
  max-width: 16ch;
}

.managed-gallery-folder-count {
  margin: 0;
  color: #7b8398;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.managed-gallery-detail {
  display: grid;
  gap: 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.managed-gallery-detail-title {
  color: #2f3445;
}

.managed-gallery-detail-header {
  display: grid;
  gap: 14px;
  max-width: 76ch;
}

.managed-gallery-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: start;
  align-content: flex-start;
}

.managed-gallery-detail-photo {
  margin: 0;
  flex: 0 0 auto;
  max-width: 100%;
}

.managed-gallery-detail-photo-button {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  max-width: none;
}

.managed-gallery-detail-photo-button:hover img,
.managed-gallery-detail-photo-button:focus-visible img {
  transform: scale(1.03);
}

.managed-gallery-detail-photo img {
  width: auto;
  height: 220px;
  max-width: none;
  max-height: 220px;
  border-radius: 0;
  object-fit: contain;
  display: block;
  transition: transform 0.18s ease;
}

.managed-gallery-lightbox-open {
  overflow: hidden;
}

.managed-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: rgba(12, 14, 24, 0.92);
}

.managed-gallery-lightbox[hidden] {
  display: none;
}

.managed-gallery-lightbox-figure {
  margin: 0;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.managed-gallery-lightbox-figure img {
  display: block;
  max-width: min(92vw, 1400px);
  max-height: min(84vh, 1000px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.managed-gallery-lightbox-caption {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.managed-gallery-lightbox-close,
.managed-gallery-lightbox-nav {
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
}

.managed-gallery-lightbox-close:hover,
.managed-gallery-lightbox-close:focus-visible,
.managed-gallery-lightbox-nav:hover,
.managed-gallery-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.managed-gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

.managed-gallery-lightbox-nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
}

.managed-calendar-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.68fr);
  gap: 22px;
  align-items: start;
}

.managed-calendar-frame {
  padding: clamp(14px, 1.5vw, 20px);
  border: 1px solid rgba(47, 51, 119, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.managed-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.managed-calendar-month {
  margin: 0;
  color: #343949;
  font-size: clamp(21px, 1.45vw, 28px);
  font-weight: 300;
}

.managed-calendar-nav {
  display: inline-flex;
  gap: 10px;
}

.managed-calendar-nav button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(47, 51, 119, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #2f3377;
  font: inherit;
  cursor: pointer;
}

.managed-calendar-nav button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.managed-calendar-weekdays,
.managed-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.managed-calendar-weekdays {
  margin-bottom: 8px;
}

.managed-calendar-weekdays span {
  color: #83889a;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.managed-calendar-day {
  min-height: 70px;
  padding: 8px;
  border: 1px solid rgba(47, 51, 119, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.managed-calendar-day.is-outside {
  opacity: 0.48;
}

.managed-calendar-day.is-today {
  border-color: rgba(47, 51, 119, 0.26);
  box-shadow: inset 0 0 0 1px rgba(47, 51, 119, 0.14);
}

.managed-calendar-day-number {
  display: block;
  margin-bottom: 6px;
  color: #2f3445;
  font-size: 12px;
  font-weight: 600;
}

.managed-calendar-day-events {
  display: grid;
  gap: 4px;
}

.managed-calendar-chip {
  display: block;
  padding: 4px 6px;
  border-radius: 10px;
  background: rgba(47, 51, 119, 0.1);
  color: #2f3377;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.managed-calendar-list {
  display: grid;
  gap: 14px;
  max-height: 520px;
  padding-right: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.managed-calendar-list::-webkit-scrollbar {
  width: 8px;
}

.managed-calendar-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(47, 51, 119, 0.18);
}

.managed-calendar-list::-webkit-scrollbar-track {
  background: rgba(47, 51, 119, 0.05);
}

.managed-calendar-item {
  display: grid;
  gap: 10px;
  padding: 15px 16px;
  border: 1px solid rgba(47, 51, 119, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.managed-calendar-item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  justify-content: space-between;
}

.managed-calendar-item h3 {
  margin: 0;
  color: #30364a;
  font-size: clamp(18px, 1.05vw, 22px);
  font-weight: 300;
  line-height: 1.25;
}

.managed-calendar-item-meta {
  margin: 0;
  color: #7c8498;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.managed-calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(47, 51, 119, 0.1);
  color: #2f3377;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .managed-news-detail-story {
    grid-template-columns: 1fr;
  }

  .managed-news-detail-lead,
  .managed-news-detail-body {
    max-width: none;
  }

  .managed-news-carousel-slide {
    height: clamp(210px, 36vw, 320px);
  }

  .managed-news-summary-layout,
  .managed-news-summary-layout.is-placeholder {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .managed-news-thumb,
  .managed-news-summary-copy {
    height: 140px;
    min-height: 140px;
  }

  .managed-gallery-detail-photo img {
    height: 220px;
    max-height: 220px;
  }

  .managed-calendar-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .managed-calendar-list {
    max-height: 420px;
  }

  .managed-calendar-weekdays,
  .managed-calendar-grid {
    gap: 8px;
  }

  .managed-calendar-day {
    min-height: 82px;
    padding: 8px;
  }
}

@media (max-width: 760px) {
  .managed-news-detail-carousel {
    --carousel-side-peek: 20px;
    --carousel-gap: 12px;
  }

  .managed-news-summary-layout,
  .managed-news-summary-layout.is-placeholder {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 14px;
  }

  .managed-news-thumb {
    min-height: 124px;
    height: 124px;
  }

  .managed-news-summary-copy {
    min-height: 124px;
    height: 124px;
  }

  .managed-gallery-list {
    grid-template-columns: repeat(auto-fit, 200px);
  }

  .managed-gallery-detail-grid {
    gap: 10px;
  }

  .managed-gallery-detail-photo-button {
    max-width: 100%;
  }

  .managed-gallery-detail-photo img {
    height: 180px;
    max-height: 180px;
    max-width: min(100%, calc(100vw - 56px));
  }

  .managed-gallery-lightbox {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 20px 12px;
  }

  .managed-gallery-lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }

  .managed-gallery-lightbox-nav.is-prev,
  .managed-gallery-lightbox-nav.is-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .managed-gallery-lightbox-nav.is-prev {
    left: 10px;
  }

  .managed-gallery-lightbox-nav.is-next {
    right: 10px;
  }

  .managed-gallery-lightbox-figure img {
    max-width: min(94vw, 1000px);
    max-height: 78vh;
  }

  .managed-calendar-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .managed-calendar-list {
    max-height: 340px;
    padding-right: 4px;
  }

  .managed-calendar-day {
    min-height: 72px;
  }

  .managed-calendar-chip {
    font-size: 10px;
  }
}

@media (max-width: 560px) {
  .managed-news-detail-carousel {
    --carousel-side-peek: 14px;
    --carousel-gap: 10px;
  }

  .managed-empty-state {
    padding: 20px;
    border-radius: 18px;
    font-size: 14px;
  }

  .managed-richtext {
    font-size: 14px;
  }

  .managed-news-thumb {
    min-height: 110px;
    height: 110px;
  }

  .managed-news-excerpt {
    font-size: 14px;
  }

  .managed-news-summary-layout,
  .managed-news-summary-layout.is-placeholder {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .managed-news-summary-copy {
    min-height: 110px;
    height: 110px;
    padding-right: 2px;
  }

  .managed-news-detail {
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .managed-news-detail-title {
    font-size: 28px;
  }

  .managed-news-carousel-slide {
    height: 210px;
  }

  .managed-news-carousel-controls {
    gap: 12px;
  }

  .managed-news-carousel-button {
    width: 40px;
    height: 40px;
  }

  .managed-calendar-frame {
    padding: 18px;
    border-radius: 22px;
  }

  .managed-gallery-detail {
    padding: 0;
    border-radius: 0;
  }

  .managed-gallery-list {
    grid-template-columns: repeat(auto-fit, 180px);
    gap: 16px;
  }

  .managed-gallery-folder-card,
  .managed-gallery-folder-preview {
    width: 180px;
  }

  .managed-gallery-folder-preview {
    height: 180px;
    padding: 8px;
    border-radius: 22px;
  }

  .managed-gallery-folder-mosaic {
    grid-template-columns: repeat(2, 78px);
    grid-template-rows: repeat(2, 78px);
    width: 162px;
    height: 162px;
    gap: 6px;
  }

  .managed-gallery-folder-tile {
    width: 78px;
    height: 78px;
    border-radius: 18px;
  }

  .managed-gallery-folder-meta {
    gap: 3px;
  }

  .managed-gallery-folder-title {
    font-size: 16px;
  }

  .managed-gallery-folder-count {
    font-size: 11px;
  }

  .managed-gallery-detail-grid {
    gap: 10px;
  }

  .managed-gallery-detail-photo img {
    height: 180px;
    max-height: 180px;
    max-width: min(100%, calc(100vw - 40px));
  }

  .managed-calendar-weekdays,
  .managed-calendar-grid {
    gap: 6px;
  }

  .managed-calendar-list {
    max-height: 300px;
  }

  .managed-calendar-day {
    min-height: 72px;
    padding: 8px;
    border-radius: 14px;
  }

  .managed-calendar-day-number {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .managed-calendar-chip {
    padding: 5px 6px;
  }
}
