:root {
  --navy: #0d2b5f;
  --blue: #2f68ce;
  --sky: #eaf7fb;
  --teal: #54c8c1;
  --text: #14315b;
  --muted: #5f7396;
  --line: #d8e3f0;
  --shadow: 0 18px 36px rgba(27, 73, 122, 0.12);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  background: #fff;
  letter-spacing: 0;
}

.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button {
  font: inherit;
}

button:disabled {
  cursor: default;
  opacity: 0.45;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: -12px 0 28px;
}

.filter-control {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #c9d8e8;
  border-radius: 999px;
  color: #26456e;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.filter-control.is-active,
.filter-control:hover {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 10px 20px rgba(13, 43, 95, 0.14);
}

.filter-chip {
  cursor: pointer;
  transition: filter 0.2s ease, outline-color 0.2s ease;
}

.filter-chip:hover {
  filter: brightness(1.08);
}

.filter-chip.is-active {
  outline: 2px solid rgba(13, 43, 95, 0.24);
  outline-offset: 2px;
}

.filter-control:focus-visible,
.filter-chip:focus-visible,
.round-nav:focus-visible,
.search-tags button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.is-filter-hidden {
  display: none !important;
}

.filter-empty {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 0 clamp(24px, 4.2vw, 52px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 227, 240, 0.72);
}

.brand {
  flex: 0 0 auto;
  color: #061d42;
  font-weight: 800;
  line-height: 1.2;
}

.brand span {
  display: block;
  font-size: clamp(17px, 1.5vw, 21px);
}

.brand small {
  display: block;
  margin-top: 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
}

.global-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
  font-size: 13px;
  font-weight: 600;
  color: #061d42;
  white-space: nowrap;
}

.global-nav .primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-search {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-search {
  display: flex;
  flex: 0 1 230px;
  min-width: 190px;
  height: 42px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #c9d8e8;
  border-radius: 999px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search:focus-within,
.site-search:hover {
  border-color: var(--navy);
  box-shadow: 0 10px 22px rgba(13, 43, 95, 0.1);
}

.site-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 0 0 18px;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.site-search input::placeholder {
  color: #7187a5;
}

.site-search button {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-search button:hover {
  color: #fff;
  background: var(--navy);
}

.site-search svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outline-button {
  display: inline-flex;
  min-width: 112px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.outline-button:hover,
.primary-button:hover,
.white-button:hover {
  transform: translateY(-2px);
}

.outline-button:hover {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(13, 43, 95, 0.16);
}

.menu-button {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.15fr);
  min-height: 670px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.96) 0 24%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(90deg, #f5fbff 0%, #eef9fc 41%, #d3f1fa 100%);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  margin-left: max(28px, calc((100vw - var(--max)) / 2));
  padding: 56px 0 64px clamp(12px, 2vw, 20px);
}

.hero h1 {
  margin: 0 0 26px;
  color: var(--navy);
  font-size: clamp(46px, 5.3vw, 73px);
  font-weight: 500;
  line-height: 1.32;
}

.hero-lead {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.hero-text {
  max-width: 430px;
  margin: 0;
  color: #203d68;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.25;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 34px;
}

.primary-button,
.white-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-button {
  min-width: min(100%, 340px);
  color: #fff;
  background: linear-gradient(135deg, #0d2b5f, #153c7d);
  box-shadow: 0 16px 28px rgba(13, 43, 95, 0.22);
  transition: box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.primary-button:hover {
  filter: brightness(1.07);
  box-shadow: 0 20px 34px rgba(13, 43, 95, 0.28);
}

.primary-button svg,
.white-button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.text-link:hover {
  color: var(--blue);
}

.text-link svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid var(--navy);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  background:
    linear-gradient(90deg, rgba(245, 251, 255, 0.45), rgba(245, 251, 255, 0) 35%),
    var(--hero-image, url("../images/hero.png")) center 22% / cover no-repeat;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(83, 190, 219, 0.18));
  pointer-events: none;
}

.count-badge {
  position: absolute;
  right: clamp(36px, 8vw, 98px);
  bottom: 68px;
  z-index: 1;
  display: grid;
  width: clamp(170px, 17vw, 234px);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f68ce 0%, #59d0c4 100%);
  box-shadow: 0 24px 42px rgba(29, 110, 186, 0.25);
}

.count-badge span {
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 800;
}

.count-badge strong {
  margin: 2px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(66px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.95;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px clamp(24px, 3vw, 32px);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.35;
}

.view-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.view-link:hover {
  color: var(--blue);
}

.view-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #9ab1cc;
  border-radius: 50%;
}

.company-slider {
  position: relative;
}

.company-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.company-strip::-webkit-scrollbar {
  display: none;
}

.company-card,
.article-card {
  overflow: hidden;
  background: #fff;
  transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.company-card {
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: 0;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.company-card a,
.article-card a {
  display: block;
  height: 100%;
}

.company-card:hover,
.article-card:hover,
.search-result-card:hover {
  background: #f8fbff;
  border-color: #cfe0f2;
  box-shadow: 0 14px 30px rgba(27, 73, 122, 0.12);
}

.company-card img {
  display: block;
  width: 100%;
  height: clamp(128px, 12vw, 178px);
  aspect-ratio: 1.45;
  object-fit: cover;
  transition: filter 0.24s ease, box-shadow 0.24s ease;
}

.company-card:hover img,
.article-card:hover img {
  filter: brightness(1.03) saturate(1.04);
}

.card-body {
  padding: 18px 18px 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 12px;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.tag.blue,
.tag.navy {
  background: #234f9e;
}

.tag.green {
  background: #56b88e;
}

.tag.teal {
  background: #2c96a3;
}

.tag.mint,
.tag.light {
  background: #54bfc4;
}

.company-card h2,
.company-card h3,
.article-card h2,
.article-card h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.company-card:hover h2,
.company-card:hover h3,
.article-card:hover h2,
.article-card:hover h3 {
  color: var(--blue);
}

.company-card p {
  min-height: 52px;
  margin: 0 0 18px;
  color: #2d4770;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.company-card small {
  position: relative;
  display: block;
  padding-left: 20px;
  color: #476489;
  font-size: 12px;
  font-weight: 800;
}

.company-card small::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "";
  width: 14px;
  height: 14px;
  background: #7a808b;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='3' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='3' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.round-nav {
  position: absolute;
  top: 88px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid #d5e2ef;
  border-radius: 50%;
  color: #6a83a2;
  background: #fff;
  box-shadow: 0 10px 24px rgba(28, 74, 121, 0.15);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.round-nav:hover {
  color: #fff;
  background: var(--navy);
  transform: translateY(-2px);
}

.round-nav.prev {
  left: -16px;
}

.round-nav.next {
  right: -16px;
}

.reason-section {
  padding: 70px clamp(24px, 4vw, 48px);
  background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}

.centered {
  display: block;
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.centered p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 56px);
  max-width: var(--max);
  margin: 0 auto;
}

.reason-grid article {
  text-align: center;
}

.reason-grid svg {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  fill: none;
  stroke: #3a77c7;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-grid h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 17px;
}

.reason-grid p {
  margin: 0;
  color: #435d81;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.article-section {
  padding-top: 70px;
  padding-bottom: 82px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  border: 1px solid transparent;
  border-radius: 8px;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.42;
  margin-bottom: 18px;
  border-radius: 6px;
  object-fit: cover;
  transition: filter 0.24s ease, box-shadow 0.24s ease;
}

.article-card h2,
.article-card h3 {
  min-height: 78px;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  overflow: visible;
}

.company-section .archive-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-section .company-card img {
  height: clamp(150px, 13vw, 190px);
}

.interview-archive-grid .article-card img {
  height: clamp(150px, 13vw, 190px);
  aspect-ratio: auto;
  object-position: center;
}

.interview-archive-grid .article-card h2 {
  font-weight: 700;
}

.interview-archive-grid .article-card p {
  font-weight: 500;
}

.article-card p,
.article-card time {
  display: block;
  margin: 0 0 10px;
  color: #4b6385;
  font-size: 12px;
  font-weight: 700;
}

.single-content {
  max-width: 1000px;
}

.single-content h1 {
  margin: 24px 0 20px;
  color: var(--navy);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.42;
}

.single-eyecatch {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 540px);
  margin: 0 0 26px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.single-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 28px;
  padding: 0;
}

.single-article-meta div {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d8e3f0;
  border-radius: 999px;
  background: #f8fbff;
}

.single-article-meta dt,
.single-article-meta dd {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.single-article-meta dt {
  padding: 8px 12px;
  color: #fff;
  background: var(--navy);
}

.single-article-meta dd {
  padding: 8px 14px;
  color: var(--navy);
}

.single-article-meta .single-article-meta-company {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.single-article-meta .single-article-meta-company dt {
  display: none;
}

.single-article-meta .single-article-meta-company dd {
  padding: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.single-article-meta .single-article-meta-area {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.single-article-meta .single-article-meta-area dt {
  display: none;
}

.single-article-meta .single-article-meta-area dd {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: #7a808b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.single-article-meta .single-article-meta-area dd::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='3' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='3' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.single-company-meta {
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 18px;
}

.single-company-meta .single-company-meta-name,
.single-company-meta .single-company-meta-area {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.single-company-meta .single-company-meta-name dt,
.single-company-meta .single-company-meta-area dt {
  display: none;
}

.single-company-meta .single-company-meta-name dd {
  padding: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
}

.single-company-meta .single-company-meta-area dd {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: #7a808b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.single-company-meta .single-company-meta-area dd::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='3' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='3' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.entry-content {
  color: #2d4770;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3 {
  margin: 2em 0 0.8em;
  color: var(--navy);
  line-height: 1.5;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.4em;
}

.page-links {
  margin-top: 28px;
}

.related-articles {
  margin-top: 64px;
  padding-top: 42px;
  border-top: 1px solid #e5edf5;
}

.related-articles .section-heading {
  margin-bottom: 26px;
}

.related-article-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 38px;
}

.page-numbers {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #c9d8e8;
  border-radius: 999px;
  color: #26456e;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.page-numbers.current,
.page-numbers:hover {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.archive-filter {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin: -8px 0 30px;
  padding: 22px;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  background: #f8fbff;
}

.archive-filter-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.archive-filter-field select {
  width: 100%;
  min-height: 44px;
  padding: 0 42px 0 16px;
  border: 1px solid #c9d8e8;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.archive-filter-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.archive-filter-submit {
  min-width: 140px;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

.archive-filter-reset {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.archive-filter-reset:hover {
  color: var(--blue);
}

.archive-filter-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 24px;
}

.archive-filter-summary span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--navy);
  background: #eaf7fb;
  font-size: 12px;
  font-weight: 900;
}

.company-content-section {
  max-width: 1180px;
}

.company-content-section .section-heading {
  align-items: flex-end;
}

.company-content-section .section-heading h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.35;
}

.company-content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
}

.company-content-card {
  border: 1px solid #e5edf5;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.company-content-card img {
  width: 100%;
  height: clamp(230px, 22vw, 320px);
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.company-content-card .card-body {
  min-height: 176px;
  padding: 24px 28px 28px;
}

.company-content-card h2 {
  min-height: 0;
  margin: 18px 0 16px;
  font-size: 22px;
  line-height: 1.5;
}

.company-content-card p {
  min-height: 0;
  margin: 0;
  color: #4b6385;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.search-results-section .section-heading {
  margin-bottom: 20px;
}

.search-results-form {
  margin-bottom: 18px;
}

.search-results-form .site-search {
  max-width: 520px;
  min-width: 0;
}

.search-summary {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.search-results-grid {
  margin-top: 24px;
}

.search-result-card img {
  height: clamp(150px, 13vw, 190px);
  aspect-ratio: auto;
  object-position: center;
}

.search-result-meta {
  color: var(--navy);
  font-weight: 900;
}

.cta-band {
  display: grid;
  min-height: 280px;
  place-items: center;
  align-content: center;
  padding: 54px 24px;
  color: #fff;
  text-align: center;
  background: linear-gradient(115deg, #3263d3 0%, #51cfc0 100%);
}

.cta-band h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.45;
}

.cta-band p {
  margin: 0 0 32px;
  font-size: 15px;
  font-weight: 500;
}

.white-button {
  min-width: min(100%, 360px);
  min-height: 58px;
  color: #2f8ca0;
  background: #fff;
  box-shadow: 0 16px 30px rgba(18, 91, 142, 0.18);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.white-button:hover {
  box-shadow: 0 20px 36px rgba(18, 91, 142, 0.24);
}

.search-tags {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px clamp(24px, 3vw, 32px) 42px;
}

.search-tags h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 18px;
}

.search-tags div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.search-tags button {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid #c9d8e8;
  border-radius: 999px;
  color: #26456e;
  font-size: 12px;
  font-weight: 800;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.search-tags button.is-active,
.search-tags button:hover {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.redesign-hero {
  grid-template-columns: minmax(640px, 1.18fr) minmax(360px, 0.82fr);
  min-height: 468px;
  background:
    linear-gradient(90deg, #fff 0%, #f8fcff 46%, rgba(248, 252, 255, 0) 72%),
    #f7fbff;
}

.redesign-hero .hero-copy {
  max-width: 760px;
  padding-top: 34px;
  padding-bottom: 48px;
}

.redesign-hero h1 {
  margin-bottom: 26px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.42;
  white-space: nowrap;
  word-break: keep-all;
}

.redesign-hero .hero-text {
  max-width: 520px;
  font-size: 18px;
  line-height: 2.05;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: #274879;
  font-size: 14px;
  font-weight: 900;
}

.hero-note span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #436aa2;
  font-size: 12px;
}

.redesign-hero .hero-visual {
  min-height: 468px;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0) 0%, rgba(248, 252, 255, 0.16) 100%),
    var(--hero-image, url("../images/redesign-hero.png")) 64% center / cover no-repeat;
}

.redesign-hero .hero-visual::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: clamp(48px, 4.5vw, 82px);
  content: "";
  background: linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.54) 44%, rgba(248, 252, 255, 0) 100%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  pointer-events: none;
}

.redesign-hero .hero-visual::after {
  display: none;
}

.spotlight-section {
  padding-top: 34px;
}

.section-heading > div p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.spotlight-card {
  overflow: hidden;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(25, 57, 102, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.spotlight-card:hover {
  border-color: #cfe0f2;
  box-shadow: 0 22px 46px rgba(25, 57, 102, 0.14);
}

.spotlight-image {
  position: relative;
  display: flex;
  min-height: 154px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 18px 22px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.spotlight-image::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 24, 57, 0.22), rgba(7, 24, 57, 0.76));
}

.spotlight-image h3 {
  position: relative;
  z-index: 1;
}

.spotlight-image h3 {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}

.spotlight-mobile-title {
  display: none;
}

.spotlight-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 20px;
}

.spotlight-body h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.spotlight-body p {
  margin: 0 0 10px;
  color: #405a80;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.spotlight-area {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  color: #476489;
  font-size: 12px;
  font-weight: 800;
}

.spotlight-area::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "";
  width: 14px;
  height: 14px;
  background: #7a808b;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='3' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='3' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.spotlight-body b,
.story-card b,
.center-link span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #c9d8e8;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
}

.common-section {
  padding-top: 24px;
}

.common-panel {
  padding: 28px 28px 24px;
  border-radius: 24px;
  background: #f8fbff;
  box-shadow: inset 0 0 0 1px #e5edf5;
}

.redesign-reasons {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.redesign-reasons article {
  padding: 0 24px;
  border-left: 1px solid #dce7f3;
}

.redesign-reasons article:first-child {
  border-left: 0;
}

.redesign-reasons svg {
  width: 60px;
  height: 60px;
  stroke: #446cc0;
  stroke-width: 2.15;
}

.redesign-reasons h3 {
  font-size: 16px;
}

.redesign-reasons p {
  text-align: left;
}

.center-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px auto 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.common-panel .center-link {
  display: flex;
  width: fit-content;
}

.story-section {
  padding-top: 28px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  overflow: hidden;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(25, 57, 102, 0.08);
}

.story-card a {
  position: relative;
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 154px;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card div {
  padding: 18px 42px 16px 18px;
}

.story-card h3 {
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
}

.story-card p,
.story-card time {
  display: block;
  margin: 0 0 7px;
  color: #536b8e;
  font-size: 11px;
  font-weight: 800;
}

.story-card b {
  position: absolute;
  right: 14px;
  bottom: 14px;
}

.policy-section {
  padding-top: 20px;
  padding-bottom: 38px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.policy-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.policy-grid svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.policy-grid p {
  grid-column: 2;
  margin: 0;
  color: #405a80;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.redesign-cta {
  min-height: 178px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.site-footer {
  padding: 34px clamp(24px, 4.2vw, 52px);
  border-top: 1px solid #e5edf5;
  background: #fff;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.footer-nav a {
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--blue);
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 1081px) and (max-width: 1180px) {
  .redesign-hero {
    grid-template-columns: minmax(560px, 1fr) minmax(420px, 0.95fr);
  }

  .redesign-hero h1 {
    font-size: clamp(40px, 4.1vw, 46px);
    white-space: normal;
  }

  .redesign-hero .hero-visual {
    background-position: 64% center;
  }

  .redesign-hero .hero-visual::before {
    width: clamp(52px, 5vw, 76px);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .global-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 19;
    flex: none;
    align-items: stretch;
    justify-content: flex-start;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 8px clamp(24px, 4.2vw, 52px) 18px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e5edf5;
    border-bottom: 1px solid #e5edf5;
    box-shadow: 0 22px 36px rgba(13, 43, 95, 0.1);
    font-size: 14px;
    white-space: normal;
  }

  .site-header.is-menu-open .global-nav {
    display: flex;
  }

  .global-nav,
  .global-nav .primary-menu {
    flex-direction: column;
    gap: 0;
  }

  .global-nav a,
  .global-nav .primary-menu a {
    display: block;
    padding: 14px 0;
    border-top: 1px solid #e5edf5;
  }

  .mobile-nav-search {
    display: block;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid #e5edf5;
  }

  .mobile-nav-search .site-search {
    width: 100%;
    min-width: 0;
  }

  .site-header > .site-search {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .admin-bar .site-header {
    top: 0;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    margin: 0;
    padding: 58px clamp(28px, 7vw, 78px);
  }

  .hero-visual {
    min-height: 520px;
    background-position: center 20%;
  }

  .redesign-hero {
    grid-template-columns: 1fr;
  }

  .redesign-hero .hero-copy {
    padding-bottom: 36px;
  }

  .redesign-hero .hero-visual {
    min-height: 430px;
    background-position: center 18%;
  }

  .spotlight-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid.redesign-reasons,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-grid.redesign-reasons {
    gap: 28px 0;
  }

  .reason-grid.redesign-reasons article:nth-child(odd) {
    border-left: 0;
  }

  .company-card {
    flex-basis: calc((100% - 40px) / 3);
  }

  .company-section .archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reason-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archive-filter {
    grid-template-columns: 1fr 1fr;
  }

  .archive-filter-actions {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 84px;
    padding: 0 18px;
    padding-bottom: 0;
    background: #fff;
    backdrop-filter: none;
  }

  .brand span {
    font-size: 18px;
  }

  .global-nav {
    max-height: calc(100vh - 84px);
    padding: 8px 18px 18px;
  }

  .header-actions {
    margin-left: auto;
  }

  .outline-button {
    display: none;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 42px 22px 36px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .redesign-hero {
    position: relative;
    display: block;
    min-height: 700px;
    overflow: hidden;
    background: #f5fbff;
  }

  .redesign-hero .hero-copy {
    position: relative;
    z-index: 1;
    max-width: none;
    padding: 66px 24px 330px;
  }

  .redesign-hero h1 {
    margin-bottom: 24px;
    font-size: 31px;
    white-space: normal;
    line-height: 1.7;
  }

  .redesign-hero .hero-text {
    max-width: 250px;
    font-size: 14px;
    line-height: 2.1;
  }

  .hero-text {
    line-height: 2;
  }

  .primary-button,
  .white-button {
    width: 100%;
    gap: 16px;
    padding: 0 24px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .redesign-hero .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 100%;
    background-position: 64px 150px;
    background-size: auto 56%;
  }

  .redesign-hero .hero-visual::before {
    display: none;
  }

  .redesign-hero .hero-visual::after {
    display: block;
    position: absolute;
    inset: 0;
    content: "";
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.68) 40%, rgba(255, 255, 255, 0.08) 78%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.12) 100%);
    pointer-events: none;
  }

  .section.spotlight-section {
    position: relative;
    z-index: 2;
    width: auto;
    margin: -118px 16px 0;
    padding: 20px 12px 14px;
    border: 1px solid #e5edf5;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(25, 57, 102, 0.12);
  }

  .spotlight-section .section-heading {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .spotlight-section .section-heading > div {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .spotlight-section .section-heading h2 {
    font-size: 22px;
    line-height: 1.42;
  }

  .spotlight-section .section-heading > div p {
    display: none;
  }

  .spotlight-section .section-heading .view-link {
    align-self: center;
    gap: 8px;
    font-size: 12px;
  }

  .spotlight-section .view-link span {
    width: 28px;
    height: 28px;
  }

  .spotlight-grid {
    gap: 0;
  }

  .spotlight-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .spotlight-card + .spotlight-card {
    border-top: 1px solid #e5edf5;
  }

  .spotlight-card a {
    display: grid;
    grid-template-columns: minmax(110px, 38%) minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    padding: 12px 0;
  }

  .spotlight-image {
    min-height: 124px;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
  }

  .spotlight-image h3 {
    display: none;
  }

  .spotlight-body {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 10px;
    align-items: center;
    min-height: 0;
    padding: 0;
  }

  .spotlight-mobile-title {
    display: block;
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
  }

  .spotlight-body h4 {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .spotlight-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.65;
  }

  .spotlight-area {
    display: none;
  }

  .spotlight-body b {
    width: 28px;
    height: 28px;
  }

  .section.common-section {
    padding: 14px 16px 42px;
  }

  .common-panel {
    padding: 22px 16px;
    border-radius: 14px;
    background: #fff;
    box-shadow:
      0 18px 42px rgba(25, 57, 102, 0.1),
      inset 0 0 0 1px #e5edf5;
  }

  .common-panel .section-heading {
    gap: 8px;
    margin-bottom: 6px;
  }

  .common-panel .section-heading h2 {
    font-size: 22px;
    line-height: 1.45;
  }

  .common-panel .section-heading > div p {
    display: block;
    font-size: 13px;
    line-height: 1.8;
  }

  .reason-grid.redesign-reasons {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .reason-grid.redesign-reasons article {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: center;
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid #e5edf5;
    text-align: left;
  }

  .reason-grid.redesign-reasons article:first-child {
    border-top: 0;
  }

  .reason-grid.redesign-reasons svg {
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    margin: 0 auto;
  }

  .reason-grid.redesign-reasons h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
  }

  .reason-grid.redesign-reasons p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
  }

  .story-card a {
    grid-template-columns: 36% 1fr;
  }

  .story-card h3 {
    font-size: 14px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .count-badge {
    right: 22px;
    bottom: 28px;
    width: 142px;
  }

  .section {
    padding: 42px 18px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-heading > div {
    width: 100%;
  }

  .section-heading .view-link {
    align-self: flex-start;
  }

  .archive-filter {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .archive-filter-actions {
    flex-wrap: wrap;
  }

  .archive-filter-submit {
    width: 100%;
  }

  .article-grid,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .company-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .company-strip {
    gap: 16px;
  }

  .company-section .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-content-section .section-heading h1 {
    font-size: 27px;
  }

  .company-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company-content-card img {
    height: clamp(190px, 54vw, 260px);
  }

  .company-content-card .card-body {
    min-height: 0;
    padding: 18px;
  }

  .company-content-card h2 {
    font-size: 17px;
  }

  .company-section .company-card img {
    height: clamp(112px, 28vw, 150px);
  }

  .round-nav {
    display: none;
  }

  .company-card p,
  .company-card h3,
  .article-card h2,
  .article-card h3 {
    min-height: 0;
  }

  .card-body {
    padding: 14px 12px 16px;
  }

  .tag {
    min-height: 22px;
    padding: 0 9px;
    font-size: 10px;
  }

  .company-card h2,
  .company-card h3,
  .article-card h2,
  .article-card h3 {
    font-size: 14px;
    line-height: 1.45;
  }

  .company-card p,
  .article-card p,
  .article-card time {
    font-size: 11px;
    line-height: 1.65;
  }

  .article-card img {
    margin-bottom: 12px;
  }

  .reason-section {
    padding: 52px 22px;
  }

  .reason-grid {
    gap: 28px 18px;
  }

  .reason-grid svg {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .reason-grid h3 {
    font-size: 14px;
  }

  .reason-grid p {
    font-size: 13px;
    line-height: 1.75;
  }

  .article-section {
    padding-bottom: 52px;
  }

  .cta-band h2 {
    font-size: 25px;
  }
}
