.fgc-ssr__view-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: max-content;
  margin: 0 0 10px auto;
  padding: 4px;
  border: 1px solid var(--fgc-line);
  border-radius: 10px;
  background: var(--fgc-pale);
}

.fgc-ssr__view-switcher a {
  min-width: 142px;
  padding: 9px 15px;
  border-radius: 7px;
  color: var(--fgc-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.fgc-ssr__view-switcher a:hover,
.fgc-ssr__view-switcher a:focus-visible {
  background: #e5ece0;
  color: var(--fgc-green);
}

.fgc-ssr__view-switcher a:focus-visible {
  outline: 3px solid rgba(255, 158, 107, .7);
  outline-offset: 2px;
}

.fgc-ssr__view-switcher a.is-active,
.fgc-ssr__view-switcher a.is-active:hover {
  background: var(--fgc-green);
  color: #fff;
}

@media (max-width: 680px) {
  .fgc-ssr__view-switcher {
    width: calc(100% - 24px);
    margin: 22px 12px 10px;
  }

  .fgc-ssr__view-switcher a {
    min-width: 0;
    padding: 10px 12px;
  }
}
