.guide-page {
  width: 880px;
  margin: auto;
  display: grid;
  gap: 40px;
  padding: 20px 0;
}
.guide-page__info {
}
.guide-page__list {
}

.page-info {
  display: grid;
  gap: 10px;
}
.page-info__title {
  margin: 0;
  padding: 0;
}
.page-info__text {
}

.guide-button {
  background: linear-gradient(to bottom, #fad126, #ff544f);
  border: 1px solid #ee2a0e;
  border-radius: 7px;
  font-weight: bold;
  color: white !important;
  min-height: 3em;
  padding: 0.5em 1em;
  display: grid;
  align-content: center;
  justify-content: center;
  position: relative;
}
.guide-button img {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  height: 1em;
}

.guide-list {
  display: grid;
  gap: 10px;
}
.guide-list__item {
}

.guide {
  display: grid;
  gap: 10px;
}
.guide__toggle-trigger {
  cursor: pointer;
}
.guide__toggle-target {
  display: none;
}

.guide-header {
  border-radius: 5px;
  background-color: #ffdce6;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 20px;
  gap: 10px;
  transition: 0.4s;
}
.guide-header.is-active {
  background-color: #ee5d85;
}
.guide-header__icon {
}
.guide-header__icon img {
}
.guide-header__text {
  transition: 0.4s;
  color: #ee5d85;
  min-height: 4em;
  display: grid;
  align-content: center;
  font-weight: bold;
  font-size: 16px;
}
.guide-header.is-active .guide-header__text {
  color: white;
}
.guide-header__indicator {
}
.guide-header__indicator img {
  transition: 0.4s;
  transform: rotate(-180deg);
}
.guide-header.is-active .guide-header__indicator img {
  transform: rotate(0);
}

.guide-body {
  border: 1px solid #ee5d85;
  border-radius: 5px;
  padding: 20px 20px 40px;
}
.guide-body__layout {
  display: grid;
  grid-template:
    "thumb content"
    "thumb buttons"
    "thumb ." / 288px 1fr;
  gap: 20px 40px;
  align-content: start;
}
.guide-body__thumb {
  grid-area: thumb;
}
.guide-body__thumb img {
  width: 100%;
}
.guide-body__content {
  grid-area: content;
  padding-top: 20px;
}
.guide-body__buttons {
  grid-area: buttons;
  display: grid;
  justify-content: end;
  align-content: start;
}
.guide-body__buttons-item {
  width: 195px;
}
