/* =============================================
   AGENTIC WELLNESS — Single Post / Article
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #2E4A70;
  --navy-mid:   #3D5E8C;
  --navy-light: #5C7AA8;
  --navy-pale:  #8CA2C4;
  --amber:      #CF8A40;
  --amber-dark: #B77436;
  --cream:      #F5EDE3;
  --warm-white: #FFFCF8;
  --off-white:  #FFF9F0;

  --font-display: 'Cormorant', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Layout resets — targeted, not blanket ---- */
body { max-width: none !important; margin: 0 !important; }

/* Only reset outer scaffolding wrappers */
.wp-site-blocks,
.is-root-container { max-width: none !important; padding: 0 !important; margin: 0 !important; }

/* Post hero — strip WP group defaults, keep our padding */
.aw-post-hero.wp-block-group { max-width: none !important; padding: 10rem 3.5rem 5rem !important; }

/* Post hero child blocks — reset WP styling */
.aw-post-hero .wp-block-post-terms,
.aw-post-hero .wp-block-post-terms a { all: unset; display: flex; align-items: center; }
.aw-post-hero .wp-block-post-title { all: unset; display: block; }
.aw-post-hero .wp-block-post-author-name,
.aw-post-hero .wp-block-post-author-name a,
.aw-post-hero .wp-block-post-date,
.aw-post-hero .wp-block-post-date a { all: unset; }
.aw-post-meta.wp-block-group { max-width: none !important; padding: 0 !important; }

/* Featured image */
.aw-post-image,
.aw-post-image.wp-block-post-featured-image { display: block !important; margin: 0 !important; padding: 0 !important; max-width: none !important; }
.aw-post-image img,
.wp-block-post-featured-image img { display: block; width: 100%; max-height: 520px; object-fit: cover; }

/* Article wrap */
.aw-article-wrap.wp-block-group {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 3.5rem) !important;
  box-sizing: border-box;
}

/* Article content — constrained reading column */
.aw-article-content.wp-block-post-content {
  display: block !important;
  width: 100% !important;
  max-width: 740px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* Reset any WP block width constraints within content */
.aw-article-content .wp-block-paragraph,
.aw-article-content .wp-block-heading,
.aw-article-content .wp-block-list,
.aw-article-content .wp-block-quote,
.aw-article-content figure { max-width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }

/* ---- Reading progress bar ---- */
.aw-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber-dark), var(--amber));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(207,138,64,0.5);
}

/* ============================================
   HEADER (same as home)
   ============================================ */
.aw-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3.5rem;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.aw-header.scrolled {
  background: rgba(255,252,248,0.96);
  border-color: rgba(46,74,112,0.1);
  backdrop-filter: blur(16px);
}

.aw-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}

.aw-logo-top {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-white);
  transition: color 0.3s;
}

.aw-header.scrolled .aw-logo-top { color: var(--navy); }

.aw-logo-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
}

.aw-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.aw-nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,252,248,0.7);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}

.aw-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--amber);
  transition: right 0.35s var(--ease-expo);
}

.aw-nav a:hover { color: var(--warm-white); }
.aw-nav a:hover::after { right: 0; }
.aw-header.scrolled .aw-nav a { color: rgba(46,74,112,0.6); }
.aw-header.scrolled .aw-nav a:hover { color: var(--navy); }

.aw-nav-cta {
  padding: 0.55rem 1.5rem !important;
  border: 1px solid var(--amber) !important;
  color: var(--amber) !important;
}

.aw-nav-cta:hover {
  background: var(--amber) !important;
  color: var(--warm-white) !important;
}

.aw-nav-cta::after { display: none !important; }

/* ============================================
   POST HERO
   ============================================ */
.aw-post-hero {
  background: var(--navy);
  padding: 10rem 3.5rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Ghost grid */
.aw-post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.aw-post-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.aw-post-cat,
.aw-post-hero .wp-block-post-terms {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber) !important;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.aw-post-cat a,
.aw-post-hero .wp-block-post-terms a {
  color: var(--amber) !important;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.aw-post-cat a:hover,
.aw-post-hero .wp-block-post-terms a:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.aw-post-cat::before,
.aw-post-hero .wp-block-post-terms::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.aw-post-title,
.aw-post-hero .wp-block-post-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw + 1rem, 5.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  margin-bottom: 2.5rem;
  max-width: 820px;
}

.aw-post-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.aw-post-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.aw-post-meta-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,252,248,0.35);
}

.aw-post-meta-value,
.aw-meta-author,
.aw-meta-date,
.aw-meta-date a,
.aw-meta-reading {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,252,248,0.7) !important;
  text-decoration: none;
}

.aw-post-meta .wp-block-post-author-name,
.aw-post-meta .wp-block-post-date,
.aw-post-meta .wp-block-post-date a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,252,248,0.7);
  text-decoration: none;
}

.aw-post-meta-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  align-self: center;
}

/* ============================================
   FEATURED IMAGE
   ============================================ */
.aw-post-image {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  position: relative;
}

.aw-post-image img,
.aw-post-image .wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image placeholder when no featured image */
.aw-post-image-placeholder {
  height: 420px;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   ARTICLE BODY LAYOUT
   ============================================ */
.aw-article-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) 3.5rem;
  display: grid;
  grid-template-columns: 1fr 740px 1fr;
  gap: 0;
}

@media (max-width: 1100px) {
  .aw-article-wrap {
    grid-template-columns: 1fr;
    max-width: 740px;
  }
  .aw-article-sidebar { display: none; }
}

.aw-article-sidebar {
  padding-top: 0.5rem;
}

/* Sticky section tracker on desktop */
.aw-toc {
  position: sticky;
  top: 8rem;
  padding-right: 2.5rem;
}

.aw-toc-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aw-toc-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--amber);
}

.aw-toc-list {
  list-style: none;
  border-left: 1px solid rgba(46,74,112,0.12);
  padding-left: 1rem;
}

.aw-toc-list li {
  margin-bottom: 0.6rem;
}

.aw-toc-list a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(46,74,112,0.45);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

.aw-toc-list a:hover,
.aw-toc-list a.active {
  color: var(--navy);
}

.aw-toc-list a.active {
  font-weight: 600;
  color: var(--amber);
}

/* ============================================
   ARTICLE CONTENT TYPOGRAPHY
   ============================================ */
.aw-article-content {
  min-width: 0; /* prevent grid blowout */
}

.aw-article-content > * + * {
  margin-top: 1.75rem;
}

/* Paragraphs */
.aw-article-content p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.2rem);
  font-weight: 400;
  line-height: 1.85;
  color: #2a3a52;
  letter-spacing: 0.01em;
}

/* First paragraph drop cap */
.aw-article-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 700;
  font-style: italic;
  float: left;
  line-height: 0.75;
  margin-right: 0.12em;
  margin-top: 0.08em;
  color: var(--amber);
}

/* H2 — major section headings */
.aw-article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-top: 3.5rem !important;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--amber);
}

/* H3 — subsection headings */
.aw-article-content h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 2.5rem !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.aw-article-content h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(207,138,64,0.3), transparent);
}

/* H4 */
.aw-article-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.5rem !important;
}

/* Blockquote — editorial pull quote */
.aw-article-content blockquote {
  margin: 3rem 0 !important;
  padding: 2rem 2.5rem;
  background: var(--cream);
  border-left: 4px solid var(--amber);
  position: relative;
}

.aw-article-content blockquote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--amber);
  opacity: 0.25;
  position: absolute;
  top: 1.5rem;
  left: 1.25rem;
  pointer-events: none;
}

.aw-article-content blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem) !important;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
  margin-top: 0 !important;
}

.aw-article-content blockquote p::first-letter {
  /* Override drop cap inside blockquote */
  font-size: inherit;
  font-weight: inherit;
  float: none;
  color: inherit;
  margin: 0;
}

.aw-article-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-style: normal;
}

/* Links */
.aw-article-content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(207,138,64,0.5);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s, color 0.2s;
}

.aw-article-content a:hover {
  color: var(--amber-dark);
  text-decoration-color: var(--amber);
}

/* Strong/bold */
.aw-article-content strong {
  font-weight: 600;
  color: var(--navy);
}

/* Italic */
.aw-article-content em {
  font-style: italic;
  color: inherit;
}

/* Unordered lists */
.aw-article-content ul {
  list-style: none;
  padding-left: 0;
}

.aw-article-content ul li {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
  color: #2a3a52;
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.aw-article-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.4rem;
  top: 0.65em;
}

/* Ordered lists */
.aw-article-content ol {
  padding-left: 1.5rem;
  counter-reset: aw-counter;
  list-style: none;
}

.aw-article-content ol li {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.2rem);
  line-height: 1.75;
  color: #2a3a52;
  padding-left: 1rem;
  position: relative;
  counter-increment: aw-counter;
  margin-bottom: 0.5rem;
}

.aw-article-content ol li::before {
  content: counter(aw-counter, decimal-leading-zero);
  position: absolute;
  left: -1.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  top: 0.3em;
}

/* Images within content */
.aw-article-content figure {
  margin: 2.5rem 0 !important;
}

.aw-article-content figure img {
  width: 100%;
  height: auto;
  display: block;
}

.aw-article-content figcaption {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--navy-pale);
  text-align: center;
  padding: 0.75rem 0 0;
  border-bottom: 1px solid rgba(46,74,112,0.1);
  padding-bottom: 0.75rem;
}

/* Horizontal rule */
.aw-article-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  margin: 3rem 0 !important;
  opacity: 0.4;
}

/* ============================================
   POST FOOTER — AUTHOR BIO
   ============================================ */
.aw-post-footer {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) 3.5rem;
  position: relative;
  overflow: hidden;
}

.aw-post-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.aw-author-card {
  max-width: 740px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 3rem;
}

@media (max-width: 600px) {
  .aw-author-card { grid-template-columns: 1fr; }
}

.aw-author-photo {
  width: 90px;
  height: 90px;
  background: var(--navy-mid);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.aw-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.aw-author-photo-initials {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,252,248,0.3);
}

.aw-author-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.2rem;
}

.aw-author-role {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.aw-author-bio-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,252,248,0.6);
}

.aw-back-to-journal {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.aw-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,252,248,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.aw-back-link:hover { color: var(--warm-white); }

.aw-back-link::before {
  content: '←';
  font-size: 0.85rem;
}

/* ============================================
   NEWSLETTER (same as home)
   ============================================ */
.aw-newsletter {
  background: var(--amber);
  padding: clamp(3.5rem, 7vw, 5.5rem) 3.5rem;
  position: relative;
  overflow: hidden;
}

.aw-newsletter::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.aw-newsletter-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .aw-newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.aw-newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--warm-white);
}

.aw-newsletter h2 strong {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}

.aw-newsletter p {
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,252,248,0.8);
  line-height: 1.65;
}

.aw-newsletter-form {
  display: flex;
}

.aw-newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.95rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,252,248,0.15);
  border: 1px solid rgba(255,252,248,0.35);
  border-right: none;
  color: var(--warm-white);
  outline: none;
}

.aw-newsletter-form input::placeholder { color: rgba(255,252,248,0.5); }

.aw-newsletter-form input:focus {
  background: rgba(255,252,248,0.22);
  border-color: rgba(255,252,248,0.6);
}

.aw-newsletter-form button {
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--warm-white);
  border: 1px solid var(--navy);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.aw-newsletter-form button:hover { background: var(--navy-mid); }

/* ============================================
   FOOTER (same as home)
   ============================================ */
.aw-footer {
  background: var(--navy);
  padding: 2.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 3px solid var(--amber);
}

.aw-footer-logo { display: flex; flex-direction: row; align-items: center; gap: 10px; line-height: 1; }
.aw-footer-logo-mark { flex-shrink: 0; }
.aw-footer-logo-wordmark { display: flex; flex-direction: column; gap: 0; }
.aw-footer-logo strong {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-white);
}

.aw-footer-logo span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
}

.aw-footer-copy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,252,248,0.4);
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  .aw-header { padding: 1.2rem 1.5rem; }
  .aw-nav a:not(.aw-nav-cta) { display: none; }
  .aw-post-hero { padding: 8rem 1.5rem 3.5rem; }
  .aw-article-wrap { padding: 3rem 1.5rem; }
  .aw-post-footer { padding: 3rem 1.5rem; }
  .aw-newsletter { padding: 3rem 1.5rem; }
  .aw-newsletter-form { flex-direction: column; }
  .aw-newsletter-form input[type="email"] { border-right: 1px solid rgba(255,252,248,0.35); border-bottom: none; }
  .aw-newsletter-form button { width: 100%; }
  .aw-footer { padding: 2rem 1.5rem; }
  .aw-article-content > p:first-of-type::first-letter {
    font-size: 3rem;
  }
}
