/* ===========================================================================
 * Phosphor Blog — dark theme (landing-site design)
 *
 * Ported from public/styles.css so the /blog section matches phosphor.finance.
 * All rules are scoped under `body.blog-layout` to avoid leaking into the
 * rest of the Rails app (which uses a light-theme Tailwind build).
 * =========================================================================*/

@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap");

html.blog-layout {
  background-color: #0A0806;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
}

/* Undo the tailwind/application.css viewport lock (body { overflow:hidden;
   height:100dvh }) — blog pages want native window scroll so position:sticky
   on the nav works. */
html.blog-layout body.blog-layout {
  overflow: visible !important;
  overflow-x: clip !important;
  height: auto !important;
  min-height: 100dvh;
}

body.blog-layout {
  --orange: #F26522;
  --orange-hover: #D35200;
  --orange-soft: #F88855;
  --orange-dim: rgba(242,101,34,0.1);
  --orange-line: rgba(242,101,34,0.35);
  --dark-btn: #1A1715;
  --dark-btn-hover: #221E1B;
  --bg: #0A0806;
  --ink-2: #141210;
  --text: #FAFAFA;
  --text-muted: rgba(250,250,250,0.62);
  --text-dim: rgba(250,250,250,0.42);
  --text-accent: #F88855;
  --text-gray: rgba(250,250,250,0.5);
  --card-bg: rgba(20,18,16,0.65);
  --card-border: rgba(250,250,250,0.08);
  --section-max: 1148px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;

  margin: 0;
  padding: 0;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01","cv11";
  position: relative;
  min-height: 100vh;
}

body.blog-layout *,
body.blog-layout *::before,
body.blog-layout *::after {
  box-sizing: border-box;
}

/* Solid ink background — matches main landing body */

body.blog-layout a {
  color: inherit;
  text-decoration: none;
}

body.blog-layout img {
  display: block;
  max-width: 100%;
}

body.blog-layout h1,
body.blog-layout h2,
body.blog-layout h3,
body.blog-layout h4 {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

/* ===== BUTTONS ===== */
body.blog-layout .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  white-space: nowrap;
}

body.blog-layout .btn:hover {
  transform: translateY(-1px);
}

body.blog-layout .btn-primary {
  background: var(--orange);
  color: #fff;
}

body.blog-layout .btn-primary:hover {
  background: var(--orange-hover);
}

body.blog-layout .btn-secondary {
  background: var(--dark-btn);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

body.blog-layout .btn-secondary:hover {
  background: var(--dark-btn-hover);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===== HEADER ===== */
body.blog-layout .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.blog-layout .header-logo img {
  height: 28px;
  width: auto;
}

body.blog-layout .header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.blog-layout .header-nav a.nav-link {
  font-size: 16px;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s;
}

body.blog-layout .header-nav a.nav-link:hover,
body.blog-layout .header-nav a.nav-link.active {
  color: #fff;
}

body.blog-layout .header-nav .btn {
  padding: 10px 24px;
}

body.blog-layout .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

body.blog-layout .menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== CONTAINER + HERO ===== */
body.blog-layout .container {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

body.blog-layout .blog-hero {
  position: relative;
  padding: 120px 40px 60px;
  text-align: center;
  overflow: hidden;
  background: transparent;
}

body.blog-layout .blog-hero::before {
  display: none;
}

body.blog-layout .blog-hero > * {
  position: relative;
  z-index: 5;
}

body.blog-layout .blog-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--orange);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

body.blog-layout .blog-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 auto 24px;
  max-width: 864px;
}

body.blog-layout .blog-hero .subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== BLOG INDEX GRID ===== */
body.blog-layout .blog-section {
  position: relative;
  padding: 40px 0 120px;
}

body.blog-layout .blog-section::before {
  display: none;
}

body.blog-layout .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

body.blog-layout .blog-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.blog-layout .blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 86, 7, 0.4);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(251, 86, 7, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.blog-layout .blog-card .cover {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: linear-gradient(135deg, rgba(251, 86, 7, 0.2), rgba(17, 17, 17, 0.6));
  overflow: hidden;
}

body.blog-layout .blog-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.blog-layout .blog-card .cover.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 500;
}

body.blog-layout .blog-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

body.blog-layout .blog-card .meta {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

body.blog-layout .blog-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #fff;
}

body.blog-layout .blog-card .excerpt {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.blog-layout .blog-card .byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}

body.blog-layout .blog-card .byline .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

body.blog-layout .blog-card .byline .author-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

body.blog-layout .blog-card .byline .reading {
  font-size: 13px;
  color: var(--text-dim);
  margin-left: auto;
}

/* Empty state */
body.blog-layout .blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

body.blog-layout .blog-empty h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 12px;
  color: #fff;
}

/* Pagination */
body.blog-layout .blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

body.blog-layout .blog-pagination a,
body.blog-layout .blog-pagination span {
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

body.blog-layout .blog-pagination a:hover {
  background: rgba(251, 86, 7, 0.1);
  border-color: rgba(251, 86, 7, 0.3);
  color: #fff;
}

body.blog-layout .blog-pagination .active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ===== BLOG POST (show) ===== */
body.blog-layout .post-hero {
  position: relative;
  padding: 140px 40px 60px;
  text-align: center;
  overflow: hidden;
}

body.blog-layout .post-hero::before {
  display: none;
}

body.blog-layout .post-hero > * {
  position: relative;
  z-index: 3;
}

body.blog-layout .post-hero .post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: color 0.2s;
}

body.blog-layout .post-hero .post-back:hover {
  color: var(--orange);
}

body.blog-layout .post-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.12;
  max-width: 860px;
  margin: 0 auto 28px;
}

body.blog-layout .post-hero .post-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.blog-layout .post-hero .post-meta .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

body.blog-layout .post-hero .post-meta .author-name {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

body.blog-layout .post-hero .post-meta .divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
}

body.blog-layout .post-hero .post-meta .date,
body.blog-layout .post-hero .post-meta .reading {
  font-size: 14px;
  color: var(--text-muted);
}

body.blog-layout .post-cover {
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 40px;
  position: relative;
  z-index: 3;
}

body.blog-layout .post-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

body.blog-layout .post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 120px;
  position: relative;
  z-index: 3;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Rich text (ActionText / Trix output) — dark theme overrides */
body.blog-layout .post-body .trix-content,
body.blog-layout .post-body article {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
}

body.blog-layout .post-body h1,
body.blog-layout .post-body h2,
body.blog-layout .post-body h3,
body.blog-layout .post-body h4 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

body.blog-layout .post-body h1 { font-size: 40px; font-weight: 500; line-height: 1.15; }
body.blog-layout .post-body h2 { font-size: 32px; font-weight: 500; line-height: 1.2; }
body.blog-layout .post-body h3 { font-size: 24px; font-weight: 500; line-height: 1.3; }
body.blog-layout .post-body h4 { font-size: 20px; font-weight: 500; line-height: 1.35; }

body.blog-layout .post-body p {
  margin: 0 0 24px;
}

body.blog-layout .post-body a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

body.blog-layout .post-body a:hover {
  color: var(--orange-hover);
}

body.blog-layout .post-body strong {
  color: #fff;
  font-weight: 600;
}

body.blog-layout .post-body em {
  font-style: italic;
}

body.blog-layout .post-body ul,
body.blog-layout .post-body ol {
  margin: 0 0 24px;
  padding-left: 28px;
  list-style: revert;
}

body.blog-layout .post-body li {
  margin-bottom: 10px;
}

body.blog-layout .post-body blockquote {
  position: relative;
  margin: 40px 0;
  padding: 28px 28px 24px 52px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(251, 86, 7, 0.18);
  border-left: 3px solid var(--orange);
  border-radius: 0 16px 16px 0;
  color: rgba(230, 236, 255, 0.92);
  font-style: normal;
  font-size: 1.02em;
  line-height: 1.75;
}

body.blog-layout .post-body blockquote::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
}

body.blog-layout .post-body blockquote p {
  margin: 0 0 8px;
}

body.blog-layout .post-body blockquote p:last-child {
  margin-bottom: 0;
}

body.blog-layout .post-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-style: normal;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== TABLES ===== */
body.blog-layout .post-body table {
  width: 100%;
  margin: 36px 0;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

body.blog-layout .post-body thead tr {
  background: rgba(251, 86, 7, 0.15);
}

body.blog-layout .post-body thead th {
  padding: 13px 16px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  white-space: nowrap;
}

body.blog-layout .post-body tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s;
}

body.blog-layout .post-body tbody tr:last-child {
  border-bottom: none;
}

body.blog-layout .post-body tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

body.blog-layout .post-body tbody td {
  padding: 12px 16px;
  color: var(--text-muted);
  vertical-align: top;
}

body.blog-layout .post-body tbody td:first-child {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 768px) {
  body.blog-layout .post-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
  }
}

body.blog-layout .post-body pre {
  margin: 32px 0;
  padding: 20px 24px;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow-x: auto;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #e6ecff;
}

body.blog-layout .post-body code {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.9em;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: #FFCBB3;
}

body.blog-layout .post-body pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

body.blog-layout .post-body img,
body.blog-layout .post-body figure {
  max-width: 100%;
  margin: 32px auto;
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

body.blog-layout .post-body figure img {
  margin: 0;
  border: none;
  border-radius: 12px;
}

body.blog-layout .post-body figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
  font-style: italic;
}

body.blog-layout .post-body hr {
  border: none;
  border-top: 1px solid var(--card-border);
  margin: 48px 0;
}

/* Active Storage attachments inside Trix */
body.blog-layout .post-body action-text-attachment {
  display: block;
  margin: 32px 0;
}

body.blog-layout .post-body action-text-attachment img {
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

body.blog-layout .post-related {
  max-width: 960px;
  margin: 0 auto 100px;
  padding: 0 40px;
  position: relative;
  z-index: 3;
}

body.blog-layout .post-related-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 28px;
  padding-top: 48px;
  border-top: 1px solid var(--card-border);
}

body.blog-layout .post-related .blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  body.blog-layout .post-related {
    padding: 0 20px;
  }

  body.blog-layout .post-related .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
body.blog-layout .footer {
  position: relative;
  padding: 60px 40px 40px;
  border-top: 1px solid var(--card-border);
}

body.blog-layout .footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(83% 50% at 44% 111.5%, rgb(97, 39, 10) 0%, rgb(0, 0, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

body.blog-layout .footer > * {
  position: relative;
  z-index: 1;
}

body.blog-layout .footer-top {
  max-width: var(--section-max);
  margin: 0 auto 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

body.blog-layout .footer-logo img {
  height: 34px;
  margin-bottom: 24px;
}

body.blog-layout .footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

body.blog-layout .footer-links a {
  font-size: 16px;
  color: var(--text-muted);
  transition: color 0.2s;
}

body.blog-layout .footer-links a:hover {
  color: #fff;
}

body.blog-layout .footer-email {
  color: var(--text-accent) !important;
}

body.blog-layout .footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

body.blog-layout .footer-socials {
  display: flex;
  gap: 24px;
  max-width: var(--section-max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}

body.blog-layout .footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  transition: color 0.2s;
}

body.blog-layout .footer-social-link:hover {
  color: #fff;
}

body.blog-layout .footer-social-link svg {
  width: 24px;
  height: 24px;
}

body.blog-layout .footer-social-link span {
  font-size: 16px;
}

body.blog-layout .footer-bottom {
  max-width: var(--section-max);
  margin: 24px auto 0;
  font-size: 14px;
  color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  body.blog-layout .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.blog-layout .blog-hero h1 {
    font-size: 48px;
  }

  body.blog-layout .post-hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  body.blog-layout .header {
    padding: 12px 20px;
  }

  body.blog-layout .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 20px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  body.blog-layout .header-nav.open {
    display: flex;
  }

  body.blog-layout .header-nav .nav-link {
    display: block;
    padding: 12px 0;
  }

  body.blog-layout .menu-toggle {
    display: flex;
  }

  body.blog-layout .blog-hero {
    padding: 120px 20px 40px;
  }

  body.blog-layout .blog-hero::before {
    background: radial-gradient(150% 18% at 50% 0%, rgb(97, 39, 10) 0%, rgb(0, 0, 0) 100%);
  }

  body.blog-layout .blog-hero h1 {
    font-size: 36px;
  }

  body.blog-layout .blog-hero .subtitle {
    font-size: 16px;
  }

  body.blog-layout .container {
    padding: 0 20px;
  }

  body.blog-layout .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.blog-layout .post-hero {
    padding: 120px 20px 40px;
  }

  body.blog-layout .post-hero h1 {
    font-size: 32px;
  }

  body.blog-layout .post-cover {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  body.blog-layout .post-body {
    padding: 0 20px 80px;
    font-size: 16px;
  }

  body.blog-layout .post-body h1 { font-size: 32px; }
  body.blog-layout .post-body h2 { font-size: 26px; }
  body.blog-layout .post-body h3 { font-size: 22px; }

  body.blog-layout .footer {
    padding: 40px 20px 32px;
  }

  body.blog-layout .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  body.blog-layout .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  body.blog-layout .blog-hero h1 {
    font-size: 28px;
  }

  body.blog-layout .post-hero h1 {
    font-size: 28px;
  }

  body.blog-layout .blog-card .body {
    padding: 20px;
  }
}

/* The generic `body.blog-layout h4` rule above (margin:0, weight 700, tight
   letter-spacing) wins over the footer's `.ph-foot-col h4` styling on
   specificity. Restore the footer column headline styling explicitly. */
body.blog-layout .ph-foot-col h4 {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F26522;
  margin: 0 0 18px;
}
