@charset "UTF-8";

.accBar{
  width: 100%;
  background: var(--signal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
}

.accBar:focus-visible{
  outline: 3px solid #000;
  outline-offset: 3px;
}

.acc{
  padding: 40px 0 70px;
}

.acc__wrap{
  display: grid;
  gap: 14px;
}

.accItem{
  border: 0;
}

.accBar{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  background: #F6F92E;
  color: #000;

  border: 0;
  padding: 5px;

  font-weight: 900;
  letter-spacing: .2px;
  text-align: left;
}

.accBar__image{
  flex: 0 0 60px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  position: relative;
  z-index: 5;
}

.accBar__image a{
  display: block;
  width: 60px;
  height: 60px;
}

.accBar__image img,
.accIcon{
  display: block;
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  object-fit: contain;
}

.accToggle{
  flex: 1;
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  border: 0;
  padding: 0;
  margin: 0;

  background: transparent;
  color: #000;

  font: inherit;
  font-size: 24px;
  font-weight: 900;
  text-align: left;

  cursor: pointer;
}

.accToggle:focus-visible{
  outline: 3px solid #000;
  outline-offset: 4px;
}

.accBar__title{
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  min-width: 0;
}

.accBar__icon{
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

.accPanel{
  background: #fff;
}

.accPanel__inner{
  padding: 18px 18px 22px;
  background: #e7e7df;
}

.accPanel__inner2{
  padding: 18px 18px 22px;
  background: #111a3c;
  color: white;
}

.accTop{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: start;
  min-width: 0;
}

.accTop__media{
  min-width: 0;
}

.accTop__media a{
  display: block;
}

.accTop__media img,
.accImg{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.accTop__content{
  min-width: 0;
}

.accTop__headline{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.accTop__text{
  font-size: 17px;
  line-height: 1.55;
}

.accTop__text *{
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.accGallery{
  margin-top: 18px;
}

.accItem.is-open .accBar__icon{
  transform: rotate(45deg);
}

.srOnly{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 900px){
  .accTop{
    grid-template-columns: 1fr;
  }

  .accBar__title{
    font-size: 18px;
  }

  .accTop__headline{
    font-size: 24px;
  }
}
