.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 2px;
}

.faq-item {
  background: #b5b39e;
}

.faq-question {
  width: 100%;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  background: #b5b39e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question strong {
  font-size: 22px;
  font-weight: 400;
  transition: transform .35s ease;
}

.faq-item.is-open .faq-question strong {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition:
    max-height .45s ease,
    padding .45s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
  padding: 0 22px 22px;
}

.faq-answer__inner {
  background: #fff;
  padding: 28px;
  font-size: 14px;
  line-height: 1.6;
}

.page-sidebar {
  border: 1px solid var(--line);
  align-self: start;
}

.page-sidebar h3 {
  margin: 0;
  padding: 20px;
  background: #b5b39e;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.sidebar-post {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: #111;
  text-decoration: none;
  transition: background .25s ease;
}

.sidebar-post:hover {
  background: #f5f5f5;
}

.sidebar-post img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-post strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.sidebar-post small {
  display: block;
  margin-top: 5px;
  color: #aaa48a;
  font-size: 12px;
}

.sidebar-more {
  display: block;
  padding: 22px;
  text-align: center;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 991px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
}
