/* -------------------------------------------*\
  Editor content scss file, shared w/Dm Admin
\*------------------------------------------- */
.template--museum main.content, .template--collections_search main.content, .template--user_profile main.content {
  background-color: #f2f2f2; }

.template--museum .article, .template--user_profile .article {
  margin: 0 auto;
  min-width: 200px;
  padding: 0 1rem; }
  @media (min-width: 540px) {
    .template--museum .article, .template--user_profile .article {
      max-width: 524px;
      padding: 0; } }
  @media (min-width: 720px) {
    .template--museum .article, .template--user_profile .article {
      max-width: 704px;
      padding: 0; } }
  @media (min-width: 1080px) {
    .template--museum .article, .template--user_profile .article {
      max-width: 1064px;
      padding: 0; } }

.template--museum h2 :not(.header__name), .template--user_profile h2 :not(.header__name) {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
  margin: 1.5rem 0 1rem; }

.template--museum h3, .template--user_profile h3 {
  font-size: 1.25rem;
  font-weight: bold; }

.template--museum .meta__list, .template--user_profile .meta__list {
  border-top: 0;
  font-size: 1.125rem;
  margin: 1rem 0;
  padding-top: 0; }

.template--museum .meta__label, .template--user_profile .meta__label {
  font-size: .75rem; }

.template--search .module--stack {
  color: white; }

.museum-avatar {
  background: white;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0; }
  .museum-avatar > img {
    width: 100%;
    height: 100%; }
  .museum-avatar > span {
    font-weight: bold; }
  .museum-avatar--large {
    width: 3rem;
    height: 3rem; }
    .museum-avatar--large > span {
      font-size: 2rem; }
  .museum-avatar--medium {
    width: 2rem;
    height: 2rem; }
    .museum-avatar--medium > span {
      font-size: 1.5rem; }
  .museum-avatar--small {
    width: 1.25rem;
    height: 1.25rem; }
    .museum-avatar--small > span {
      font-size: 1rem; }
  .museum-avatar--absolute {
    position: absolute;
    margin: .5rem; }
  .museum-avatar--link-wrapper > a {
    align-items: center;
    display: flex;
    gap: 1rem;
    text-decoration: none; }

/* card wrapper */
.museum-cards {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  justify-content: left;
  margin-bottom: 1rem; }
  @media (min-width: 720px) {
    .museum-cards {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 1rem; } }

/* end card wrapper */
/* base */
.museum-card {
  background-color: #FFFFFF;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 1000ms linear;
  transition: opacity 1000ms linear; }
  .museum-card.collapse {
    display: none; }
  .profile-section__folders .museum-card {
    margin-bottom: .75rem; }
  .template--museum .museum-card, .template--user_profile .museum-card {
    box-shadow: rgba(0, 0, 0, 0.2) 0 2px 1px -1px, rgba(0, 0, 0, 0.14) 0 1px 1px 0px, rgba(0, 0, 0, 0.12) 0 1px 3px 0px; }
  .museum-card h2 {
    font-size: 1rem;
    margin: 0; }
  .museum-card:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.08);
    transform: translate(0, -2px); }

.section--search-secondary .museum-card {
  background-color: #f2f2f2; }

.section--search-secondary .museum-card__upper {
  background-color: #f2f2f2; }

/* end base */
/* card sizes */
.museum-card--avatar {
  width: 74px;
  height: 74px; }

.museum-card--small {
  aspect-ratio: 164/246;
  width: 100%; }
  @media (min-width: 540px) {
    .template--museum .museum-card--small, .template--user_profile .museum-card--small {
      width: 164px;
      height: 246px; } }
  .museum-card--small--wide {
    aspect-ratio: 344/246;
    width: 100%;
    height: 100%; }
    @media (min-width: 720px) {
      .template--museum .museum-card--small--wide, .template--user_profile .museum-card--small--wide {
        width: 344px;
        height: 246px; } }

.museum-card--large {
  width: 344px;
  height: 502px; }
  .museum-card--large--wide {
    width: 698px;
    height: 502px; }

/* end card sizes */
.museum-card--button {
  background-color: #423f3c;
  width: 100%;
  display: flex;
  flex: 0 0 100%;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat; }
  .museum-card--button > button {
    border: 2px solid #000;
    border-radius: 1px;
    padding: .5rem 1.5rem;
    color: #000; }
    .museum-card--button > button:hover {
      background-color: #000;
      color: #FFF;
      cursor: pointer; }

/* upper portion of a card */
.museum-card__upper {
  background-color: #423f3c;
  width: 100%;
  display: flex;
  flex: 0 0 65%;
  justify-content: center; }

.museum-card__image {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: inherit; }

.museum-card__grid {
  background-color: #FFFFF8;
  display: grid;
  gap: .25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr)); }
  .museum-card__grid > div {
    background-color: #999999;
    background-size: cover;
    grid-column-end: span 1;
    grid-row-end: span 1; }
  .museum-card__grid > div:first-child {
    grid-column-end: span 2;
    grid-row-end: span 2; }

/* image wrapper */
.museum-card__flex {
  display: flex;
  gap: 2px;
  width: 100%;
  height: 100%; }

.museum-card__flex--column {
  flex-direction: column; }

.museum-card__flex--onethird {
  flex-basis: 34%; }

.museum-card__flex--twothirds {
  flex-basis: 66%;
  flex-grow: 1; }

/* start mosaic */
.museum-card__mosaic {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  width: 100%;
  height: 100%; }

.museum-card__mosaic-top {
  display: flex;
  flex-basis: 70%;
  height: 100%;
  width: 100%;
  gap: .1em;
  flex-grow: 1; }

.museum-card__mosaic-bot {
  display: flex;
  flex-basis: 30%;
  height: 100%;
  width: 100%;
  gap: .1em; }

.museum-card__image.cover {
  background-size: cover; }

/* end mosaic */
/* end upper portion */
/* lower portion of a card */
.museum-card__lower {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 0 0 35%;
  padding: 0.5rem;
  justify-content: space-between;
  overflow: hidden; }

.museum-card__header::before {
  content: " ";
  height: 28px;
  width: 28px;
  float: right; }

.museum-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all; }
  .museum-card__title--double {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    word-break: break-word; }

.museum-card__byline {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  font-size: .875rem;
  font-weight: 400;
  line-clamp: 1;
  line-height: 1.75;
  margin: 0;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all; }
  .museum-card__byline--hidden {
    display: none;
    visibility: hidden; }

.museum-card__footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: .5rem;
  align-items: center;
  overflow: hidden;
  font-size: .75rem; }

.museum-card__metadata {
  font-family: "Akkurat Mono", "monospace";
  font-size: .65rem;
  font-weight: normal;
  opacity: 0.75;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

/* end lower portion */
/* start delete overlay */
.museum-card__delete-overlay {
  font-size: 1rem;
  cursor: default;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffffed; }
  .museum-card__delete-overlay--hidden {
    display: none; }

.museum-card__button--delete {
  position: absolute;
  bottom: 0;
  right: 0; }

.museum-card__button {
  padding: 10%;
  width: 90%;
  border: 2px solid;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 600; }
  .museum-card__button--confirm {
    background: #ed5e68;
    border-color: #ed5e68;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.2) 0 2px 1px -1px, rgba(0, 0, 0, 0.14) 0 1px 1px 0px, rgba(0, 0, 0, 0.12) 0 1px 3px 0px; }
  .museum-card__button--cancel {
    background: white;
    border-color: #000; }
  .museum-card__button--hidden {
    display: none; }

/* end delete overlay */
.museum-calendar-events {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: 1rem;
  margin-bottom: 1rem; }

.museum-calendar-event {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0.5rem;
  gap: .875rem;
  background-color: #FFF;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
  height: 6rem;
  overflow: hidden;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12); }
  .museum-calendar-event h2 {
    font-size: 1rem;
    margin: 0; }
  .museum-calendar-event-date {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%; }
    .museum-calendar-event-date > span {
      font-size: .875rem; }
    .museum-calendar-event-date > p {
      font-size: 2rem;
      margin: 0; }
  .museum-calendar-event-thumbnail {
    flex-basis: 5rem;
    height: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: center; }
  .museum-calendar-event-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between; }

.header-media {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  aspect-ratio: 4 / 3; }
  .header-media__primary {
    flex: 1 0 66%; }
  .header-media__secondary {
    display: flex;
    flex-direction: row;
    gap: .1rem;
    flex: 1 0 33%; }
    .header-media__secondary__group {
      display: flex;
      flex-direction: row;
      gap: 0.1rem;
      overflow: hidden;
      flex: 1 0 50%; }
      .header-media__secondary__group--single {
        flex: 1 0 50%;
        overflow: hidden; }
      .header-media__secondary__group--double {
        display: flex;
        flex-direction: column;
        flex: 1 0 50%;
        overflow: hidden;
        gap: .1rem; }
      .header-media__secondary__group > .header-media__media {
        width: 50%;
        flex: 1 0 50%; }
    .header-media__secondary__group > .header-media__media:nth-child(2),
    .header-media__secondary__group > .header-media__media:nth-child(3) {
      flex: 1; }
    .header-media__secondary__group,
    .header-media__secondary__group > .header-media__media:nth-child(2),
    .header-media__secondary__group > .header-media__media:nth-child(3),
    .header-media__secondary > .header-media__media {
      width: 50%; }
    .header-media__secondary__map {
      flex: 1 1 50%; }
  .header-media__link {
    height: 100%; }
    .header-media__link:focus-visible {
      outline-offset: -0.2rem; }
  @media (min-width: 1080px) {
    .header-media {
      aspect-ratio: 4 / 2;
      flex-direction: row; }
      .header-media__secondary {
        flex-direction: column; }
        .header-media__secondary__group {
          width: 100%; }
          .header-media__secondary__group > .header-media__media {
            width: 50%; }
        .header-media__secondary__group,
        .header-media__secondary__group > .header-media__media:nth-child(2),
        .header-media__secondary__group > .header-media__media:nth-child(3),
        .header-media__secondary > .header-media__media {
          height: 50%; } }
  .header-media__media {
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .header-media__media > div {
      height: 100%;
      background-size: cover;
      background-position: center; }
  .header-media__media > div,
  .header-media__media > .media__map {
    transition: all 0.25s ease-out 0s;
    transform-origin: center center;
    -moz-transition: all 0.25s ease-out 0s;
    -ms-transition: all 0.25s ease-out 0s;
    -webkit-transition: all 0.25s ease-out 0s;
    -webkit-transform-origin: center center; }
    .header-media__media > div:hover,
    .header-media__media > .media__map:hover {
      transform: scale(1.05);
      will-change: transform; }

.museum-hours table {
  display: flex;
  flex-direction: column;
  width: 100%; }

.museum-hours thead {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%; }

.museum-hours__thead--tr {
  display: flex;
  gap: 4px;
  width: 100%; }

.museum-hours__thead--th {
  border: 0;
  flex-basis: 0;
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  min-width: 0;
  padding: 0 0 .5rem 0;
  text-align: left;
  text-transform: capitalize; }

.museum-hours__tbody {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%; }
  .museum-hours__tbody--tr {
    display: flex;
    gap: 4px;
    width: 100%; }
  .museum-hours__tbody--td, .museum-hours__tbody--td--closed {
    background-color: white;
    border: 0;
    flex-grow: 1;
    flex-basis: 0;
    min-height: 8rem;
    padding: .5rem; }
    .museum-hours__tbody--td > span, .museum-hours__tbody--td--closed > span {
      font-family: "Akkurat Mono", "monospace";
      font-weight: normal;
      font-size: 1.5rem;
      letter-spacing: -0.75px; }
    .museum-hours__tbody--td > div, .museum-hours__tbody--td--closed > div {
      font-size: 1rem; }
    .museum-hours__tbody--td--closed {
      background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12) 1px, transparent 1px, transparent 9px); }

.museum-nav {
  display: flex;
  position: relative; }
  .museum-nav ul {
    display: flex;
    gap: .6rem 1.5rem;
    overflow-x: auto;
    padding-bottom: .55rem; }
    .museum-nav ul li {
      display: flex;
      padding: 0 .25rem;
      white-space: nowrap; }
      .museum-nav ul li a {
        font-family: "Akkurat Mono", sans-serif;
        font-weight: normal;
        font-size: .875rem;
        padding: .5rem 0;
        align-items: center;
        text-decoration: none;
        border-bottom: 1px solid transparent; }
        .museum-nav ul li a.active {
          border-color: #000; }
        .museum-nav ul li a:hover {
          border-color: #000; }

.museum-tickets {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  font-size: 1.25rem; }
  .museum-tickets__rows {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-wrap: wrap; }
    @media (min-width: 540px) {
      .museum-tickets__rows {
        flex-direction: row; } }
  .museum-tickets__rows--item:not(:last-child) {
    white-space: nowrap; }
  .museum-tickets__rows--item {
    flex: 1 1 min-content; }
    .museum-tickets__rows--item > p {
      font-size: 1rem;
      margin: 1rem 0; }
  .museum-tickets__button {
    align-items: center;
    border: 2px solid;
    border-radius: 2px;
    cursor: pointer;
    display: inline-flex;
    font-weight: bold;
    justify-content: center;
    margin-top: 1rem;
    padding: .75rem 1.25rem; }

.museum-search__header a {
  text-decoration: none; }

.museum-search__header a:hover {
  text-decoration: underline; }

.museum-search__link-group {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center; }

.museum-search__button {
  border: 1px solid;
  border-radius: 2px;
  padding: .5rem 1rem; }

.museum-search__filter-section[aria-expanded=true] {
  z-index: 2002; }

.museum-search__show-more {
  background: #00d6b2;
  height: 50px;
  margin-bottom: 20px; }
  .museum-search__show-more:hover {
    background: #00AAEE; }
  .museum-search__show-more:disabled {
    background: #9d9d9d; }

.museum-search__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px; }

.button--loading .button__text {
  visibility: hidden;
  opacity: 0; }

.button--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #000;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite; }

.button--loading:hover::after {
  border-top-color: #FFF; }

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn); }
  to {
    transform: rotate(1turn); } }

.museum-collection-navigation {
  color: #EEE;
  background: #423f3c;
  display: flex;
  position: relative;
  width: 100vw;
  left: -50vw;
  margin-left: 50%;
  align-items: center;
  padding: 0 1rem;
  justify-content: space-between; }
  @media (min-width: 540px) {
    .museum-collection-navigation {
      justify-content: revert; } }
  .museum-collection-navigation a {
    text-decoration: none; }
  .museum-collection-navigation a:hover {
    text-decoration: underline; }
  .museum-collection-navigation > div:first-child {
    display: flex;
    align-items: center; }

.museum-collection-breadcrumb {
  padding: 10px 16px;
  list-style: none;
  display: flex;
  white-space: nowrap; }
  .museum-collection-breadcrumb > li {
    display: flex;
    font-size: .9rem;
    font-weight: 600;
    align-items: center; }
  .museum-collection-breadcrumb > li:not(:first-child) {
    display: none; }
  @media (min-width: 540px) {
    .museum-collection-breadcrumb {
      max-width: 85vw; }
      .museum-collection-breadcrumb > li:not(:first-child) {
        display: flex; }
      .museum-collection-breadcrumb > li:last-child {
        overflow: hidden; } }
  .museum-collection-breadcrumb > li + li::before {
    padding: 8px;
    color: #EEE;
    content: "/\00a0"; }

.museum-collection-dropdown {
  position: relative;
  display: flex;
  gap: .5rem; }

.museum-collection-dropdown__button {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.30rem solid #666361;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 4px; }
  .museum-collection-dropdown__button > svg {
    background: #666361; }
  .museum-collection-dropdown__button:hover > svg, .museum-collection-dropdown__button:active > svg, .museum-collection-dropdown__button.active > svg {
    background: #423f3c; }

.museum-collection-dropdown__options {
  background: #F3F3F3;
  color: #000;
  position: absolute;
  z-index: 100;
  box-shadow: 2px 4px 32px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 1.125rem;
  right: 0;
  top: 2.5rem;
  inline-size: 25ch; }
  .museum-collection-dropdown__options li, .museum-collection-dropdown__options a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word; }
  .museum-collection-dropdown__options > ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: stretch; }
    .museum-collection-dropdown__options > ul > li {
      font-size: 1rem;
      line-height: 120%; }
  .museum-collection-dropdown__options.hidden {
    display: none; }
  .museum-collection-dropdown__options .selected {
    opacity: 30%; }

.museum-collection-selected {
  display: flex; }
  @media (min-width: 540px) {
    .museum-collection-selected {
      display: none; } }

.museum-body {
  margin-bottom: 1.5rem; }
  .museum-body.museum-collection .feature-images {
    display: flex;
    position: relative;
    width: 100vw;
    left: -50vw;
    margin-left: 50%;
    justify-content: center;
    overflow: hidden; }
    .museum-body.museum-collection .feature-images .module--feature-image {
      flex: 0 0 auto; }
      .museum-body.museum-collection .feature-images .module--feature-image .module__media {
        top: 0; }
  .museum-body.museum-collection .feature-search {
    position: relative;
    top: -30px;
    padding: 1em;
    padding-bottom: 2.5em;
    background: white;
    text-align: center;
    max-width: 1064px;
    margin: 0 auto; }
    .museum-body.museum-collection .feature-search h2 {
      width: 100%; }
    .museum-body.museum-collection .feature-search .nav-search {
      display: block;
      width: 100%;
      max-width: 704px;
      margin: 0 auto; }
      .museum-body.museum-collection .feature-search .nav-search input[type="search"]:focus {
        border-color: #4F4F4F; }
  .museum-body.museum-collection .collection-article {
    max-width: 704px;
    margin: 0 auto; }
    .museum-body.museum-collection .collection-article .meta__list {
      display: flex; }
      .museum-body.museum-collection .collection-article .meta__list li {
        margin: 0; }
        .museum-body.museum-collection .collection-article .meta__list li .meta__label {
          width: 100%; }
  .museum-body.museum-collection .museum-info-section h3 {
    margin-bottom: 1em; }
  .museum-body.museum-collection .museum-info-section p + p {
    margin-top: 0; }
  .museum-body.museum-collection .detail-section {
    margin: 2em 0 3em; }
    .museum-body.museum-collection .detail-section h4 {
      font-size: 1rem; }
  .museum-body.museum-collection .collection-article .module--dm .module__grid {
    background-color: #fff; }
  .museum-body.museum-collection .museum-body .frontpage__head {
    margin: 0 -1250px;
    width: unset; }
  @media (min-width: 0) {
    .museum-body .article__content, .museum-body .row--grid {
      max-width: 100%; } }
  @media (min-width: 540px) {
    .museum-body .article__content, .museum-body .row--grid {
      max-width: 540px; } }
  @media (min-width: 720px) {
    .museum-body .article__content, .museum-body .row--grid {
      max-width: 720px; } }
  @media (min-width: 1080px) {
    .museum-body .article__content, .museum-body .row--grid {
      max-width: 1064px; } }
  @media (min-width: 540px) {
    .museum-body .article__content .module--small, .museum-body .row--grid .module--small {
      max-width: 178px;
      width: 100%; } }

.museum__button {
  position: relative;
  border: 1px solid;
  border-radius: 2px;
  padding: .75rem 1rem;
  cursor: pointer;
  width: 100%;
  white-space: normal; }
  @media (min-width: 504px) {
    .museum__button {
      width: revert;
      white-space: nowrap; } }
  .museum__button.hidden {
    display: none;
    visibility: hidden; }
  .museum__button:hover {
    filter: invert(100%); }
  .museum__button--filter {
    font-size: .875rem; }
  .museum__button--filter-reset {
    color: #000;
    background-color: #f2f2f2;
    display: none; }
  .museum__button--filter-select {
    color: white;
    background-color: #808080FF;
    border-color: #808080FF; }
  .museum__button--filter-toggle {
    color: #000;
    background-color: #f2f2f2; }
  .museum__button--user-action {
    background-color: #f2f2f2;
    align-items: center;
    border-radius: 2rem;
    display: inline-flex;
    font-size: .875rem;
    font-weight: bold;
    justify-content: center;
    padding: .5rem 1rem;
    text-decoration: none;
    flex-shrink: 0; }
    .museum__button--user-action.unfollow {
      color: white;
      background-color: #789; }
    .museum__button--user-action:hover {
      text-decoration: underline;
      filter: none; }

.museum__flex {
  display: flex;
  flex-direction: row;
  gap: 1rem; }
  .museum__flex--column {
    flex-direction: column; }
  .museum__flex--align-center {
    align-items: center; }
  .museum__flex--space-between {
    justify-content: space-between; }

.museum__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem; }
  .museum__header .show-in-map-link {
    padding: 0.3em 0 0;
    font-size: .875rem; }

.museum-description {
  font-family: Akkurat, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5; }
  .museum-description > p {
    margin: 2rem 0; }

.museum-filter__navigation-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: .875rem; }
  @media (min-width: 540px) {
    .museum-filter__navigation-list {
      flex-direction: row; } }
  .museum-filter__navigation-list li > a {
    padding: .75rem 0;
    align-items: center;
    text-decoration: none;
    border-bottom: 1px solid transparent; }
    .museum-filter__navigation-list li > a.active {
      border-color: #000; }
    .museum-filter__navigation-list li > a:hover {
      border-color: #000; }

.museum-filter__navigation-item {
  width: 100%; }
  @media (min-width: 540px) {
    .museum-filter__navigation-item {
      width: revert; } }

.museum-filter__group {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  gap: 0.5rem; }

.museum-filter__parents {
  position: absolute;
  top: -110%;
  display: none; }
  .museum-filter__parents.show {
    display: block; }

.museum-filter__children {
  position: absolute;
  top: 110%;
  display: none; }
  .museum-filter__children.show {
    display: block; }

.museum-filter__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem; }

.museum-info-section {
  display: block;
  max-width: 100%;
  width: 100%; }
  @media (min-width: 320px) {
    .museum-info-section {
      display: flex;
      flex-direction: column; } }
  .museum-info-section h2:not(.museum-card__title) {
    border-bottom: 1px solid #4f4f4f;
    margin: 2.5rem 0 0;
    padding-bottom: 1rem; }

.museum-feed {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem; }
  .museum-feed__header {
    display: flex;
    flex-direction: column;
    gap: .5rem; }
    .museum-feed__header--items {
      display: flex;
      flex-direction: row;
      gap: .5rem;
      align-items: center; }

.museum-head {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  gap: 1rem; }
  .museum-head__wrapper {
    display: flex;
    gap: 1rem;
    min-height: 3rem;
    align-items: center;
    justify-content: flex-start; }
  .museum-head__logo {
    max-width: 100px; }
  .museum-head__header > h1 {
    font-size: 1.5rem; }
  .museum-head__header--home {
    text-decoration: none; }
    .museum-head__header--home:hover {
      text-decoration: underline; }

.museum-media {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

.header-facets ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none; }
  .museum-collection .header-facets ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(10rem, 100%), 1fr));
    grid-template-rows: repeat(2, 1fr);
    grid-auto-rows: 0;
    overflow: hidden; }
  .header-facets ul li {
    border-left: 1px solid black;
    padding-left: 0.5em;
    margin-bottom: 1rem; }
    .header-facets ul li a {
      display: block;
      padding-right: 1.5em;
      text-decoration: none; }
      .header-facets ul li a:hover {
        text-decoration: underline; }
    .header-facets ul li span {
      display: block;
      line-height: 1.25; }
      .header-facets ul li span:nth-child(1) {
        font-size: 1.5rem;
        letter-spacing: -0.75px; }
      .header-facets ul li span:nth-child(2) {
        font-size: .875rem; }

.museum-trending {
  margin-bottom: 1.5rem; }
  .museum-trending__header {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 540px) {
      .museum-trending__header {
        align-items: flex-end;
        flex-direction: row; } }
    .museum-trending__header > h2 {
      font-size: 1.5rem;
      font-weight: bold;
      line-height: 1.25;
      margin: 1.5rem 0 1rem;
      text-align: left; }
    .museum-trending__header a.button--link {
      flex-shrink: 0;
      height: fit-content;
      margin-bottom: .7rem;
      font-size: .7em; }
      .museum-trending__header a.button--link > svg {
        margin: 0 .25em -3px 0; }

.consolidated-media {
  margin-top: 1rem;
  display: grid;
  gap: 1rem; }
  @media (min-width: 0) {
    .consolidated-media {
      grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (min-width: 540px) {
    .consolidated-media {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 540px; } }
  @media (min-width: 720px) {
    .consolidated-media {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      max-width: 720px; } }
  @media (min-width: 1080px) {
    .consolidated-media {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      max-width: 1064px; } }

.consolidated-media-map {
  background-color: inherit;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 1px -1px, rgba(0, 0, 0, 0.14) 0 1px 1px 0, rgba(0, 0, 0, 0.12) 0 1px 3px 0; }
  @media (min-width: 0) {
    .consolidated-media-map {
      grid-row-end: span 2;
      grid-column-end: span 2; } }
  @media (min-width: 540px) {
    .consolidated-media-map {
      grid-row-end: span 2;
      grid-column-end: span 3; } }
  @media (min-width: 720px) {
    .consolidated-media-map {
      grid-row-end: span 2;
      grid-column-end: span 4; } }
  @media (min-width: 1080px) {
    .consolidated-media-map {
      grid-row-end: span 2;
      grid-column-end: span 4; } }
