:root {
  --ink: #2b2b2b;
  --muted: #666;
  --gold: #d9902e;
  --line: #d7d7d7;
  --footer: #1d1d1d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #efefef;
}

.site-header-inner {
  width: min(1680px, calc(100% - 64px));
  min-height: 116px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: grid;
  gap: 7px;
  text-decoration: none;
}

.logo-mark {
  width: max-content;
  display: inline-block;
  padding: 0 5px 2px;
  background: #050505;
  color: #fff;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  letter-spacing: .025em;
  text-transform: uppercase;
  font-weight: 900;
}

.logo-desc {
  color: #8f8f8f;
  font-size: 18px;
}

.site-header nav {
  flex: 1;
}

.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(14px, 1.18vw, 18px);
  font-weight: 800;
  text-transform: uppercase;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 42px 13px;
  color: #303030;
  text-decoration: none;
  white-space: nowrap;
}

.menu > li > a:hover,
.has-submenu:hover > a {
  color: var(--gold);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  min-width: 235px;
  display: none;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  text-transform: none;
  font-size: 14px;
  font-weight: 700;
}

.has-submenu:hover .sub-menu {
  display: block;
}

.sub-menu a {
  display: block;
  padding: 9px 14px;
  color: #333;
  text-decoration: none;
}

.sub-menu a:hover {
  background: #f7f7f7;
  color: var(--gold);
}

.home-slider {
  position: relative;
  height: clamp(520px, 44vw, 690px);
  min-height: 520px;
  overflow: hidden;
  background: #050505;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: sliderFade 25s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.47) contrast(1.1);
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.28), rgba(0,0,0,.55));
}

.slide-copy {
  position: absolute;
  z-index: 2;
  left: clamp(34px, 7vw, 150px);
  top: 50%;
  transform: translateY(-50%);
  width: min(760px, 62vw);
  max-height: calc(100% - 92px);
  overflow: hidden;
  color: #fff;
}

.slide-copy p {
  margin: 0 0 12px;
  color: #dca043;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: clamp(14px, 1.3vw, 20px);
}

.slide-copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.8vw, 78px);
  line-height: 1.04;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  text-wrap: balance;
}

.slide-copy a {
  display: block;
  max-width: 680px;
  color: #e7e7e7;
  text-decoration: none;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
}

@keyframes sliderFade {
  0%, 17% { opacity: 1; }
  22%, 100% { opacity: 0; }
}

.page-head {
  min-height: 240px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.06), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,.04) 25%, transparent 25%) 0 0 / 8px 8px,
    #050505;
  border-top: 1px solid #111;
}

.page-head div {
  width: min(1420px, calc(100% - 44px));
  text-align: center;
}

.page-head h1 {
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 70px);
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

main {
  width: min(1600px, calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  padding: 28px 0 34px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #777;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.kicker,
.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro {
  max-width: 920px;
  margin: 0 auto;
  color: #777;
  text-align: center;
  font-size: 18px;
}

.hero-image {
  width: min(980px, 100%);
  margin: 30px auto 0;
}

.hero-image img {
  width: 100%;
  max-height: 590px;
  object-fit: cover;
}

.article {
  width: min(900px, 100%);
  margin: 0 auto 56px;
  color: #5d5d5d;
}

.article-narrow {
  width: min(820px, 100%);
}

.article h2,
.section h2,
.related h2 {
  margin: 34px 0 14px;
  color: #282828;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.22;
  font-weight: 800;
}

.article h3 {
  margin: 28px 0 12px;
  color: #303030;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.article p,
.article li {
  margin: 0 0 18px;
  font-size: 17px;
}

.article ul,
.article ol {
  margin: 18px 0 26px;
  padding-left: 24px;
}

.article li::marker {
  color: var(--gold);
  font-weight: 800;
}

.article strong,
.article b {
  color: #262626;
  font-weight: 800;
  background: linear-gradient(180deg, transparent 58%, rgba(217, 144, 46, .22) 0);
}

.article a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.article blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--gold);
  background: #faf7f2;
  color: #333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55;
}

.article blockquote p:last-child {
  margin-bottom: 0;
}

.article h2 + p strong:first-child,
.article p:first-of-type strong:first-child {
  display: inline-block;
  padding: 2px 8px;
  background: #171717;
  color: #fff;
}

.article table {
  width: 100%;
  margin: 34px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #e5e0d8;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .045);
  font-size: 16px;
}

.article thead {
  background: #171717;
  color: #fff;
}

.article th,
.article td {
  padding: 15px 18px;
  border-bottom: 1px solid #ece7df;
  text-align: left;
  vertical-align: top;
}

.article th {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.article tbody tr:nth-child(even) {
  background: #faf7f2;
}

.article tbody tr:hover {
  background: #f4eadc;
}

.article td:first-child {
  color: #2c2c2c;
  font-weight: 800;
}

.article .note,
.article .info,
.article .important {
  margin: 30px 0;
  padding: 20px 22px;
  border: 1px solid #ead8bd;
  border-left: 5px solid var(--gold);
  background: #fff8ef;
}

.section,
.related {
  margin: 0 0 62px;
}

.section > h2,
.related > h2 {
  text-align: center;
}

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

.card {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card div {
  padding: 20px;
}

.card h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
}

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

.card h2 a:hover {
  color: var(--gold);
}

.card p:last-child {
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 1.55;
}

.author-box {
  width: min(900px, 100%);
  margin: 46px auto;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
}

.author-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #cfcfcf;
  font-size: 17px;
  font-weight: 700;
}

.author-tabs span,
.author-tabs a {
  padding: 9px 18px;
  color: #333;
  text-decoration: none;
}

.author-tabs span:first-child {
  background: #eee;
}

.author-content {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px 18px;
}

.author-content img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

.author-text h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 25px;
  line-height: 1.1;
}

.author-text p {
  margin: 0 0 10px;
  color: #5c5c5c;
  font-size: 16px;
  line-height: 1.65;
}

.author-profile-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}

.author-profile-head img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}

.author-profile-head h2 {
  margin-top: 0;
}

.clean-list,
.contact-panel {
  margin-top: 18px;
}

.clean-list {
  padding-left: 20px;
}

.contact-panel {
  padding: 24px;
  border: 1px solid #eee;
  background: #fafafa;
}

.live-news {
  width: min(980px, 100%);
}

.news-intro {
  padding: 18px 22px;
  border-left: 5px solid var(--gold);
  background: #faf7f2;
  color: #444;
}

.news-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.news-sources span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid #ead9bd;
  background: #fffaf2;
  color: #7a541d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-feed {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.news-item {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid #ece7df;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .035);
}

.news-item a {
  display: block;
  color: #292929;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.22;
  text-decoration: none;
}

.news-item a:hover {
  color: var(--gold);
}

.news-item span {
  display: block;
  margin-top: 8px;
  color: #777;
  font-size: 14px;
  font-weight: 700;
}

.news-item p {
  margin: 10px 0 0;
  color: #555;
  font-size: 16px;
  line-height: 1.55;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid #ece7df;
  text-align: center;
}

.pagination-link,
.pagination-current {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid #e0d7ca;
  background: #fff;
  color: #444;
  font-weight: 700;
  text-decoration: none;
}

.pagination-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.pagination-current {
  background: #faf7f2;
  color: #6b5b45;
}

.related {
  padding-top: 34px;
  border-top: 1px solid #e8e8e8;
}

.site-footer {
  margin-top: 70px;
  background: var(--footer);
  color: #ddd;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 34px;
  padding: 42px max(22px, calc((100vw - 1120px) / 2));
}

.site-footer strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.site-footer p {
  margin: 8px 0 0;
  color: #aaa;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 12px 22px;
}

.site-footer nav a {
  color: #ddd;
  text-decoration: none;
}

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

@media (max-width: 1180px) {
  .site-header-inner {
    min-height: 110px;
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0 0;
  }

  .menu {
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 14px;
  }

  .menu > li > a {
    padding: 12px 14px 20px 0;
  }

  .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
  }

  .has-submenu:hover .sub-menu {
    display: block;
  }

  .home-slider {
    height: 460px;
    min-height: 420px;
  }

  .author-content {
    grid-template-columns: 110px 1fr;
  }
}

@media (max-width: 760px) {
  .site-header-inner,
  main {
    width: min(100% - 28px, 1600px);
  }

  .logo-mark {
    font-size: 30px;
  }

  .home-slider {
    height: 390px;
    min-height: 360px;
  }

  .slide-copy {
    left: 24px;
    width: calc(100% - 48px);
    max-height: calc(100% - 54px);
  }

  .slide-copy h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.08;
  }

  .page-head h1 {
    font-size: 42px;
  }

  .slide-copy a {
    font-size: 16px;
    line-height: 1.45;
  }

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

  .author-tabs {
    font-size: 18px;
  }

  .author-content {
    grid-template-columns: 1fr;
    padding: 24px 10px;
  }

  .author-text p {
    font-size: 16px;
  }

  .author-profile-head {
    grid-template-columns: 1fr;
  }

  .article table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
