@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap");

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

#blog-modal .blog-page {
  background: #e8e8e4;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding: 40px 32px 60px;
}

#blog-modal .page-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 20px;
  text-align: center;
}

#blog-modal .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

#blog-modal .card {
  background: #fff;
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
  animation: waBlogRise 0.6s ease both;
}

#blog-modal .card:nth-child(1) { animation-delay: 0s; }
#blog-modal .card:nth-child(2) { animation-delay: 0.1s; }
#blog-modal .card:nth-child(3) { animation-delay: 0.2s; }

@keyframes waBlogRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

#blog-modal .chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
}

#blog-modal .chrome-brand { font-size: 10px; font-weight: 500; color: #111; }
#blog-modal .chrome-action { font-size: 10px; color: #888; cursor: pointer; }

#blog-modal .hero-img,
#blog-modal .hero-dark-img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
}

#blog-modal .body { padding: 24px 22px 28px; }
#blog-modal .headline-xl, #blog-modal .headline-lg, #blog-modal .body-stat, #blog-modal .bottom-line p, #blog-modal .pull-quote, #blog-modal .hero-dark-text h2 {
  font-family: "Instrument Serif", serif;
}
#blog-modal .headline-xl { font-size: 30px; line-height: 1.08; margin-bottom: 16px; text-align: center; }
#blog-modal .headline-lg { font-size: 26px; line-height: 1.1; margin-bottom: 14px; }
#blog-modal .divider { width: 32px; height: 1px; background: #ccc; margin: 0 auto 18px; }
#blog-modal .body-p, #blog-modal .body-bold { font-size: 12.5px; line-height: 1.8; color: #444; margin-bottom: 10px; }
#blog-modal .body-bold { font-weight: 500; color: #0e0e0e; }
#blog-modal .body-stat { font-size: 24px; color: #0e0e0e; margin: 16px 0 4px; }
#blog-modal .body-cta, #blog-modal .body-cta-outline {
  display: block; width: 100%; text-align: center; text-decoration: none; font-size: 12px; font-weight: 500; cursor: pointer;
}
#blog-modal .body-cta { background: #0e0e0e; color: #fff; padding: 12px; margin-top: 20px; }
#blog-modal .body-cta-outline { background: transparent; color: #0e0e0e; padding: 11px; border: 1px solid #0e0e0e; margin-top: 8px; }
#blog-modal .banner { background: #b8f0c8; padding: 7px 14px; font-size: 10px; font-weight: 500; color: #0e0e0e; text-align: center; }
#blog-modal .eyebrow { font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #888; text-align: center; margin-bottom: 8px; }
#blog-modal .hero-dark { position: relative; overflow: hidden; background: #0e0e0e; }
#blog-modal .hero-dark-img { opacity: 0.7; }
#blog-modal .hero-dark-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.75) 100%); }
#blog-modal .arc-white { position: absolute; top: 18px; left: 18px; z-index: 2; }
#blog-modal .hero-dark-text { position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2; }
#blog-modal .hero-dark-text h2 { font-size: 26px; line-height: 1.1; color: #fff; }
#blog-modal .pull-quote { font-style: italic; font-size: 14px; line-height: 1.55; color: #0e0e0e; border-left: 2px solid #0e0e0e; padding-left: 13px; margin: 14px 0; }
#blog-modal .promo-header { background: #f7f5f0; padding: 22px 22px 0; }
#blog-modal .promo-img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: 2px; }
#blog-modal .tag-pill { display: inline-block; border: 1px solid #ccc; border-radius: 100px; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: #666; padding: 3px 10px; margin-bottom: 14px; }
#blog-modal .signoff { padding: 16px 22px 22px; border-top: 1px solid #f0f0f0; display: flex; align-items: center; gap: 12px; }
#blog-modal .signoff-text strong { font-size: 12px; font-weight: 500; color: #111; display: block; }
#blog-modal .signoff-text p { font-size: 11px; color: #999; line-height: 1.55; }
#blog-modal .bottom-line { padding: 0 22px 26px; text-align: center; }
