/* =========================================================
   Mule Digital — blog.css
   Styles for /blog (listing) and /blog/<slug> (post body).
   ========================================================= */

/* ---------- Blog listing ---------- */
.blog-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.blog-filter {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: .45rem .8rem;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.blog-filter:hover { color: var(--fg); border-color: var(--line2); }
.blog-filter.active {
  color: #fff; background: var(--fg); border-color: var(--fg);
}

.posts {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
  border-top: 1px solid var(--line2);
  padding-top: 3rem;
}
.post-card {
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.post-card:hover { transform: translateY(-4px); }
.post-card-img {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f3f3f3;
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.post-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05) brightness(.95);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}
.post-card:hover .post-card-img img {
  transform: scale(1.04);
  filter: grayscale(100%) contrast(1.1) brightness(1);
}
.post-card-img::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color .35s ease;
  pointer-events: none;
}
.post-card:hover .post-card-img::after { border-color: var(--fg); }
.post-card-body {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 1.25rem;
}
.post-card .num {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em;
}
.post-card .meta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-bottom: .75rem;
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
}
.post-card h3 {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -.02em; line-height: 1.2;
  margin-bottom: .85rem;
  color: var(--fg);
  transition: color .2s ease;
}
.post-card h3 a { color: inherit; transition: color .2s ease; }
.post-card .excerpt {
  color: var(--fg2); font-size: .95rem; line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 50ch;
}
.post-card .read {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color .2s ease;
}
.post-card:hover .read { color: var(--fg); }
@media (max-width: 820px) {
  .posts { grid-template-columns: 1fr; gap: 2.5rem; }
  .post-card-body { grid-template-columns: 50px 1fr; gap: 1rem; }
}

/* ---------- Single post body ---------- */
.post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 9rem var(--gutter) 5rem;
}
.post-back {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .4rem;
  margin-bottom: 3rem;
  transition: color .2s ease;
}
.post-back:hover { color: var(--fg); }
.post-tag {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: .35rem .7rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.post-title {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -.035em; line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--fg);
}
.post-author {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.post-author img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(.6) contrast(1.02);
}
.post-author img[alt="Justin Reynolds"] { object-position: center 30%; }
.post-author img[alt="Emile Holemans"] { object-position: center 15%; }
.post-author-name {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: .92rem; color: var(--fg);
}
.post-author-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .04em;
  color: var(--muted); margin-top: .15rem;
}

.post-hero-img {
  width: 100%;
  margin: 0 0 1rem;
  background: #f3f3f3;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
}
.post-hero-img img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08) brightness(.92);
}
.post-img-credit {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  color: var(--muted); letter-spacing: .04em;
  text-align: right;
  margin: 0 0 3rem;
}
.post-img-credit a {
  color: var(--muted); text-decoration: underline;
  text-underline-offset: 2px;
}
.post-img-credit a:hover { color: var(--fg); }

.post-body {
  font-family: 'Geist', sans-serif;
  font-size: 1.05rem; line-height: 1.75;
  color: var(--fg2); font-weight: 400;
}
.post-body p { margin-bottom: 1.5rem; }
.post-body h2 {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  letter-spacing: -.02em; line-height: 1.15;
  color: var(--fg);
  margin: 3rem 0 1.25rem;
}
.post-body h3 {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: 1.2rem; letter-spacing: -.015em; line-height: 1.2;
  color: var(--fg);
  margin: 2.5rem 0 1rem;
}
.post-body strong { font-weight: 600; color: var(--fg); }
.post-body em { font-style: italic; }
.post-body a { color: var(--fg); border-bottom: 1px solid var(--line2); transition: border-color .2s ease; }
.post-body a:hover { border-bottom-color: var(--fg); }
.post-body ul, .post-body ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}
.post-body li { margin-bottom: .5rem; }
.post-body .highlight {
  border-left: 2px solid var(--fg);
  padding: .25rem 0 .25rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Geist', sans-serif; font-style: italic;
  font-size: 1.15rem; line-height: 1.55;
  color: var(--fg);
  font-weight: 400;
}

.post-cta {
  margin-top: 4rem;
  padding: 2.5rem;
  background: #0a0a0a;
  color: #fff;
  border: 1px solid #1a1a1a;
}
.post-cta .num {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1rem;
}
.post-cta h3 {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -.02em; line-height: 1.15;
  margin-bottom: .85rem;
}
.post-cta p {
  font-size: .95rem; line-height: 1.55;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 1.5rem;
  max-width: 50ch;
}
.post-cta .btn { border-color: #fff; color: #fff; }
.post-cta .btn:hover { background: #fff; color: #0a0a0a; }

.related-posts {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line2);
}
.related-posts .num {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.related-posts h3 {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: 1.25rem; letter-spacing: -.015em; line-height: 1.15;
  margin-bottom: 1.5rem;
}
.related-posts ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.related-posts li {
  border-bottom: 1px solid var(--line);
}
.related-posts a {
  display: grid; grid-template-columns: 60px 1fr 30px;
  gap: 1rem; align-items: center;
  padding: 1.25rem 0;
  font-family: 'Geist', sans-serif; font-size: 1rem; line-height: 1.3;
  color: var(--fg2);
  transition: color .2s ease, padding-left .3s cubic-bezier(.16, 1, .3, 1);
}
.related-posts a:hover { color: var(--fg); padding-left: .5rem; }
.related-posts a .ln {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em;
}
.related-posts a .arr {
  font-family: 'Geist Mono', monospace; color: var(--muted);
  text-align: right;
  transition: color .2s ease, transform .2s ease;
}
.related-posts a:hover .arr { color: var(--fg); transform: translateX(3px); }

@media (max-width: 760px) {
  .post-wrap { padding: 7rem var(--gutter) 4rem; }
  .post-hero-img { aspect-ratio: 4/3; margin-bottom: .85rem; }
}

/* =========================================================
   Post enhancements: progress bar, TOC, share, author bio,
   prev/next, plus listing: featured card, search, subscribe.
   ========================================================= */

/* ---------- Reading progress bar (post pages) ---------- */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--fg);
  z-index: 101;
  pointer-events: none;
  transform-origin: left center;
  transition: width .12s linear;
}

/* ---------- Sticky TOC (desktop only, fixed at left) ---------- */
.post-toc { display: none; }
@media (min-width: 1240px) {
  .post-toc {
    display: block;
    position: fixed;
    top: 50%; left: clamp(1rem, 3vw, 2.5rem);
    transform: translateY(-50%);
    width: 200px;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 50;
    padding: .25rem 0;
  }
  .post-toc-label {
    font-family: 'Geist Mono', monospace;
    font-size: 10px; letter-spacing: .05em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .85rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--line);
  }
  .post-toc ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; padding: 0; margin: 0; }
  .post-toc li { line-height: 1.35; }
  .post-toc a {
    display: block;
    font-family: 'Geist', sans-serif;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.35;
    border-left: 1px solid transparent;
    padding-left: .65rem;
    margin-left: -.65rem;
    transition: color .2s ease, border-color .2s ease;
  }
  .post-toc a:hover { color: var(--fg); }
  .post-toc a.active {
    color: var(--fg);
    border-left-color: var(--fg);
    font-weight: 500;
  }
}

/* ---------- Reading-time chip in author meta ---------- */
.post-author-meta .read-time { color: var(--fg); }

/* ---------- Share row (after post body) ---------- */
.post-share {
  display: flex; flex-wrap: wrap; gap: .55rem;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.post-share-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted);
  margin-right: .5rem;
}
.post-share a, .post-share button {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--fg2);
  border: 1px solid var(--line);
  padding: .55rem .85rem;
  display: inline-flex; align-items: center; gap: .4rem;
  cursor: pointer;
  background: transparent;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.post-share a:hover,
.post-share button:hover {
  color: var(--bg); border-color: var(--fg); background: var(--fg);
}

/* ---------- Author bio block (after share) ---------- */
.author-bio {
  margin-top: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}
.author-bio-photo {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  filter: saturate(.6) contrast(1.02);
  background: #f3f3f3;
}
.author-bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-bio-photo img[alt="Justin Reynolds"] { object-position: center 30%; }
.author-bio-photo img[alt="Emile Holemans"] { object-position: center 15%; }
.author-bio-num {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: .4rem;
}
.author-bio-name {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: 1.15rem; letter-spacing: -.015em; line-height: 1.15;
  color: var(--fg); margin-bottom: .15rem;
}
.author-bio-role {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: .85rem;
}
.author-bio-blurb {
  font-size: .92rem; line-height: 1.6; color: var(--fg2);
  max-width: 60ch;
}
.author-bio-link {
  display: inline-block; margin-top: .85rem;
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--fg2); letter-spacing: .04em;
  border-bottom: 1px solid var(--line2);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.author-bio-link:hover { color: var(--fg); border-bottom-color: var(--fg); }
@media (max-width: 560px) {
  .author-bio { grid-template-columns: 64px 1fr; gap: 1rem; padding: 2rem 0; }
  .author-bio-photo { width: 64px; height: 64px; }
}

/* ---------- Prev / Next post nav ---------- */
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
  border: 1px solid var(--line2);
}
.post-nav a {
  background: var(--bg);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  gap: .55rem;
  transition: background .25s ease;
  min-height: 110px;
  justify-content: space-between;
}
.post-nav a:hover { background: #fafafa; }
.post-nav a.next { text-align: right; align-items: flex-end; }
.post-nav-label {
  font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--muted);
  display: inline-flex; gap: .35rem; align-items: center;
}
.post-nav-title {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: 1rem; letter-spacing: -.01em; line-height: 1.25;
  color: var(--fg);
}
.post-nav .arr {
  display: inline-block;
  transition: transform .25s ease;
}
.post-nav a:hover .arr { transform: translateX(3px); }
.post-nav a.prev:hover .arr { transform: translateX(-3px); }
.post-nav a.empty {
  pointer-events: none;
  opacity: .35;
}
.post-nav a.empty .post-nav-title { color: var(--muted); }
@media (max-width: 560px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav a.next { text-align: left; align-items: flex-start; }
}

/* =========================================================
   Listing additions: search, featured card, avatars,
   subscribe panel.
   ========================================================= */

.blog-search {
  display: flex; align-items: center;
  border: 1px solid var(--line2);
  margin-bottom: 1.5rem;
  background: var(--bg);
  transition: border-color .2s ease;
}
.blog-search:focus-within { border-color: var(--fg); }
.blog-search-icon {
  flex-shrink: 0;
  padding: 0 .85rem;
  color: var(--muted);
  display: inline-flex; align-items: center;
}
.blog-search input {
  flex: 1; min-width: 0;
  padding: .9rem .85rem .9rem 0;
  border: none; background: transparent;
  font-family: 'Geist', sans-serif;
  font-size: .95rem; color: var(--fg);
  outline: none;
}
.blog-search input::placeholder { color: var(--muted); }
.blog-search-clear {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  padding: .85rem 1rem;
  background: transparent; border: none; cursor: pointer;
  display: none;
  border-left: 1px solid var(--line);
  transition: color .2s ease, background .2s ease;
}
.blog-search-clear:hover { color: var(--fg); background: #fafafa; }
.blog-search.has-value .blog-search-clear { display: block; }
.blog-no-results {
  padding: 4rem 0;
  text-align: center;
  font-family: 'Geist Mono', monospace; font-size: 12px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  display: none;
  border-bottom: 1px solid var(--line);
}
.blog-no-results.show { display: block; }

/* ---------- Featured post card (top of listing) ---------- */
.post-featured {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  padding: 0 0 3.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line2);
  align-items: center;
}
.post-featured-img {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f3f3f3;
  border: 1px solid var(--line);
}
.post-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(100%) contrast(1.05) brightness(.95);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}
.post-featured-img:hover img,
.post-featured:hover .post-featured-img img {
  transform: scale(1.04);
  filter: grayscale(100%) contrast(1.1) brightness(1);
}
.post-featured-img::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color .35s ease;
  pointer-events: none;
}
.post-featured:hover .post-featured-img::after { border-color: var(--fg); }
.post-featured-corner {
  position: absolute;
  top: .85rem; left: 1rem;
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  background: rgba(10, 10, 10, .7);
  padding: .35rem .55rem;
  z-index: 1;
}
.post-featured-body { display: flex; flex-direction: column; gap: 1rem; }
.post-featured-num {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
}
.post-featured-meta {
  display: flex; flex-wrap: wrap; gap: .65rem; align-items: center;
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
}
.post-featured-meta .meta-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(.6);
  flex-shrink: 0;
}
.post-featured-meta .meta-avatar[alt="Justin Reynolds"] { object-position: center 30%; }
.post-featured-meta .meta-avatar[alt="Emile Holemans"] { object-position: center 15%; }
.post-featured h3 {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: -.025em; line-height: 1.05;
  color: var(--fg);
  margin: 0;
}
.post-featured h3 a {
  color: inherit;
  transition: color .2s ease;
}
.post-featured .excerpt {
  color: var(--fg2); font-size: 1rem; line-height: 1.6;
  max-width: 50ch;
}
.post-featured-cta {
  font-family: 'Geist Mono', monospace; font-size: 12px;
  letter-spacing: .04em; color: var(--fg);
  border-bottom: 1px solid var(--line2);
  padding-bottom: 3px;
  align-self: flex-start;
  display: inline-flex; gap: .35rem; align-items: center;
  transition: padding-right .25s ease;
}
.post-featured-cta:hover { padding-right: .35rem; border-bottom-color: var(--fg); }
@media (max-width: 820px) {
  .post-featured { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 2.5rem; }
}

/* ---------- Author avatars on post cards (listing) ---------- */
.post-card .meta-row {
  display: flex; align-items: center; gap: .65rem;
  margin-bottom: .85rem;
  flex-wrap: wrap;
}
.post-card .meta-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(.6);
  flex-shrink: 0;
}
.post-card .meta-avatar[alt="Justin Reynolds"] { object-position: center 30%; }
.post-card .meta-avatar[alt="Emile Holemans"] { object-position: center 15%; }
.post-card .meta-text {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  display: inline-flex; flex-wrap: wrap; gap: .5rem;
  align-items: baseline;
}

/* ---------- Subscribe panel at bottom of listing ---------- */
.blog-subscribe {
  margin-top: 5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: #0a0a0a;
  color: #fff;
  border: 1px solid #1a1a1a;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 3rem; align-items: center;
}
.blog-subscribe-num {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1rem;
}
.blog-subscribe h3 {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -.02em; line-height: 1.1;
  margin: 0 0 .85rem;
  color: #fff;
}
.blog-subscribe h3 em { font-style: italic; color: rgba(255, 255, 255, .65); font-weight: 400; }
.blog-subscribe p {
  color: rgba(255, 255, 255, .72);
  font-size: .95rem; line-height: 1.55;
  max-width: 42ch;
  margin: 0;
}
.blog-subscribe-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  transition: border-color .2s ease;
}
.blog-subscribe-form:focus-within { border-color: #fff; }
.blog-subscribe-form input {
  flex: 1; min-width: 0;
  padding: .9rem 1rem;
  border: none; background: transparent;
  font-family: 'Geist', sans-serif; font-size: .95rem;
  color: #fff; outline: none;
}
.blog-subscribe-form input::placeholder { color: rgba(255, 255, 255, .5); }
.blog-subscribe-form button {
  padding: .9rem 1.25rem;
  background: #fff; color: var(--fg);
  border: none; cursor: pointer;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  transition: background .2s ease;
  white-space: nowrap;
}
.blog-subscribe-form button:hover { background: rgba(255, 255, 255, .85); }
.blog-subscribe .success {
  font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: .04em;
  color: rgba(255, 255, 255, .85); margin-top: 1rem;
  display: none;
}
.blog-subscribe.submitted .blog-subscribe-form { display: none; }
.blog-subscribe.submitted .success { display: block; }
@media (max-width: 760px) {
  .blog-subscribe { grid-template-columns: 1fr; gap: 1.5rem; }
}
