/* Article reader — Template A (Article new templates) */

.air-read-page {
  --air-article-width: 924px;
  width: 100%;
  max-width: var(--air-page-max, 1600px);
  margin: 0 auto;
  padding: 0 var(--air-page-gutter, 60px) 56px;
  box-sizing: border-box;
  align-self: center;
  overflow-x: clip;
  background: transparent;
  color: #0c2b1c;
  font-family: 'Schibsted Grotesk', 'IBM Plex Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: calc(100vh - 64px);
}
.air-read-page a { color: #0f6b46; text-decoration: none; }
.air-read-page a:hover { color: #0c2b1c; }
.air-read-toolbar {
  width: 100%;
  max-width: var(--air-article-width);
  margin: 0 auto;
  padding: 20px 0 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.air-read-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7d6e;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.air-read-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.air-read-actions .air-react-bar { color: #55655E; }
.air-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid #dbe4d4;
  border-radius: 999px;
  padding: 7px 14px;
  color: #45564b;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.air-read-btn:hover { border-color: #146E32; color: #0c3a26; background: #eef7e6; }
.air-read-btn.is-rated { color: #0c3a26; border-color: #146E32; background: #e6f3c0; }

.air-read-author-bar {
  width: 100%;
  max-width: var(--air-article-width);
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
}
.air-read-page a.air-read-author-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #003B2D;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 14px;
  padding: 13px 28px;
  transition: background 180ms ease, transform 180ms ease;
}
.air-read-page a.air-read-author-edit:hover {
  background: #146E32;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.air-read-review {
  width: 100%;
  max-width: var(--air-article-width);
  margin: 16px auto 0;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid rgba(0, 59, 45, 0.22);
  border-radius: 14px;
  padding: 18px 20px 20px;
}
.air-read-review-foot {
  margin-top: 28px;
}
.air-read-review-kicker {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #003B2D;
  margin-bottom: 8px;
}
.air-read-review p {
  color: #41544C;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.air-read-review-label {
  display: block;
  color: #6E7F78;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Schibsted Grotesk', sans-serif;
}
.air-read-review textarea {
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid rgba(0, 59, 45, 0.18);
  border-radius: 9px;
  padding: 12px 14px;
  color: #003B2D;
  font-size: 14px;
  line-height: 1.55;
  font-family: 'IBM Plex Sans', 'Schibsted Grotesk', sans-serif;
  outline: none;
  resize: vertical;
  margin-bottom: 14px;
}
.air-read-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.air-read-review-approve {
  background: #003B2D;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  border: none;
  border-radius: 9px;
  padding: 11px 20px;
  cursor: pointer;
}
.air-read-review-return {
  background: transparent;
  color: #B3261E;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid rgba(248, 113, 113, 0.45);
  border-radius: 9px;
  padding: 11px 20px;
  cursor: pointer;
}

.air-doc {
  --doc-accent: #a8480f;
  width: 100%;
  max-width: var(--air-article-width);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.air-read-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(12, 43, 28, 0.07);
}
.air-doc-sheet {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(12, 43, 28, 0.07);
}
.air-read-card .air-doc-sheet {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.air-doc-cover {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  padding: 32px 34px;
  box-sizing: border-box;
  overflow: hidden;
}
.air-doc-cover-avatar {
  flex: none;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  border: 2.5px solid rgba(255,255,255,0.92);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  background-color: rgba(255,255,255,0.14);
}
.air-doc-cover-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.air-doc-cover-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.air-doc-cover-h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.air-doc-cover-h1a {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
}
.air-doc-cover-h1but {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: rgba(255,255,255,0.88);
}
.air-doc-cover-h1c {
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--doc-highlight, #f3c9a4);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: unset;
  white-space: pre-line;
  min-height: calc(1.12em * 2);
  height: calc(1.12em * 2);
}
.air-doc-cover-by {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
}
.air-doc-cover-by .article__author-name {
  font-weight: 700;
}

.air-doc-intro {
  padding: 22px 34px 0;
}
.air-doc-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.air-doc-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 600;
}
.air-doc-pill-story {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #ddf0cd;
  color: #0c3a26;
}
.air-doc-pill-pillar {
  background: var(--doc-soft, #f0d8c4);
  color: var(--doc-accent, #a8480f);
}
.air-doc-lede {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #2c4438;
  text-wrap: pretty;
}
.air-doc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 4px;
  border-top: 1px solid #e3ede6;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: #55655e;
}
.air-doc-meta-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: none;
  font-size: 12.5px;
  font-weight: 600;
  color: #55655E;
}
.air-doc-meta-actions .air-react-bar { color: #55655E; }

.air-doc-body {
  padding: 28px 34px 36px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #0c2b1c;
  box-sizing: border-box;
  width: 100%;
  overflow-wrap: break-word;
}
.air-doc-body p { margin: 0 0 16px; }
.air-doc-body .figure,
.air-doc-prose .figure {
  margin: 22px 0;
}
.air-doc-body .figure img,
.air-doc-prose .figure img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: #F5F3F2;
}
.air-doc-body .air-embed-video,
.air-doc-prose .air-embed-video {
  position: relative;
  margin: 22px 0;
  border-radius: 16px;
  overflow: hidden;
  background: #003B2D;
  aspect-ratio: 16 / 9;
}
.air-doc-body .air-embed-video iframe,
.air-doc-body .air-embed-video video,
.air-doc-prose .air-embed-video iframe,
.air-doc-prose .air-embed-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.air-doc-body .air-embed-rule,
.air-doc-prose .air-embed-rule {
  border: 0;
  border-top: 1px solid #dbe4d4;
  margin: 28px 0;
}
.air-doc-drop {
  float: left;
  font-weight: 800;
  font-size: 54px;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: #0c3a26;
  padding: 4px 10px 0 0;
}
.air-doc.is-preview { width: 100%; max-width: none; padding: 0; }
.air-doc-prose { font-size: 15.5px; line-height: 1.62; color: #0c2b1c; }
.air-doc-prose p { margin: 0 0 16px; }
.air-doc-prose p:last-child { margin-bottom: 0; }
.air-doc-prose.is-lede-body > p:first-child::first-letter {
  float: left;
  font-weight: 800;
  font-size: 54px;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: #0c3a26;
  padding: 4px 10px 0 0;
}
.air-doc-step p { margin: 0; }
.air-doc-prose ul, .air-doc-prose ol { margin: 0 0 16px; padding-left: 1.2em; }
.air-doc-prose strong { font-weight: 700; color: #0c3a26; }

.air-doc-sec { margin: 36px 0 14px; }
.air-doc-sec-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.air-doc-sec-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.16;
  color: var(--doc-accent);
}
.air-doc-sec-line { flex: 1; height: 1px; background: #dbe4d4; }
.air-doc-sec h2 {
  margin: 0;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: -0.032em;
  color: #0c3a26;
  text-wrap: balance;
}
.air-doc-sec h2.is-close {
  display: inline-block;
  padding: 0 3px;
  background: linear-gradient(transparent 66%, #c8f542 66%);
}

.air-doc-quote {
  position: relative;
  margin: 32px 0;
  padding: 26px 28px 24px;
  border-radius: 20px;
  background: #eef7e6;
  overflow: hidden;
}
.air-doc-quote-mark {
  position: absolute;
  top: -26px;
  right: 10px;
  font-weight: 800;
  font-size: 112px;
  line-height: 1;
  color: #c8f542;
  opacity: 0.4;
}
.air-doc-quote p {
  position: relative;
  margin: 0;
  padding-right: 56px;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.28;
  letter-spacing: -0.026em;
  color: #0c3a26;
  text-wrap: pretty;
}
.air-doc-quote-attr {
  position: relative;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7d6e;
}
.air-doc-quote-attr i {
  width: 22px;
  height: 2px;
  background: var(--doc-accent);
  font-style: normal;
}

.air-doc-steps {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.air-doc-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8faf6;
  border-top: 2px solid var(--doc-accent);
}
.air-doc-step-n {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #0c3a26;
  color: #c8f542;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16.5px;
  font-weight: 800;
}
.air-doc-step strong {
  display: block;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: #0c3a26;
  margin-bottom: 2px;
}

.air-doc-stat {
  margin: 28px 0;
  padding: 28px 22px;
  border-radius: 18px;
  background: #0c3a26;
  color: #f4f8f0;
  text-align: center;
}
.air-doc-stat-num {
  font-weight: 800;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #c8f542;
}
.air-doc-stat-num small { font-size: 0.38em; margin-left: 6px; font-weight: 600; }
.air-doc-stat p {
  margin: 12px auto 0;
  max-width: 340px;
  font-size: 13px;
  color: #b8f28a;
  line-height: 1.55;
}

.air-doc-join {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #0c3a26;
}
.air-doc-join-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8f28a;
  margin-bottom: 5px;
}
.air-doc-join-title {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #f4f8f0;
}
.air-doc-join a,
.air-doc-join-cta {
  padding: 9px 16px;
  border-radius: 999px;
  background: #c8f542;
  color: #0c2b1c;
  font-weight: 700;
  font-size: 13.5px;
  white-space: nowrap;
  text-decoration: none;
}
.air-doc-join a:hover { background: #d6f96a; color: #0c2b1c; }

.air-doc-notes {
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid #e3ede6;
}
.air-doc-notes-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7d6e;
  margin-bottom: 10px;
}
.air-doc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.air-doc-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #0c3a26;
  background: #eef7e6;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 500;
}

.air-read-hidden {
  width: 100%;
  max-width: var(--air-article-width);
  margin: 0 auto 18px;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #41544C;
  font-size: 14px;
}
.air-read-related {
  margin: 0;
  padding: 28px 34px 40px;
  border-top: 1px solid #e3ede6;
  box-sizing: border-box;
}
.article-page .air-read-related {
  padding-left: 32px;
  padding-right: 32px;
}
.article-page .article--new_template .article__body > .section__heading:first-child {
  margin-top: 8px;
}
.air-read-related h2 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #0c3a26;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.air-read-related-card {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid #e3ede6;
  text-decoration: none;
}
.air-read-related-card:hover { opacity: 0.85; }
.air-read-related-card:last-child { border-bottom: none; }
.air-read-related-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7d6e;
  margin-bottom: 6px;
}
.air-read-related-title {
  font-weight: 700;
  font-size: 18px;
  color: #0c3a26;
  line-height: 1.3;
  margin-bottom: 4px;
}
.air-read-related-summary {
  font-size: 14px;
  line-height: 1.55;
  color: #45564b;
  margin: 0;
}

.air-read-preview {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  padding-bottom: 12px;
}
.air-read-preview-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--air-read-fade, #ffffff) 82%);
}
.article--fieldnote .air-read-preview-fade {
  --air-read-fade: var(--air-mist, #f8faf6);
}
.air-read-unlock {
  position: relative;
  z-index: 1;
  margin: -40px 0 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 59, 45, 0.22);
  border-radius: 16px;
  padding: 26px 24px 24px;
  box-shadow: 0 10px 28px rgba(12, 43, 28, 0.08);
}
.air-read-unlock-tag {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Schibsted Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #003B2D;
}
.air-read-unlock h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Schibsted Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #003B2D;
}
.air-read-unlock p {
  margin: 0 0 18px;
  color: #41544C;
  font-size: 15px;
  line-height: 1.6;
}
.air-read-unlock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.air-read-page a.air-read-unlock-register,
.article-page a.air-read-unlock-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #003B2D;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 14px;
  padding: 13px 22px;
  transition: background 180ms ease;
}
.air-read-page a.air-read-unlock-register:hover,
.article-page a.air-read-unlock-register:hover {
  background: #146E32;
  color: #FFFFFF;
}
.air-read-page a.air-read-unlock-login,
.article-page a.air-read-unlock-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #003B2D;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(0, 59, 45, 0.28);
  border-radius: 10px;
  padding: 12px 18px;
}
.air-read-page a.air-read-unlock-login:hover,
.article-page a.air-read-unlock-login:hover {
  background: #E6F3C0;
  color: #003B2D;
}

@media (max-width: 800px) {
  .air-read-page {
    padding-left: var(--air-page-gutter-sm, 20px);
    padding-right: var(--air-page-gutter-sm, 20px);
  }
}
@media (max-width: 600px) {
  .air-doc-cover, .air-doc-intro, .air-doc-body, .air-read-related { padding-left: 20px; padding-right: 20px; }
  .air-doc-cover { flex-direction: column; align-items: flex-start; min-height: 0; }
  .air-doc-join { grid-template-columns: 1fr; }
  .air-read-unlock { padding: 22px 18px 20px; margin-top: -28px; }
  .air-read-unlock h2 { font-size: 20px; }
}
