.bvms-switcher {
  --bvms-accent: #a8873b;
  --bvms-max-width: 1600px;
  width: min(100%, var(--bvms-max-width));
  margin-inline: auto;
  color: #2f2f2f;
}

.bvms-switcher__toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 clamp(18px, 2.5vw, 32px);
}

.bvms-switcher__button {
  appearance: none;
  min-width: 132px;
  min-height: 46px;
  margin: 0;
  padding: 10px 24px;
  border: 1px solid var(--bvms-accent);
  border-radius: 4px;
  background: #fff;
  color: #2f2f2f;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.bvms-switcher__button:hover,
.bvms-switcher__button:focus-visible,
.bvms-switcher__button.is-active {
  background: var(--bvms-accent);
  color: #fff;
}

.bvms-switcher__button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--bvms-accent) 35%, transparent);
  outline-offset: 3px;
}

.bvms-switcher__panel[hidden] {
  display: none !important;
}

.bvms-switcher__panel {
  display: grid;
  width: 100%;
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

.bvms-switcher__figure {
  width: 100%;
  max-width: 1600px;
  aspect-ratio: 1600 / 1131;
  margin: 0;
  overflow: hidden;
}

.bvms-switcher__image {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  aspect-ratio: 1600 / 1131 !important;
  object-fit: cover !important;
  object-position: center center;
}

.bvms-editor-note {
  box-sizing: border-box;
  padding: 14px 16px;
  border-left: 4px solid #a8873b;
  background: #fff8e5;
  color: #2f2f2f;
}

@media (max-width: 600px) {
  .bvms-switcher__toolbar {
    width: 100%;
    gap: 8px;
  }

  .bvms-switcher__button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 12px;
  }
}
