.articles-main {
  overflow: hidden;
}

.articles-hero,
.articles-search-section,
.articles-featured,
.articles-listing {
  width: min(1420px, calc(100% - 120px));
  margin: 0 auto;
}

.articles-hero {
  padding: 34px 0 28px;
  display: grid;
  grid-template-columns: minmax(500px, 0.92fr) minmax(520px, 1fr);
  gap: 72px;
  align-items: center;
}

.articles-kicker,
.article-label {
  color: var(--fdv-orange);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.articles-kicker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.articles-kicker i {
  width: 54px;
  height: 2px;
  display: inline-block;
  background: var(--fdv-orange-light);
}

.articles-title {
  max-width: 640px;
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.98;
}

.articles-intro {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--fdv-muted);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.74;
}

.articles-hero-media {
  min-height: 374px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--fdv-white);
  box-shadow: var(--fdv-shadow);
}

.articles-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 374px;
  object-fit: cover;
}

.articles-search-section {
  padding: 0 0 34px;
}

.articles-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.articles-search-field {
  height: 72px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 172px;
  align-items: center;
  gap: 14px;
  padding: 0 16px 0 24px;
  border: 1px solid rgba(4, 20, 46, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(4, 20, 46, 0.08);
}

.articles-search-field.is-shaking {
  animation: articles-search-shake 320ms ease;
}

@keyframes articles-search-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-8px);
  }

  40%,
  80% {
    transform: translateX(8px);
  }
}

.articles-search-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fdv-navy-text);
}

.articles-search-icon svg,
.featured-meta svg,
.featured-link svg,
.articles-load-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.articles-search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fdv-navy-text);
  font-size: 18px;
  font-weight: 500;
}

.articles-search-field input::placeholder {
  color: rgba(78, 85, 105, 0.82);
}

.articles-search-button {
  height: 48px;
  border: 0;
  border-left: 1px solid rgba(4, 20, 46, 0.1);
  background: transparent;
  color: var(--fdv-orange);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.articles-featured {
  padding: 0 0 30px;
}

.featured-card {
  width: min(1160px, 100%);
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(460px, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(4, 20, 46, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(4, 20, 46, 0.08);
}

.featured-placeholder {
  position: relative;
  height: 100%;
  min-height: 292px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #e9d5bd;
}

.featured-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.featured-copy {
  min-width: 0;
  padding: 48px 48px 46px;
}

.article-label {
  margin: 0 0 12px;
}

.featured-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 37px;
  font-weight: 800;
  line-height: 1.16;
}

.featured-copy > p:not(.article-label) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--fdv-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.68;
}

.featured-meta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--fdv-muted);
  font-size: 15px;
  font-weight: 600;
}

.featured-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.featured-meta svg {
  width: 20px;
  height: 20px;
}

.featured-link {
  width: 186px;
  height: 58px;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px solid var(--fdv-navy-text);
  border-radius: 10px;
  color: var(--fdv-navy-text);
  font-size: 17px;
  font-weight: 800;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.featured-link svg {
  transition: transform 160ms ease;
}

.featured-link:hover,
.featured-link:focus-visible {
  border-color: var(--fdv-orange);
  background: var(--fdv-orange);
  color: var(--fdv-white);
  box-shadow: 0 14px 28px rgba(253, 99, 0, 0.22);
  transform: translateY(-2px);
}

.featured-link:hover svg,
.featured-link:focus-visible svg {
  transform: translateX(4px);
}

.featured-link.is-disabled {
  opacity: 0.58;
  pointer-events: none;
}

.articles-listing {
  padding: 8px 0 76px;
}

.articles-listing-head {
  width: min(1160px, 100%);
  margin: 0 auto 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.articles-listing-head h2 {
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
}

.articles-listing-head > p {
  margin: 0 0 8px;
  color: var(--fdv-muted);
  font-size: 16px;
  font-weight: 700;
}

.articles-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.article-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(4, 20, 46, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(4, 20, 46, 0.07);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.article-card:hover {
  border-color: rgba(253, 99, 0, 0.38);
  box-shadow: 0 20px 44px rgba(4, 20, 46, 0.12);
  transform: translateY(-3px);
}

.article-card[hidden] {
  display: none;
}

.article-card-media {
  height: 184px;
  overflow: hidden;
  background: #edf5f8;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.04);
}

.article-card-body {
  min-height: 278px;
  padding: 22px 22px 20px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.article-card h3 {
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}

.article-card h3 a:hover {
  color: var(--fdv-orange);
}

.article-card-body > p:not(.article-label) {
  margin: 12px 0 0;
  color: var(--fdv-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.58;
}

.article-card-foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.article-card-foot span {
  color: var(--fdv-muted);
  font-size: 15px;
  font-weight: 700;
}

.article-card-foot span::before {
  width: 9px;
  height: 9px;
  margin-right: 9px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 999px;
  content: "";
}

.article-card-foot a {
  color: var(--fdv-orange);
  font-size: 15px;
  font-weight: 800;
}

.article-card-foot a::after {
  margin-left: 8px;
  content: "→";
}

.articles-empty {
  width: min(1160px, 100%);
  margin: 34px auto 0;
  padding: 24px;
  border: 1px solid rgba(4, 20, 46, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--fdv-muted);
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}

.articles-load-wrap {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.articles-load-button {
  width: min(520px, 100%);
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px solid rgba(4, 20, 46, 0.82);
  border-radius: 10px;
  background: transparent;
  color: var(--fdv-navy-text);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.articles-load-button:hover {
  background: var(--fdv-navy-text);
  color: var(--fdv-white);
  transform: translateY(-1px);
}

.articles-load-button[hidden] {
  display: none;
}

@media (min-width: 1000px) and (max-width: 1500px) {
  .articles-hero,
  .articles-search-section,
  .articles-featured,
  .articles-listing {
    width: min(1120px, calc(100% - 64px));
  }

  .articles-hero {
    grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1fr);
    gap: 44px;
  }

  .articles-title {
    font-size: clamp(50px, 4vw, 60px);
  }

  .articles-intro {
    margin-top: 22px;
    font-size: 16.5px;
    line-height: 1.62;
  }

  .articles-hero-media,
  .articles-hero-media img {
    min-height: 330px;
  }

  .articles-search-field {
    height: 64px;
    grid-template-columns: 38px minmax(0, 1fr) 150px;
  }

  .articles-search-field input {
    font-size: 16px;
  }

  .articles-search-button {
    font-size: 15px;
  }

  .featured-card,
  .articles-grid,
  .articles-listing-head,
  .articles-empty {
    width: min(1040px, 100%);
  }

  .featured-card {
    grid-template-columns: minmax(350px, 0.92fr) minmax(0, 1fr);
  }

  .featured-copy {
    padding: 38px 40px;
  }

  .featured-copy h2 {
    font-size: 31px;
  }

  .featured-copy > p:not(.article-label) {
    font-size: 16px;
  }

  .featured-link {
    width: 168px;
    height: 52px;
    font-size: 15px;
  }

  .articles-grid {
    gap: 22px;
  }

  .article-card-media {
    height: 166px;
  }

  .article-card-body {
    min-height: 258px;
    padding: 20px;
  }

  .article-card h3 {
    font-size: 20px;
  }

  .article-card-body > p:not(.article-label),
  .article-card-foot span,
  .article-card-foot a {
    font-size: 13.5px;
  }
}

@media (min-width: 1000px) and (max-width: 1179px) {
  .articles-hero {
    width: min(860px, calc(100% - 64px));
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .articles-hero-media {
    width: min(760px, 100%);
  }

  .articles-search-section,
  .articles-featured,
  .articles-listing {
    width: min(860px, calc(100% - 64px));
  }

  .featured-card {
    grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1fr);
  }

  .featured-copy {
    padding: 34px 32px;
  }

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