
/* =========================================
   Homepage — Browse / Credibility / Corrections
   Consolidated
   ========================================= */


body.page-node-1237 .node__content  {
	margin-top:0;
}

.v-browse,
.v-cred,
.v-corrections {
  padding: 0 0 56px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 255, 0.98) 100%
  );
}

.v-browse__inner,
.v-cred__inner,
.v-corrections__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.v-browse__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.v-browse__title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f2352;
}


.v-browse__sub {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(31, 35, 82, 0.74);
  max-width: 70ch;
}

tr td, tr th {
	border: 1px solid #cac5e2;
}


.highlighted .nav-link {
	color: rgb(173, 173, 173);
}

/* =========================
   Browse cards
   ========================= */

.v-browse__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Pair each icon + content into the same grid cell */
.v-browse__grid > :nth-child(1),
.v-browse__grid > :nth-child(2) {
  grid-column: 1;
  grid-row: 1;
}

.v-browse__grid > :nth-child(3),
.v-browse__grid > :nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}

.v-browse__grid > :nth-child(5),
.v-browse__grid > :nth-child(6) {
  grid-column: 1;
  grid-row: 2;
}

.v-browse__grid > :nth-child(7),
.v-browse__grid > :nth-child(8) {
  grid-column: 2;
  grid-row: 2;
}

.v-browse__icon {
  z-index: 2;
  align-self: start;
  justify-self: start;
  margin: 16px 0 0 16px;
  pointer-events: none;
}

.v-browse__icon > .v-browse__card {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 255, 0.98) 100%
  );
  border: 1px solid rgba(28, 34, 86, 0.08);
  box-shadow:
    0 10px 24px rgba(28, 34, 86, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  color: #1f2352;
  text-decoration: none;
  pointer-events: none;
}

.v-browse__icon svg {
  width: 28px;
  height: 28px;
}

.v-browse__content {
  z-index: 1;
  min-height: 200px;
  padding: 18px 22px 20px 88px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 255, 0.98) 100%
  );
  border: 1px solid rgba(28, 34, 86, 0.08);
  box-shadow:
    0 10px 24px rgba(28, 34, 86, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.v-browse__h {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
  color: #1f2352;
}

.v-browse__p {
  margin: 0 0 18px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(31, 35, 82, 0.72);
  max-width: 42ch;
}

.v-browse__content p:last-child {
  margin: 0;
}

.v-browse__card {
  color: inherit;
  text-decoration: none;
}

.v-browse__h .v-browse__card:hover,
.v-browse__p .v-browse__card:hover {
  color: #5a46f2;
}

.v-browse__content:hover {
  border-color: rgba(0, 0, 0, .16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .06);
  transform: translateY(-1px);
  background: #0006660f;
}

/* Remove the weird outer "button" wrapper look */
.v-browse__content > p:last-child > .v-browse__card {
  display: inline-block;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
}

.v-browse__content > p:last-child > .v-browse__card:hover {
  color: inherit;
}

.v-browse__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(28, 34, 86, 0.12);
  color: #1f2352;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.v-browse__content > p:last-child > .v-browse__card:hover .v-browse__cta {
  background: rgba(90, 70, 242, 0.06);
  border-color: rgba(90, 70, 242, 0.18);
  color: #5a46f2;
}

/* =========================
   Credibility card
   ========================= */

.v-cred__card,
.v-corrections__card {
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(248, 250, 255, 0.99) 100%
  );
  border: 1px solid rgba(28, 34, 86, 0.08);
  box-shadow:
    0 10px 24px rgba(28, 34, 86, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.v-cred__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(31, 35, 82, 0.08);
}

.v-cred__icon,
.v-corrections__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(90, 70, 242, 0.07);
  color: #5a46f2;
  flex: 0 0 auto;
}

.v-cred__icon svg,
.v-corrections__icon svg {
  width: 22px;
  height: 22px;
}

.v-cred__title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f2352;
}

.v-cred__sub {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(31, 35, 82, 0.72);
  max-width: 62ch;
}

.v-cred__cta-wrap {
  align-self: center;
}

.v-cred__cta,
.v-corrections__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(28, 34, 86, 0.12);
  color: #1f2352;
  text-decoration: none;
  font-weight: 700;
}

.v-cred__cta:hover,
.v-corrections__cta:hover {
  color: #5a46f2;
  border-color: rgba(90, 70, 242, 0.18);
  background: rgba(90, 70, 242, 0.06);
}

.v-cred__body {
  padding: 18px 24px 22px;
}

.v-cred__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.v-cred__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(31, 35, 82, 0.74);
}

.v-cred__tick {
  color: #5a46f2;
  font-weight: 800;
  line-height: 1.4;
}

.v-cred__note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(31, 35, 82, 0.7);
}

/* =========================
   Corrections card
   ========================= */

.v-corrections__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
}

.v-corrections__title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1f2352;
}

.v-corrections__text {
  margin: 0 0 14px;
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(31, 35, 82, 0.72);
  max-width: 70ch;
}

.v-corrections__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.v-corrections__note {
  font-size: 0.92rem;
  color: rgba(31, 35, 82, 0.62);
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1100px) {
  .v-browse__grid {
    grid-template-columns: 1fr;
  }

  .v-browse__grid > :nth-child(1),
  .v-browse__grid > :nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }

  .v-browse__grid > :nth-child(3),
  .v-browse__grid > :nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .v-browse__grid > :nth-child(5),
  .v-browse__grid > :nth-child(6) {
    grid-column: 1;
    grid-row: 3;
  }

  .v-browse__grid > :nth-child(7),
  .v-browse__grid > :nth-child(8) {
    grid-column: 1;
    grid-row: 4;
  }

  .v-cred__head {
    grid-template-columns: auto 1fr;
  }

  .v-cred__cta-wrap {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .v-browse,
  .v-cred,
  .v-corrections {
    padding: 0 0 44px;
  }

  .v-browse__inner,
  .v-cred__inner,
  .v-corrections__inner {
    padding: 0 10px;
  }

  .v-browse__title {
    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .v-browse__icon {
    margin: 16px 0 0 16px;
  }

  .v-browse__icon > .v-browse__card {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .v-browse__content {
    min-height: 0;
    padding: 18px 18px 18px 84px;
    border-radius: 18px;
  }

  .v-cred__head,
  .v-corrections__card {
    grid-template-columns: 1fr;
    padding: 20px 18px 18px;
  }

  .v-cred__body {
    padding: 18px;
  }
}



.vot-guide-hero__inner {
  background: linear-gradient(135deg, #12344d 0%, #0f5b5f 100%);
  color: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 18px 45px rgba(16, 36, 56, 0.12);
}

.vot-guide-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ee6b5;
  margin-bottom: 12px;
}

.vot-guide-hero__title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
	font-weight: 800;
	color: #06011b;
	
}

.vot-guide-hero__intro {
  max-width: 980px;
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: gba(78, 78, 78, 0.92);
	color: #000!important;
}

.vot-guide-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  font-size: 0.95rem;
}

.vot-guide-progress a {
  color: #018fe2;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.vot-guide-progress a:hover,
.vot-guide-progress a:focus {
  border-color: #018fe2;
  opacity: 1;
}

.vot-guide-progress span {
  color: rgba(55, 67, 252, 0.6);
}

.vot-guide-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.vot-guide-stats-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.vot-guide-stat {
  background: #fff;
  border: 1px solid #c4c4c4;
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 32, 48, 0.05);
}

.vot-guide-stat__value {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
  color: #41155f;
  margin-bottom: 8px;
}

.vot-guide-stat__label {
  display: block;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #486172;
}

.vot-guide-subnav {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid #dbe5ee;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 32, 48, 0.08);
}

.vot-guide-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  color: #163046;
  background: #f4f8fb;
  border: 1px solid #dde7ef;
  transition: all 0.2s ease;
}

.vot-guide-subnav a:hover,
.vot-guide-subnav a:focus {
  color: #260a4e;
  border-color: #9d8ee6;
  background: #eeeefc;
}

.vot-guide-section {
  scroll-margin-top: 110px;
  margin-bottom: 56px;
}

.vot-guide-section__header {
  margin-bottom: 18px;
}

.vot-guide-section__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #603f77;
  margin-bottom: 6px;
}

.vot-guide-section__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #102c3c;
	font-weight: 700;
	text-align: center;
}

.vot-guide-grid {
  display: grid;
  gap: 18px;
}

.vot-guide-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vot-guide-card {
  background: #fff;
  border: 1px solid #c4c4c4;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(16, 36, 56, 0.06);
  margin-bottom: 18px;
	
}

.vot-guide-card h3 {
 margin: 20px 0 12px;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #484848;
	font-weight: 700;
}

.vot-guide-card p:last-child,
.vot-guide-card ul:last-child {
  margin-bottom: 0;
}

.vot-guide-card p {
  margin: 0 0 14px;
  line-height: 1.72;
  color: #1f1f1f;
}

.vot-guide-highlight {
  border-color: #c4c4c4;
  background: linear-gradient(180deg, #f8fffb 0%, #ffffff 100%);
}

.vot-guide-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #2b2535;
}

.vot-guide-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.vot-guide-table-wrap {
  overflow-x: auto;
}

.vot-guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.vot-guide-table th,
.vot-guide-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 12px;
  border-bottom: 1px solid #b6bfc6;
  line-height: 1.55;
}

.vot-guide-table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #41155f;
  background: #e4e2e9;
}

.vot-guide-table td {
  color: #355065;
}

.vot-guide-footer {
  padding-top: 8px;
  border-top: 1px solid #dbe5ee;
}

.vot-guide-footer__text {
  margin: 0;
  font-size: 0.95rem;
  color: #557082;
}

/* Responsive */
@media (max-width: 980px) {
  .vot-guide-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .vot-guide-grid--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vot-guide-page {
    padding-top: 20px;
  }

  .vot-guide-hero__inner {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .vot-guide-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .vot-guide-card {
    padding: 20px;
    border-radius: 18px;
  }

  .vot-guide-subnav {
    top: 10px;
  }
}

	
.vot-compare-section {
  margin: 40px 0;
}

.vot-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.vot-compare-card {
  background: #fff;
  border: 1px solid #d8d2cb;
  border-radius: 8px;
  padding: 22px 24px 24px;
  box-shadow: none;
}

.vot-compare-card--federal {
  border-top: 3px solid #1e6f7a;
}

.vot-compare-card--state {
  border-top: 3px solid #c65a1e;
}

.vot-compare-card__title {
  margin: 4px 0 18px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vot-compare-card--federal .vot-compare-card__title {
  color: #1e6f7a;
}

.vot-compare-card--state .vot-compare-card__title {
  color: #c65a1e;
}

.vot-compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vot-compare-list li {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 18px;
  border-bottom: 1px solid #ddd6cf;
  color: #1d2a44;
  font-size: 1rem;
  line-height: 1.45;
}

.vot-compare-list li:last-child {
  border-bottom: 0;
}

.vot-compare-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 1.1rem;
  line-height: 1;
}

.vot-compare-card--federal .vot-compare-list li::before {
  color: #1e6f7a;
}

.vot-compare-card--state .vot-compare-list li::before {
  color: #c65a1e;
}

@media (max-width: 820px) {
  .vot-compare-grid {
    grid-template-columns: 1fr;
  }
}
.vot-guide-page {
  background: #f7f4ef;
  color: #1d2a44;
}

.vot-guide-card,
.vot-compare-card {
  background: #fcfbf9;
}

.vot-guide-card p,
.vot-guide-list li,
.vot-compare-list li {
  font-family: Inter, "Times New Roman", serif;
  font-size: 1rem;
}
.vot-guide-page {
  color: #1d2a44;
  padding: 0 0 64px;
}

.vot-guide-hero-band {
  margin-bottom: 0;
}

.vot-guide-hero-band--bleed {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 22px 24px 0;
}

.vot-guide-hero-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.vot-guide-hero {
  width: 100%;
  margin: 0 0 24px;
}

.vot-guide-hero__inner {
  width: 100%;
  border-radius: 24px;
}


.vot-guide-shell {
  border-radius: 24px;
  padding: 22px;
}

.vot-browse-listing-hero {
  border-bottom: 1px solid rgba(216, 218, 234, 0.94);
  padding: 40px 20px;;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
 background: linear-gradient(to top, #f3f3ff, #5056cc);
	margin-bottom: 50px;
}
.vot-browse-listing-hero .vot-container, .vot-browse-listing .vot-container {
	max-width: 1290px;
	margin: 0 auto;
	padding: 20px 40px;
}
.vot-browse-listing-hero__eyebrow {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e6e7ed;
  margin-bottom: 0.5rem;
}
.vot-guide-subnav p {
	margin-bottom: 0;
	
	
	
	
}
@media (max-width: 460px) {
.vot-guide-shell {
  border-radius: 24px;
  padding: 5px;
}

}

.article-meta { 
color: #454560;
font-size: 14px;
  font-weight: 700;
margin: 30px 0 0 0;
}

.vot-search-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.vot-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 20px;
}

.vot-split__media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.vot-split__content p {
  margin-bottom: 16px;
}

.callout-quote {
	font-size: 17px;
	color: #fff!important;
}

.callout {
	border: 1px solid #cbc4c4;
  padding: 20px;
  font-family: public sans, "Times New Roman", serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 14px 36px rgba(16, 36, 56, 0.06);
 background: radial-gradient(circle at top left, rgba(72, 187, 120, 0.18), transparent 34%), linear-gradient(135deg, #5931e7 0%, #3b209b 58%, #5931e7 100%);
}

.mb-50 {
	margin-bottom: 50px;
}

.mt-20 {
	margin-top: 20px;
}

.vot-learn-tabs a.is-active,
.vot-learn-tabs .active {
  background: #5b35e6;
  color: #fff;
  border-color: #5b35e6;
}
