* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.top-border {
  height: 4px;
  background: #111;
  width: 100%;
}

.site-header {
  border-bottom: 1px solid #bfbfbf;
  padding: 14px 26px 12px;
}

.brand-row {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 10vw, 92px);
  font-weight: 700;
  line-height: .85;
  letter-spacing: -0.08em;
}

.brand-text {
  border-left: 1px solid #aaa;
  padding-left: 18px;
  min-width: 0;
}

.brand-title {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 500;
  line-height: 1.05;
}

.brand-subtitle {
  margin-top: 3px;
  font-size: clamp(10px, 1.8vw, 16px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 760px;
}

.article {
  max-width: 100%;
  margin: 0 auto;
}

/* 改这里：整体变成图1那种宽版 editorial header */
.article-header {
  max-width: 1500px;
  margin: 34px auto 28px;
  padding: 0 24px;
}

.section-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: Arial, Helvetica, sans-serif;
}

/* 改这里：标题改成图1那种衬线字体，不要黑粗 Arial */
h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 112px);
  line-height: .94;
  font-weight: 400;
  letter-spacing: -0.055em;
  color: #191919;
}

/* 改这里：副标题也变成 serif，更像图1 */
.article-header h2 {
  margin: 0;
  max-width: 1500px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: #191919;
}

.hero {
  max-width: 820px;
  margin: 0 auto;
  background: #eee;
  overflow: hidden;
}

.hero img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
}

.meta-wrap {
  max-width: 820px;
  margin: 16px auto 0;
  padding: 0 26px;
}

.byline,
.date {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.date {
  margin-bottom: 10px;
}

.article-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 170px;
}

.article-actions .action-button {
  display: flex;
  align-items: center;
  height: 34px;
  background: #fff;
  border: 1px solid #aaa;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-align: left;
  padding: 0 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.article-body {
  max-width: 720px;
  margin: 22px auto 0;
  padding: 0 26px 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.68;
}

.article-body p {
  margin: 0 0 27px;
}

.paywall-wrapper {
  position: relative;
  margin-top: 8px;
  min-height: 545px;
}

.blurred-content {
  position: relative;
  filter: blur(3.1px);
  opacity: .5;
  user-select: none;
  pointer-events: none;
  max-height: 545px;
  overflow: hidden;
}

.blurred-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.05) 0%,
    rgba(255,255,255,.82) 48%,
    rgba(255,255,255,1) 100%
  );
  z-index: 1;
}

.paywall-card {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 520px);
  background: #fff;
  border: 1px solid #111;
  box-shadow: 0 16px 42px rgba(0,0,0,.17);
  padding: 32px 34px 26px;
  text-align: center;
  z-index: 5;
  font-family: Arial, Helvetica, sans-serif;
}

.paywall-label {
  margin: 0 0 13px !important;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2 !important;
}

.paywall-card h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.paywall-text {
  margin: 0 auto 22px !important;
  max-width: 410px;
  font-size: 14px;
  line-height: 1.5 !important;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

.paywall-primary,
.paywall-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

.paywall-primary {
  background: #111;
  color: #fff;
  border: 1px solid #111;
}

.paywall-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}

.paywall-small {
  margin: 17px auto 0 !important;
  max-width: 380px;
  font-size: 11px;
  line-height: 1.4 !important;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
}

.mockup-disclaimer {
  margin: 14px auto 0 !important;
  max-width: 410px;
  font-size: 9px;
  line-height: 1.36 !important;
  color: #777;
  font-family: Arial, Helvetica, sans-serif;
}

.further-reading,
.author-box {
  max-width: 820px;
  margin: 18px auto 0;
  padding: 0 26px;
}

.further-reading h3,
.author-box h3 {
  border-bottom: 1px solid #111;
  padding-bottom: 6px;
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .02em;
}

.further-reading a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  text-decoration: none;
  color: #111;
  margin-bottom: 16px;
}

.further-reading span {
  font-size: 20px;
  line-height: 1;
  color: #666;
}

.further-reading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
}

.further-reading p {
  margin: 6px 0 0;
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

.author-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #bbb;
  padding: 12px 0 28px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #ddd;
  position: relative;
}

.avatar::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 50%;
  left: 20px;
  top: 14px;
}

.avatar::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 17px;
  border: 1px solid #ddd;
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  left: 13px;
  top: 35px;
}

.author-row strong {
  font-size: 12px;
}

.author-row p {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.45;
}

.bof-footer {
  margin-top: 44px;
  background: #1b1b1b;
  color: #fff;
  padding: 34px 28px 22px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 58px;
}

.footer-brand h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
}

.footer-brand p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(320px, 520px);
  gap: 28px;
  align-items: start;
}

.footer-column h3 {
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #777;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.footer-column a {
  display: block;
  margin: 0 0 15px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 500;
}

.footer-column a:hover,
.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-ad {
  display: block;
  min-height: 150px;
  background: #f4eadc;
  color: #111;
  text-decoration: none;
  padding: 18px 20px;
  overflow: hidden;
  position: relative;
}

.footer-ad::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 210px;
  height: 125px;
  background:
    radial-gradient(circle at 20% 35%, #111 0 22%, transparent 23%),
    radial-gradient(circle at 50% 28%, #b40022 0 22%, transparent 23%),
    radial-gradient(circle at 76% 38%, #222 0 22%, transparent 23%);
  opacity: .25;
}

.ad-title {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: .95;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.ad-subtitle {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}

.footer-ad span {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 800;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-row a {
  display: inline-block;
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid #777;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 820px) {
  .footer-brand {
    margin-bottom: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  .footer-column a {
    font-size: 16px;
  }

  .footer-ad {
    min-height: 135px;
  }
}
@media (max-width: 640px) {
  .article-header {
    margin: 22px auto 20px;
    padding: 0 20px;
  }

  .section-label {
    font-size: 11px;
    margin-bottom: 8px;
  }

  h1 {
    font-size: clamp(30px, 8.5vw, 42px);
    line-height: .96;
    letter-spacing: -0.045em;
    margin-bottom: 10px;
  }

  .article-header h2 {
    font-size: clamp(18px, 4.8vw, 24px);
    line-height: 1.1;
    letter-spacing: -0.025em;
  }
}
  .section-label {
    font-size: 13px;
    margin-bottom: 10px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: .94;
    letter-spacing: -0.05em;
    margin-bottom: 14px;
  }

  .article-header h2 {
    font-size: clamp(25px, 7.5vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .article-actions {
    width: 150px;
  }

  .article-body {
  max-width: 680px;
  margin: 22px auto 0;
  padding: 0 26px 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.58;
}

  .paywall-card {
    top: 58px;
    padding: 26px 22px 22px;
  }

  .author-row {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .avatar {
    width: 50px;
    height: 50px;
  }

/* Overall typography scale down */
.article-header h1 {
  font-size: clamp(38px, 4.55vw, 73px);
}

.article-header h2 {
  font-size: clamp(20px, 2.2vw, 35px);
}

.section-label {
  font-size: 12px;
}