.industry-list-section {
  background: var(--inner-panel);
}

.article-list {
  display: block;
}

.article-results {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.article-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.article-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.article-row-copy {
  min-width: 0;
}

.article-row h2 {
  margin-top: 10px;
  color: var(--strong);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.16;
}

.article-row h2 a {
  color: inherit;
  text-decoration: none;
}

.article-row h2 a:hover,
.article-row h2 a:focus-visible {
  color: var(--accent-label);
}

.article-row .article-card-excerpt {
  max-width: 820px;
  margin-top: 12px;
}

.article-row .article-card-link {
  flex: 0 0 auto;
  margin-top: 34px;
  white-space: nowrap;
}

.article-row-tags,
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.tag-chip:hover,
.tag-chip.is-active {
  border-color: var(--accent-label);
  color: var(--strong);
}

.article-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pagination-button {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.pagination-button:hover,
.pagination-button.is-active {
  border-color: var(--accent-label);
  color: var(--strong);
}

.pagination-button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.pagination-gap {
  color: var(--quiet);
  padding: 0 3px;
}

.article-card:hover,
.article-card:focus-within {
  border-color: var(--accent-label);
  box-shadow: 0 18px 44px rgba(4, 12, 20, 0.16);
  transform: translateY(-3px);
}

.article-card-meta,
.article-detail-meta {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.article-card h2 {
  margin-top: 18px;
  color: var(--strong);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.article-card h2 a {
  color: inherit;
  text-decoration: none;
}

.article-card h2 a:hover,
.article-card h2 a:focus-visible {
  color: var(--accent-label);
}

.article-card-excerpt {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.article-card-link,
.article-back-link {
  color: var(--link);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.article-card-link::after {
  content: "  →";
  color: var(--accent-label);
}

.article-card-link:hover,
.article-card-link:focus-visible,
.article-back-link:hover,
.article-back-link:focus-visible {
  color: var(--link-hover);
}

.article-empty,
.article-error {
  padding: 32px;
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  font-size: 14px;
}

.article-detail-section {
  background: var(--inner-panel);
}

.article-detail-shell {
  max-width: 980px;
  margin: 0 auto;
}

.article-detail-header {
  max-width: 850px;
  margin-top: 30px;
}

.article-detail-header h1 {
  margin-top: 18px;
  color: var(--strong);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.article-detail-excerpt {
  max-width: 780px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.article-content {
  max-width: 820px;
  margin-top: 54px;
  color: var(--meta-text);
  font-size: 17px;
  line-height: 1.85;
}

.article-content h2,
.article-content h3 {
  margin: 42px 0 14px;
  color: var(--strong);
  font-weight: 680;
  line-height: 1.25;
}

.article-content h2 {
  font-size: 30px;
}

.article-content h3 {
  font-size: 22px;
}

.article-content p {
  margin: 0 0 20px;
}

.article-content ul {
  margin: 0 0 24px;
  padding-left: 24px;
}

.article-content li {
  margin: 7px 0;
}

.article-content strong {
  color: var(--strong);
  font-weight: 750;
}

.article-content a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--link) 45%, transparent);
  text-underline-offset: 3px;
}

.article-content a:hover,
.article-content a:focus-visible {
  color: var(--link-hover);
}

.article-detail-footer {
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .article-card {
    min-height: 230px;
    padding: 22px;
  }

  .article-row {
    display: block;
    padding: 22px 0;
  }

  .article-row .article-card-link {
    display: inline-block;
    margin-top: 16px;
  }

  .article-content {
    margin-top: 40px;
    font-size: 16px;
  }
}
