.menu-section-block {
  display: block;
  width: calc(100% - 1.5rem);
  box-sizing: border-box;
  list-style: none;
  margin: 0.45rem 0.75rem 0.85rem;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-section-card {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 117px;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  position: relative;
}

.menu-section-summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 114px;
  padding: 0.85rem;
  color: inherit;
  font: inherit;
  text-align: center;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.menu-section-summary:hover,
.menu-section-summary:focus {
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.menu-section-block.is-active .menu-section-card {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
}

.menu-section-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  margin-bottom: 0.35rem;
}

.menu-section-art picture {
  display: contents;
}

.menu-section-image-dark {
  display: none !important;
}

.dark-style .menu-section-image-light {
  display: none !important;
}

.dark-style .menu-section-image-dark {
  display: contents !important;
}

.menu-section-art img {
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
}

.menu-section-art i {
  font-size: 4.25rem;
  opacity: 0.85;
}

.menu-section-copy {
  display: block;
  width: 100%;
  min-width: 0;
}

.menu-section-title {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.15;
}

.menu-section-arrow {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  transform: rotate(180deg);
  transition: transform 180ms ease;
}

.menu-section-block.is-expanded .menu-section-arrow {
  transform: rotate(0deg);
}

.menu-section-subtitle {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.25;
  opacity: 1;
}

.menu-section-items {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0.55rem 0.75rem;
}

.menu-section-block.is-expanded .menu-section-items {
  display: block;
}

.menu-section-items > .menu-item {
  margin-inline: 0;
}

.menu-section-items > .menu-item > .menu-link,
.menu-section-items > .menu-item > .d-flex > .menu-link {
  border-radius: 0.45rem;
}

@media (max-width: 1199.98px) {
  .menu-section-card {
    min-height: auto;
  }

  .menu-section-summary {
    min-height: 92px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .menu-section-art {
    min-height: 0;
    width: 54px;
    margin: 0;
    flex: 0 0 54px;
  }

  .menu-section-art img {
    max-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-section-block,
  .menu-section-arrow {
    transition: none;
  }
}
