.guide-page .election-news {
	padding-bottom: 0;
}

.guide-page-head {
  margin-bottom: 12px;
}

.guide-page .page-title {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.guide-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.guide-side-nav {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: #f6f6f6;
  padding: 32px 34px 32px 38px;
}

.guide-side-nav::-webkit-scrollbar {
  width: 6px;
}

.guide-side-nav::-webkit-scrollbar-thumb {
  background: #555;
}

.guide-nav-group + .guide-nav-group {
  margin-top: 62px;
}

.guide-nav-group h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.guide-nav-group a {
  display: block;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 14px 14px;
}

.guide-nav-group a.is-active {
  color: #8a8a8a;
}

.guide-mobile-nav {
  display: none;
}

.guide-accordion {
  padding-top: 10px;
}

.guide-accordion-item {
  scroll-margin-top: 130px;
}


.guide-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 18px;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  list-style: none;
    padding-bottom: 18px;
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 18px;
}

.guide-accordion-item + .guide-accordion-item summary {
  padding-top: 24px;
}

.guide-accordion-item summary::-webkit-details-marker {
  display: none;
}

.guide-accordion-item summary::after {
  content: "expand_more";
  flex: 0 0 auto;
  font-family: "Material Symbols Rounded";
  font-size: 22px;
  font-weight: 400;
}

.guide-accordion-item[open] summary {
  padding-bottom: 18px;
}

.guide-accordion-item[open] summary::after {
  content: "expand_less";
}

.guide-answer {
  padding: 0 0 34px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
}

.guide-answer h3 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.guide-answer h3:not(:first-child) {
  margin-top: 26px;
}

.guide-answer p {
  margin: 0 0 14px;
}

.guide-answer a {
  border-bottom: 1px solid currentColor;
  color: var(--text);
}

.guide-answer ul {
  display: grid;
  gap: 12px;
  margin: 12px 0 24px;
  padding-left: 20px;
  list-style: disc;
}

.guide-answer li {
  padding-left: 4px;
}

.guide-video-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin-top: 42px;
  margin-left: calc(50% - 50vw);
  padding: 30px 0 34px;
  background: #fbf3e9;
}

.guide-video-head {
  width: min(var(--max), calc(100% - 32px));
  margin-bottom: 20px;
}

.guide-video-head .hero-title {
  margin: 0;
}

.guide-video-frame {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
}

.guide-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.guide-answer-note {
  margin-top: 28px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .guide-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 32px;
  }

  .guide-side-nav {
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  .guide-page .wrap {
    width: min(100% - 24px, var(--max));
  }

  .guide-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guide-side-nav {
    display: none;
  }

  .guide-mobile-nav {
    display: block;
    width: 100%;
    margin: 22px 0 34px;
    position: relative;
  }

  .guide-mobile-nav summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    list-style: none;
    padding: 0 18px 0 12px;
  }

  .guide-mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .guide-mobile-nav summary::after {
    content: "expand_more";
    flex: 0 0 auto;
    font-family: "Material Symbols Rounded";
    font-size: 22px;
    font-weight: 400;
  }

  .guide-mobile-nav[open] summary::after {
    content: "expand_less";
  }

  .guide-mobile-nav-menu {
    display: grid;
    border: 1px solid #cfcfcf;
    border-top: 0;
    background: #fff;
  }

  .guide-mobile-nav-menu button {
    border: 0;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    font-size: 18px;
    line-height: 1.25;
    padding: 7px 12px;
    text-align: left;
  }

  .guide-mobile-nav-menu button.is-active {
    background: #1f6ed4;
    color: #fff;
  }

  .guide-accordion {
    padding-top: 0;
  }

  .guide-accordion-item {
    scroll-margin-top: 100px;
  }
}
