/* Voices landing */
.voices-landing,
.voices-hub {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.voices-landing.is-ready,
.voices-hub.is-ready {
  opacity: 1;
}

.voices-landing {
  background-color: #f5f7fb;
}

.voices-landing__hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 72px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .voices-landing__hero {
    padding: 100px 20px 48px;
  }
}

.voices-landing__showcase {
  position: relative;
  padding: 160px 0 160px;
  overflow: hidden;
  background-color: #0c1b39;
  margin-bottom: 200px;
}
@media screen and (max-width: 1080px) {
  .voices-landing__showcase {
    padding: 140px 0 140px;
  }
}

.voices-landing__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: hidden;
}
.voices-landing__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}
@media screen and (max-width: 768px) {
  /* Fill the viewport vertically on mobile and allow width to overflow for a cover-like fit. */
  .voices-landing__video {
    top: 50%;
    left: 50%;
    width: 177.78vh;
    max-width: 240vw;
    height: 100vh;
    max-height: 200vw;
    transform: translate(-50%, -50%);
  }
  .voices-landing__video iframe {
    width: 177.78vh;
    max-width: 240vw;
    height: 100vh;
    max-height: 200vw;
    transform: translate(-50%, -50%);
  }
}

.voices-landing__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 27, 57, 0.55) 0%, rgba(12, 27, 57, 0.82) 100%);
  pointer-events: none;
}

.voices-landing__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #1c3863;
  margin-bottom: 12px;
}

.voices-landing__title {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  color: #0c1b39;
  margin-bottom: 20px;
}
@media screen and (max-width: 1080px) {
  .voices-landing__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

.voices-landing__lead {
  font-size: 16px;
  line-height: 1.85;
  color: #3a4a63;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .voices-landing__lead {
    font-size: 14px;
    line-height: 1.7;
  }
}

.voices-landing__grid-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1080px) {
  .voices-landing__grid-wrapper {
    padding: 0 20px;
  }
}

.voices-landing__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1080px) {
  .voices-landing__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.voices-landing__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 24px rgba(12, 27, 57, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .voices-landing__card {
    padding: 28px 24px;
  }
  .voices-landing__card-link {
    width: 100%;
  }
}

.voices-landing__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #0c1b39;
}

.voices-landing__card-text {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a63;
  flex: 1 1 auto;
}

.voices-landing__card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: #1c3863;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.voices-landing__card-link:hover {
  background: #14294a;
  color: #fff;
  transform: translateY(-2px);
}

.voices-subnav {
  max-width: 1100px;
  margin: 24px auto 48px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.voices-subnav__item {
  position: relative;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #5c6c87;
  text-decoration: none;
  transition: color 0.2s ease;
}
.voices-subnav__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background-color 0.2s ease;
}
.voices-subnav__item:hover {
  color: #1c3863;
}
.voices-subnav__item:hover::after {
  background-color: rgba(28, 56, 99, 0.6);
}
.voices-subnav__item.is-active {
  color: #1c3863;
  font-weight: 700;
  pointer-events: none;
}
.voices-subnav__item.is-active::after {
  background-color: #1c3863;
}
@media screen and (max-width: 768px) {
  .voices-subnav {
    margin: 16px auto 32px;
    padding: 0 16px;
    gap: 16px;
  }
  .voices-subnav__item {
    font-size: 13px;
  }
}

/* Voices data list (publications / facilities) */
.voices-datalist {
  background-color: #f5f7fb;
  padding-bottom: 120px;
}
@media screen and (max-width: 1080px) {
  .voices-datalist {
    padding-bottom: 80px;
  }
}

.voices-datalist__hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .voices-datalist__hero {
    padding: 32px 20px 40px;
  }
}

.voices-datalist__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #1c3863;
  margin-bottom: 12px;
}

.voices-datalist__title {
  font-size: 36px;
  font-weight: 700;
  color: #0c1b39;
  margin-bottom: 20px;
}
@media screen and (max-width: 1080px) {
  .voices-datalist__title {
    font-size: 26px;
  }
}

.voices-datalist__lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.85;
  color: #3a4a63;
}

.voices-filter-group {
  max-width: 1040px;
  margin: 0 auto 32px;
  padding: 0 24px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .voices-filter-group {
    margin-bottom: 24px;
    padding: 0 20px;
  }
}

.voices-filter-group__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.voices-tag-filter {
  max-width: 1040px;
  margin: 0 auto 32px;
  padding: 0 24px;
}
@media screen and (max-width: 1080px) {
  .voices-tag-filter {
    padding: 0 20px;
    margin-bottom: 24px;
  }
}


.voices-tag-filter__header {
  text-align: center;
  margin-bottom: 0;
}

.voices-tag-filter__title {
  font-size: 20px;
  font-weight: 700;
  color: #0c1b39;
  margin: 0;
}

.voices-tag-filter__description {
  font-size: 14px;
  color: #3a4a63;
  margin: 0 0 16px;
  text-align: center;
}

.voices-tag-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.voices-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #d9e1ef;
  background-color: #fff;
  color: #2d3c54;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.voices-filter-chip.is-active {
  border-color: #1C3863;
  background-color: #1C3863;
  color: #fff;
}

@media screen and (min-width: 1081px) {
  .voices-filter-chip:not(.is-active):hover {
    border-color: #1C3863;
    color: #1C3863;
  }
}

.voices-filter-chip:focus-visible {
  outline: 2px solid #1C3863;
  outline-offset: 2px;
}

.voices-prefecture-filter {
  max-width: 1040px;
  margin: 0 auto 32px;
  padding: 0 24px;
}
@media screen and (max-width: 1080px) {
  .voices-prefecture-filter {
    padding: 0 20px;
    margin-bottom: 24px;
  }
}

.voices-prefecture-filter__panel {
  border: 1px solid #d9e1ef;
  border-radius: 16px;
  background-color: #fff;
  overflow: hidden;
}

.voices-prefecture-filter__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #0c1b39;
}

.voices-prefecture-filter__summary::-webkit-details-marker {
  display: none;
}

.voices-prefecture-filter__summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid #1c3863;
  border-bottom: 2px solid #1c3863;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.voices-prefecture-filter__panel[open] .voices-prefecture-filter__summary::after {
  transform: rotate(-135deg);
}

.voices-prefecture-filter__summary-state {
  font-size: 14px;
  font-weight: 500;
  color: #3a4a63;
}

.voices-prefecture-filter__body {
  border-top: 1px solid #d9e1ef;
  padding: 20px 24px 28px;
}
@media screen and (max-width: 600px) {
  .voices-prefecture-filter__body {
    padding: 16px 20px 24px;
  }
}

.voices-prefecture-filter__note {
  margin: 0 0 16px;
  font-size: 14px;
  color: #3a4a63;
}

.voices-prefecture-filter__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voices-prefecture-filter__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.voices-prefecture-filter__option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #0c1b39;
}

.voices-prefecture-filter__option input {
  margin-top: 2px;
}

.voices-prefecture-filter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.voices-prefecture-filter__submit {
  border: none;
  border-radius: 999px;
  background-color: #1c3863;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

@media screen and (min-width: 1081px) {
  .voices-prefecture-filter__submit:hover {
    background-color: #142748;
  }
}

.voices-prefecture-filter__submit:focus-visible {
  outline: 2px solid #0d1d37;
  outline-offset: 2px;
}

.voices-prefecture-filter__reset {
  font-size: 14px;
  font-weight: 600;
  color: #1c3863;
  text-decoration: underline;
}

.voices-prefecture-filter__reset:focus-visible {
  outline: 2px solid #1c3863;
  outline-offset: 2px;
}

.voices-cases-filter__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.voices-cases-filter__actions {
  margin-top: 12px;
}

.voices-cases-filter__accordion > summary {
  font-weight: 700;
}

.voices-cases-filter__groups {
  display: grid;
  gap: 20px;
}

.voices-cases-filter__group {
  border: 1px solid #d9e1ef;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0;
}

.voices-cases-filter__legend {
  font-size: 15px;
  font-weight: 700;
  color: #0c1b39;
  margin: 0 0 12px;
}

.voices-facilities__prefecture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}

.voices-facilities__prefecture-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #eef2f9;
  color: #1c3863;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.voices-facilities__prefecture-tag:focus-visible {
  outline: 2px solid #1c3863;
  outline-offset: 2px;
}

.voices-publications__category-list,
.voices-publications__tag-list,
.voices-hub__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.voices-publications__category,
.voices-publications__tag,
.voices-hub__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #eef2f9;
  color: #1c3863;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.voices-publications__category {
  background-color: #fff;
  border: 1px solid #d9e1ef;
}

@media screen and (min-width: 1081px) {
  .voices-publications__category:hover,
  .voices-publications__tag:hover,
  .voices-hub__tag:hover {
    background-color: #dfe6f4;
  }
}

.voices-publications__category:focus-visible,
.voices-publications__tag:focus-visible,
.voices-hub__tag:focus-visible {
  outline: 2px solid #1c3863;
  outline-offset: 2px;
}

.voices-datalist__layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 36px;
}
@media screen and (max-width: 1080px) {
  .voices-datalist__layout {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.voices-datalist__content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 24px rgba(12, 27, 57, 0.08);
}
@media screen and (max-width: 768px) {
  .voices-datalist__content {
    padding: 28px 24px;
  }
}

.voices-datalist__list {
  display: grid;
  gap: 24px;
  counter-reset: publication;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.voices-datalist__item {
  counter-increment: publication;
  position: relative;
  padding-left: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}
.voices-datalist__item::before {
  content: counter(publication) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: #1c3863;
}
.voices-datalist__item-reference {
  font-size: 15px;
  line-height: 1.8;
  color: #0c1b39;
}
.voices-datalist__item-note {
  font-size: 14px;
  color: #3a4a63;
  margin-top: 8px;
}
.voices-datalist__list .voices-datalist__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.voices-datalist__empty {
  font-size: 15px;
  color: #3a4a63;
}

.voices-datalist__aside {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: max-content;
}

.voices-datalist__aside-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 24px rgba(12, 27, 57, 0.08);
}
@media screen and (max-width: 1080px) {
  .voices-datalist__aside {
    position: static;
    top: auto;
  }
  .voices-datalist__aside-card {
    padding: 28px 24px;
  }
}

.voices-datalist__aside-title {
  font-size: 20px;
  font-weight: 700;
  color: #0c1b39;
  margin-bottom: 12px;
}

.voices-datalist__aside-text {
  font-size: 14px;
  line-height: 1.7;
  color: #3a4a63;
  margin-bottom: 16px;
}

.voices-datalist__form iframe {
  width: 100%;
  min-height: 720px;
  height: 720px;
  display: block;
  border: 0;
}

.voices-facilities__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voices-facilities__cta-link {
  width: 100%;
  justify-content: center;
}

.voices-facilities__item-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voices-facilities__department {
  margin: 0;
  font-size: 14px;
  color: #1c3863;
  font-weight: 600;
}

.voices-facilities__name {
  font-size: 18px;
  font-weight: 600;
  color: #0c1b39;
  margin: 0 0 12px;
}

.voices-facilities__meta {
  margin: 0;
  padding: 0;
}

.voices-facilities__note {
  font-size: 14px;
  color: #3a4a63;
  line-height: 1.7;
}

/* Voices hub redesign */
.voices-hub {
  background-color: #f5f7fb;
  padding-bottom: 120px;
}
@media screen and (max-width: 1080px) {
  .voices-hub {
    padding-bottom: 80px;
  }
}

.voices-hub__hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .voices-hub__hero {
    padding: 32px 20px 40px;
  }
}

.voices-hub__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #1C3863;
  margin-bottom: 12px;
}

.voices-hub__title {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0c1b39;
}
@media screen and (max-width: 1080px) {
  .voices-hub__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

.voices-hub__lead {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.85;
  color: #3a4a63;
}
@media screen and (max-width: 1080px) {
  .voices-hub__lead {
    font-size: 14px;
    line-height: 1.7;
  }
}

.voices-hub__note {
  max-width: 780px;
  margin: 12px auto 32px;
  font-size: 13px;
  line-height: 1.6;
  color: #62708a;
}
@media screen and (max-width: 1080px) {
  .voices-hub__note {
    font-size: 12px;
    margin: 10px auto 24px;
  }
}

.voices-hub__segments {
  max-width: 1040px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
@media screen and (max-width: 1080px) {
  .voices-hub__segments {
    padding: 0 20px;
    margin-bottom: 32px;
  }
}

.voices-hub__segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 1080px) {
  .voices-hub__segment-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.voices-hub__segment {
  position: relative;
  border: 1px solid #dfe5f2;
  border-radius: 18px;
  background-color: #fff;
  padding: 28px 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  font-family: inherit;
}
@media screen and (max-width: 640px) {
  .voices-hub__segment {
    padding: 24px 20px;
  }
}

.voices-hub__segment:hover,
.voices-hub__segment.is-active {
  border-color: #1C3863;
  box-shadow: 0 20px 40px rgba(18, 42, 82, 0.12);
  transform: translateY(-4px);
}

.voices-hub__segment-title {
  font-size: 20px;
  font-weight: 700;
  color: #0c1b39;
}

.voices-hub__segment-description {
  font-size: 14px;
  color: #3a4a63;
  line-height: 1.7;
}

.voices-hub__segment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6e7b92;
  gap: 12px;
}

.voices-hub__segment-lock {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background-color: #ffe9d7;
  color: #b1560f;
  font-weight: 700;
  padding: 6px 12px;
  font-size: 12px;
}

.voices-hub__segment-count {
  font-weight: 700;
  color: #1C3863;
  font-size: 14px;
}

.voices-hub__current-term {
  max-width: 1040px;
  margin: 0 auto 32px;
  background-color: #fff;
  border-left: 4px solid #1C3863;
  padding: 18px 28px;
  box-shadow: 0 12px 30px rgba(15, 31, 60, 0.08);
}
@media screen and (max-width: 1080px) {
  .voices-hub__current-term {
    margin: 0 20px 24px;
    padding: 16px 20px;
  }
}

.voices-hub__current-term-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #1C3863;
  margin-right: 12px;
}

.voices-hub__current-term-name {
  font-size: 18px;
  font-weight: 700;
  color: #0c1b39;
}

.voices-hub__current-term-description {
  margin-top: 8px;
  font-size: 14px;
  color: #3a4a63;
  line-height: 1.6;
}

.voices-hub__filters {
  max-width: 1040px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
@media screen and (max-width: 1080px) {
  .voices-hub__filters {
    padding: 0 20px;
    margin-bottom: 36px;
  }
}

.voices-hub__filter-form {
  background-color: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 18px 48px rgba(15, 31, 60, 0.08);
}
@media screen and (max-width: 1080px) {
  .voices-hub__filter-form {
    padding: 28px 24px;
  }
}

.voices-hub__filter-group {
  margin-bottom: 28px;
}
.voices-hub__filter-group:last-of-type {
  margin-bottom: 0;
}

.voices-hub__filter-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0c1b39;
  margin-bottom: 12px;
}

.voices-hub__keyword {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 640px) {
  .voices-hub__keyword {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

.voices-hub__keyword input[type="search"] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid #d9e1ef;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  background-color: #f8faff;
}

.voices-hub__submit-btn {
  min-width: 120px;
  border-radius: 8px;
  background-color: #1C3863;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 18px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 1081px) {
  .voices-hub__submit-btn:hover {
    opacity: 0.85;
  }
}

.voices-hub__options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px;
}

.voices-hub__pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.voices-hub__pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.voices-hub__pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e1ef;
  background-color: #fff;
  color: #2d3c54;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 99px;
  transition: 0.3s;
}

.voices-hub__pill input:checked + span {
  border-color: #1C3863;
  background-color: #1C3863;
  color: #fff;
}

@media screen and (min-width: 1081px) {
  .voices-hub__pill span:hover {
    border-color: #1C3863;
    color: #1C3863;
  }
}

.voices-hub__filter-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  .voices-hub__filter-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    align-items: stretch;
  }
}

.voices-hub__submit {
  border-radius: 8px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.voices-hub__submit--primary {
  background-color: #1C3863;
  color: #fff;
}
@media screen and (min-width: 1081px) {
  .voices-hub__submit--primary:hover {
    opacity: 0.85;
  }
}

.voices-hub__reset {
  font-size: 14px;
  color: #1C3863;
  font-weight: 600;
  text-decoration: underline;
}

.voices-hub__results {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 1080px) {
  .voices-hub__results {
    padding: 0 20px;
  }
}

.voices-hub__results-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 28px;
  gap: 16px;
}

.voices-hub__results--mask {
  position: relative;
}

.voices-hub__results--mask::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.voices-hub[data-md-guard-pending="true"] .voices-hub__grid,
.voices-hub[data-md-guard-pending="true"] .voices-hub__pagination {
  visibility: hidden;
}

.voices-hub[data-has-access="false"] .voices-hub__card[data-primary-service="md"],
.voices-hub[data-has-access="false"] .voices-hub__card[data-services~="md"] {
  display: none;
}

.voices-hub__md-guard-message {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 15px;
  color: #0c1b39;
  padding: 60px 0;
}
.voices-hub__md-guard-message p {
  margin: 0 0 12px;
  line-height: 1.8;
}
.voices-hub__md-guard-message p:last-child {
  margin-bottom: 0;
}
.voices-md-inline-actions {
  margin-top: 24px;
  display: inline-flex;
  gap: 16px;
}
.voices-md-inline-action {
  min-width: 140px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid #1C3863;
  cursor: pointer;
  transition: 0.3s;
}
.voices-md-inline-action--no {
  background-color: #fff;
  color: #1C3863;
}
.voices-md-inline-action--yes {
  background-color: #1C3863;
  color: #fff;
}
@media screen and (min-width: 1081px) {
  .voices-md-inline-action--no:hover {
    background-color: #e5ecf5;
  }
  .voices-md-inline-action--yes:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 640px) {
  .voices-md-inline-actions {
    flex-direction: column;
    width: 100%;
  }
  .voices-md-inline-action {
    width: 100%;
  }
}

[data-md-guard-pending="true"] .voices-hub__grid,
[data-md-guard-pending="true"] .voices-hub__card,
[data-md-guard-pending="true"] .voices-hub__pagination {
  display: none;
}
@media screen and (max-width: 640px) {
  .voices-hub__results-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}

.voices-hub__count {
  font-size: 16px;
  font-weight: 700;
  color: #0c1b39;
}

.voices-hub__applied-filter {
  font-size: 14px;
  color: #3a4a63;
}
.voices-hub__applied-filter span {
  font-weight: 700;
  color: #1C3863;
}

.voices-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
@media screen and (max-width: 1080px) {
  .voices-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .voices-hub__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.voices-hub__card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 31, 60, 0.08);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  transition: 0.3s;
}
@media screen and (min-width: 1081px) {
  .voices-hub__card:hover {
    -webkit-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
            transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(15, 31, 60, 0.12);
  }
}

.voices-hub__card-media img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1080px) {
  .voices-hub__card-media img {
    height: 200px;
  }
}
@media screen and (max-width: 640px) {
  .voices-hub__card-media img {
    height: 180px;
  }
}

.voices-hub__card-body {
  padding: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  height: 100%;
}

.voices-hub__card-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
}

.voices-hub__card-organization,
.voices-hub__card-doctor {
  font-size: 13px;
  color: #506184;
  line-height: 1.6;
  margin: 0;
}

.voices-hub__card-doctor {
  font-weight: 600;
}

.voices-hub__badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 12px;
  line-height: 1;
}

.voices-hub__badge--type {
  background-color: #e5ecf5;
  color: #1C3863;
}

.voices-hub__primary-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.voices-hub__badge--primary {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.voices-hub__badge--primary-md {
  background-color: #1C3863;
}

.voices-hub__badge--primary-vs {
  background-color: #0072B8;
}

.voices-hub__badge--primary-edu {
  background-color: #E77400;
}

.voices-hub__badge--primary-biz {
  background-color: #B41D23;
}

.voices-hub__badge--service {
  color: #fff;
}

.voices-hub__badge--service-md {
  background-color: #1C3863;
}

.voices-hub__badge--service-vs {
  background-color: #0072B8;
}

.voices-hub__badge--service-edu {
  background-color: #E77400;
}

.voices-hub__badge--service-biz {
  background-color: #B41D23;
}

.voices-hub__card-title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #0c1b39;
}
@media screen and (max-width: 1080px) {
  .voices-hub__card-title {
    font-size: 18px;
  }
}

.voices-hub__card-excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: #3a4a63;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voices-hub__card-meta-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
}

.voices-hub__meta-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  background-color: #edf2fb;
  color: #1C3863;
}

.voices-hub__meta-tag--purpose {
  background-color: #f2eaf9;
  color: #5c2b97;
}

.voices-hub__card-meta {
  font-size: 12px;
  color: #6e7b92;
}

.voices-hub__card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #1C3863;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  text-align: center;
  transition: 0.3s;
}
@media screen and (min-width: 1081px) {
  .voices-hub__card-link:hover {
    opacity: 0.85;
  }
}

.voices-hub__pagination {
  margin-top: 48px;
}

.voices-hub__empty {
  text-align: center;
  font-size: 15px;
  color: #3a4a63;
  padding: 48px 0;
}

.voices-md-guard[hidden] {
  display: none;
}

.voices-md-guard {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1200;
}

.voices-md-guard.is-active {
  opacity: 1;
  pointer-events: auto;
}

.voices-md-guard__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.voices-md-guard__dialog {
  position: relative;
  width: 440px;
  background-color: #fff;
  border-radius: 10px;
  padding: 32px 36px;
  box-shadow: 0 28px 48px rgba(15, 31, 60, 0.2);
  transform: translateY(20px);
  transition: transform 0.2s ease;
}

.voices-md-guard.is-active .voices-md-guard__dialog {
  transform: translateY(0);
}

@media screen and (max-width: 1080px) {
  .voices-md-guard__dialog {
    width: calc(100% - 40px);
    padding: 28px 24px;
  }
}

.voices-md-guard__close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 24px;
  color: #6e7b92;
  background: none;
  border: none;
  cursor: pointer;
}

.voices-md-guard__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0c1b39;
}

.voices-md-guard__description {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a63;
  margin-bottom: 16px;
}

.voices-md-guard__note {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a63;
  margin-bottom: 16px;
}

.voices-md-guard__question {
  font-size: 15px;
  font-weight: 600;
  color: #0c1b39;
  margin-bottom: 24px;
}

.voices-md-guard__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 640px) {
  .voices-md-guard__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.voices-md-guard__action {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #1C3863;
}

.voices-md-guard__action--no {
  background-color: #fff;
  color: #1C3863;
}
@media screen and (min-width: 1081px) {
  .voices-md-guard__action--no:hover {
    background-color: #e5ecf5;
  }
}

.voices-md-guard__action--yes {
  background-color: #1C3863;
  color: #fff;
}
@media screen and (min-width: 1081px) {
  .voices-md-guard__action--yes:hover {
    opacity: 0.85;
  }
}

body.voices-md-guard-open {
  overflow: hidden;
}
