/* =============================================================================
   Sweety Cook - Custom child theme styles
   Design system : Pastel Mint Citron (Fraunces + Manrope) + Marmiton coral
   ============================================================================= */

:root {
  --f44-primary: #ff6f61;
  --f44-primary-dark: #c93449;
  --f44-accent: #c93449;
  --f44-text: #3f3735;
  --f44-text-soft: #7a6f6d;
  --f44-bg: #FAFFFB;
  --f44-surface: #ffffff;
  --f44-line: #ebe5e3;
  --f44-mint: #80E5C7;
  --f44-lemon: #FFE5A0;
  --f44-radius: 12px;
  --f44-shadow-sm: 0 2px 6px rgba(63,55,53,0.06);
  --f44-shadow-md: 0 8px 24px rgba(63,55,53,0.10);
  --f44-shadow-lg: 0 18px 40px rgba(63,55,53,0.16);
  --f44-font-h: 'Fraunces', Georgia, serif;
  --f44-font-b: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
  --f44-container: 1240px;
}

/* ---------- RESET & BASE ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.f44-body {
  margin: 0;
  font-family: var(--f44-font-b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--f44-text);
  background: var(--f44-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--f44-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--f44-primary-dark); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f44-font-h);
  color: var(--f44-text);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
p { margin: 0 0 1em; }
.f44-container, .f44-wrap { max-width: var(--f44-container); margin: 0 auto; padding: 0 1.25rem; }

/* No gap between header and content */
main, .f44-main { padding-top: 0 !important; margin-top: 0 !important; }

/* ---------- HEADER : logo-center-menu-split ---------- */
.f44-header {
  background: var(--f44-surface);
  border-bottom: 1px solid var(--f44-line);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--f44-shadow-sm);
}
.f44-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1rem 1.25rem;
  max-width: var(--f44-container);
  margin: 0 auto;
}
.f44-nav-left, .f44-nav-right {
  flex: 0 1 auto;
  display: flex;
}
.f44-nav-left ul, .f44-nav-right ul {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.f44-nav-left a, .f44-nav-right a {
  color: var(--f44-text);
  font-weight: 500;
  font-size: .95rem;
  padding: .4rem .1rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}
.f44-nav-left a:hover, .f44-nav-right a:hover {
  border-bottom-color: var(--f44-primary);
  color: var(--f44-primary);
}
.f44-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--f44-text);
}
.f44-brand-link { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--f44-text); }
.f44-brand-logo { width: auto; }
.f44-brand-name {
  font-family: var(--f44-font-h);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.f44-header-cta-wrap {
  display: none; /* CTA disabled in header for this site */
}

/* Burger (mobile only) */
.f44-burger {
  display: none;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 8px;
  color: #1a1a1a;
  cursor: pointer;
  z-index: 10000;
  flex-shrink: 0;
  position: relative;
  align-items: center;
  justify-content: center;
}
.f44-burger-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 16px;
}
.f44-burger-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Mobile drawer - HIDDEN BY DEFAULT */
.f44-nav-mobile { display: none; }

@media (max-width: 1023px) {
  .f44-header-inner {
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 1rem;
  }
  .f44-nav-left, .f44-nav-right { display: none !important; }
  .f44-burger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .f44-nav-mobile.is-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 86%;
    max-width: 380px;
    background: #ffffff;
    padding: 4.5rem 1.5rem 2rem;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .f44-nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .f44-nav-mobile-list li {
    border-bottom: 1px solid var(--f44-line);
  }
  .f44-nav-mobile-list a {
    display: block;
    padding: 1rem 0;
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.05rem;
  }
  .f44-nav-mobile-list a:hover { color: var(--f44-primary); }
  .f44-drawer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1a1a1a;
    cursor: pointer;
    line-height: 1;
  }
  .f44-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
  }
  .f44-drawer-overlay.is-active { display: block; }
  .f44-drawer-cta {
    display: block !important;
    margin: 2rem 0 .5rem !important;
    padding: 1rem 1.5rem !important;
    text-align: center !important;
    background: var(--f44-primary) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 1.05rem !important;
  }
}
@media (min-width: 1024px) {
  .f44-drawer-cta { display: none !important; }
  .f44-burger { display: none !important; }
}

/* ---------- HERO : latest-edition with YouTube video ---------- */
.f44-hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: #1a1010;
}
.f44-hero-video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.f44-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.f44-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
}
.f44-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--f44-container);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  color: #ffffff;
  width: 100%;
}
.f44-hero-edition {
  display: inline-block;
  font-family: var(--f44-font-h);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--f44-lemon);
  letter-spacing: .03em;
  margin-bottom: .8rem;
  text-transform: lowercase;
}
.f44-hero-title {
  font-family: var(--f44-font-h);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  max-width: 22ch;
}
.f44-hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  max-width: 56ch;
  margin: 0 0 2rem;
  color: #f8f0e8;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.f44-hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
@keyframes f44-shine-sweep {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.f44-btn {
  display: inline-block;
  padding: .85rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.f44-btn--cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ff6f61 0%, #ff6f61 40%, #ffb39b 50%, #ff6f61 60%, #ff6f61 100%);
  background-size: 200% 100%;
  animation: f44-shine-sweep 3.6s linear infinite;
  color: #ffffff;
}
.f44-btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,111,97,0.35);
  color: #ffffff;
}
.f44-btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.7);
}
.f44-btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.f44-btn--outline {
  background: transparent;
  color: var(--f44-primary);
  border: 2px solid var(--f44-primary);
}
.f44-btn--outline:hover {
  background: var(--f44-primary);
  color: #fff;
}

/* ---------- EDITORIAL BLOC (homepage) ---------- */
.f44-editorial {
  background: var(--f44-bg);
  padding: 5rem 0;
}
.f44-editorial-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.f44-editorial h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--f44-text);
  margin-bottom: 1rem;
}
.f44-editorial h3 {
  font-size: 1.3rem;
  color: var(--f44-text);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}
.f44-editorial p {
  color: var(--f44-text);
  line-height: 1.75;
  font-size: 1.05rem;
}
.f44-editorial .f44-editorial-lead {
  font-size: 1.15rem;
  color: var(--f44-text-soft);
  border-left: 3px solid var(--f44-primary);
  padding-left: 1.25rem;
  margin: 1.5rem 0 2rem;
  font-style: italic;
  font-family: var(--f44-font-h);
}
.f44-editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.f44-editorial-card {
  background: var(--f44-surface);
  border: 1px solid var(--f44-line);
  border-radius: var(--f44-radius);
  padding: 1.5rem;
  box-shadow: var(--f44-shadow-sm);
}
.f44-editorial-card h4 {
  font-family: var(--f44-font-h);
  margin: 0 0 .5rem;
  color: var(--f44-primary);
}
.f44-editorial-card p {
  margin: 0;
  font-size: .96rem;
  color: var(--f44-text-soft);
}
.f44-editorial-callout {
  background: linear-gradient(135deg, var(--f44-mint) 0%, var(--f44-lemon) 100%);
  border-radius: var(--f44-radius);
  padding: 2rem 2.5rem;
  margin: 3rem 0 0;
  color: var(--f44-text);
}
.f44-editorial-callout h3 { margin-top: 0; color: var(--f44-text); }
.f44-editorial-callout p { margin-bottom: 0; color: var(--f44-text); }

/* ---------- CATEGORIES grid (homepage section) ---------- */
.f44-section {
  padding: 5rem 0;
}
.f44-section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
  color: var(--f44-text);
}
.f44-section-title small {
  display: block;
  font-family: var(--f44-font-b);
  font-size: .95rem;
  font-weight: 500;
  color: var(--f44-primary);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .5rem;
}
.f44-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--f44-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.f44-cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--f44-radius);
  height: 240px;
  background: var(--f44-surface);
  box-shadow: var(--f44-shadow-sm);
  text-decoration: none;
  color: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.f44-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--f44-shadow-md);
}
.f44-cat-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform .6s ease;
}
.f44-cat-card:hover .f44-cat-card-img { transform: scale(1.08); }
.f44-cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20,15,15,0.85) 100%);
}
.f44-cat-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.3rem 1.4rem;
  color: #fff;
}
.f44-cat-card-name {
  font-family: var(--f44-font-h);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 .25rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.f44-cat-card-link {
  font-size: .88rem;
  color: var(--f44-lemon);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.f44-cat-card-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--f44-primary) 0%, var(--f44-accent) 100%);
}

@media (max-width: 900px) {
  .f44-categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .f44-categories-grid { grid-template-columns: 1fr; }
}

/* ---------- LATEST ARTICLES grid (homepage) ---------- */
.f44-latest {
  background: var(--f44-surface);
  padding: 5rem 0;
  border-top: 1px solid var(--f44-line);
}
.f44-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: var(--f44-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.f44-card {
  position: relative;
  background: var(--f44-surface);
  border: 1px solid var(--f44-line);
  border-radius: var(--f44-radius);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.f44-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(255,111,97,0.92) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.f44-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--f44-shadow-md);
}
.f44-card:hover::after { opacity: 1; }
.f44-card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--f44-line);
}
.f44-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.f44-card-cat {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--f44-primary);
  margin-bottom: .5rem;
}
.f44-card-title {
  font-family: var(--f44-font-h);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 .6rem;
}
.f44-card-title a { color: var(--f44-text); text-decoration: none; }
.f44-card-title a:hover { color: var(--f44-primary); }
.f44-card-excerpt {
  color: var(--f44-text-soft);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
}
.f44-card-meta {
  font-size: .82rem;
  color: var(--f44-text-soft);
  margin-top: auto;
}
.f44-card-reveal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  color: #fff;
  transform: translateY(110%);
  transition: transform .4s ease;
  z-index: 2;
  pointer-events: none;
  font-family: var(--f44-font-h);
  font-style: italic;
}
.f44-card:hover .f44-card-reveal { transform: translateY(0); }

@media (max-width: 900px) {
  .f44-articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .f44-articles-grid { grid-template-columns: 1fr; }
}

/* ---------- METRICS LINKS block ---------- */
.f44-metrics-links {
  background: var(--f44-bg);
  padding: 3rem 0;
  border-top: 1px solid var(--f44-line);
  border-bottom: 1px solid var(--f44-line);
}
.f44-metrics-links-inner {
  max-width: var(--f44-container);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.f44-metrics-links h3 {
  font-size: 1.3rem;
  color: var(--f44-text);
  margin-bottom: 1.5rem;
}
.f44-metrics-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.f44-metrics-list a {
  color: var(--f44-text-soft);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--f44-line);
  padding-bottom: 2px;
}
.f44-metrics-list a:hover { color: var(--f44-primary); border-bottom-color: var(--f44-primary); }

/* ---------- FOOTER ---------- */
.f44-footer {
  background: #2c2421;
  color: #f5f0e8;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.f44-footer a { color: #f5f0e8; text-decoration: none; }
.f44-footer a:hover { color: var(--f44-lemon); text-decoration: underline; }
.f44-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--f44-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.f44-footer-col h3, .f44-footer-title {
  font-family: var(--f44-font-h);
  font-size: 1.05rem;
  color: var(--f44-lemon);
  margin: 0 0 1.2rem;
  font-weight: 600;
}
.f44-footer-brand-logo, .f44-footer-logo {
  display: block;
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.f44-footer-brand-pitch {
  color: #d8d0c8;
  font-size: .95rem;
  line-height: 1.65;
  margin: 0 0 1.2rem;
}
.f44-footer-brand-cta {
  display: inline-block;
  color: var(--f44-lemon) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--f44-lemon);
  padding-bottom: 2px;
}
.f44-footer-brand-cta:hover { color: #fff !important; border-bottom-color: #fff; text-decoration: none !important; }
.f44-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.f44-footer-links li {
  margin-bottom: .6rem;
}
.f44-footer-links a {
  color: #d8d0c8;
  font-size: .94rem;
  transition: color .2s;
}
.f44-footer-links a:hover { color: var(--f44-lemon); }
.f44-footer-social {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  gap: .8rem;
}
.f44-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #f5f0e8;
}
.f44-footer-social a:hover { background: var(--f44-primary); color: #fff; }
.f44-footer-bottom {
  max-width: var(--f44-container);
  margin: 3rem auto 0;
  padding: 1.5rem 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  color: #b9b0a8;
  font-size: .88rem;
}

@media (max-width: 900px) {
  .f44-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .f44-footer-grid { grid-template-columns: 1fr; }
}

/* ---------- CATEGORY PAGE : single-bottom ---------- */
.f44-cat-hero {
  position: relative;
  height: 320px;
  max-height: 350px;
  overflow: hidden;
}
.f44-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.f44-cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
  z-index: 2;
}
.f44-cat-hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--f44-primary) 0%, var(--f44-accent) 100%);
  z-index: 1;
}
.f44-cat-hero-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: var(--f44-container);
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.f44-cat-hero-inner h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.f44-cat-content {
  max-width: var(--f44-container);
  margin: 3rem auto 0;
  padding: 0 1.25rem;
}
.f44-cat-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) { .f44-cat-articles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .f44-cat-articles { grid-template-columns: 1fr; } }

.f44-cat-bottom {
  max-width: 920px;
  margin: 4rem auto 5rem;
  padding: 2.5rem 1.5rem;
  background: var(--f44-surface);
  border: 1px solid var(--f44-line);
  border-radius: var(--f44-radius);
}
.f44-cat-bottom h2 {
  font-size: 1.6rem;
  margin-top: 0;
  color: var(--f44-text);
}
.f44-cat-bottom p {
  color: var(--f44-text);
  line-height: 1.75;
}
.f44-cat-bottom a { color: var(--f44-primary); border-bottom: 1px dotted var(--f44-primary); }
.f44-cat-bottom a:hover { color: var(--f44-accent); border-bottom-color: var(--f44-accent); }

/* ---------- SINGLE PAGE / TOOL PAGE ---------- */
.f44-page {
  max-width: 880px;
  margin: 3rem auto 5rem;
  padding: 0 1.25rem;
}
.f44-page h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0 0 1.5rem;
  color: var(--f44-text);
}
.f44-page p {
  color: var(--f44-text);
  line-height: 1.75;
  font-size: 1.04rem;
}
.f44-page a {
  color: var(--f44-primary);
  border-bottom: 1px dotted var(--f44-primary);
}
.f44-page a:hover { color: var(--f44-accent); }

.f44-persona-photo {
  float: right;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0 1.5rem 1.5rem;
  border: 4px solid var(--f44-surface);
  box-shadow: var(--f44-shadow-md);
}
@media (max-width: 600px) {
  .f44-persona-photo { float: none; display: block; margin: 0 auto 1.5rem; width: 180px; height: 180px; }
}

.f44-contact-form {
  margin-top: 2rem;
  background: var(--f44-surface);
  padding: 1.5rem;
  border-radius: var(--f44-radius);
  border: 1px solid var(--f44-line);
}

.f44-tool-faq {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--f44-line);
}
.f44-tool-faq h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.f44-tool-faq details {
  background: var(--f44-surface);
  border: 1px solid var(--f44-line);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  margin-bottom: .8rem;
  cursor: pointer;
}
.f44-tool-faq summary {
  font-weight: 600;
  color: var(--f44-text);
  font-family: var(--f44-font-h);
  font-size: 1.05rem;
}
.f44-tool-faq details[open] { box-shadow: var(--f44-shadow-sm); }
.f44-tool-faq details p {
  margin-top: .8rem;
  color: var(--f44-text-soft);
  line-height: 1.65;
}

/* ---------- CTO POPUP ---------- */
@keyframes f44-slide-in-right {
  0% { transform: translateX(120%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.f44-cto-popup {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 360px;
  background: var(--f44-surface);
  border: 1px solid var(--f44-line);
  border-radius: 14px;
  box-shadow: var(--f44-shadow-lg);
  padding: 1.4rem 1.4rem 1.25rem;
  z-index: 9990;
  display: none;
}
.f44-cto-popup.is-active {
  display: block;
  animation: f44-slide-in-right .55s cubic-bezier(.2,.85,.3,1) both;
}
.f44-cto-popup-close {
  position: absolute;
  top: .5rem;
  right: .6rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--f44-text-soft);
  cursor: pointer;
  line-height: 1;
}
.f44-cto-popup h4 {
  margin: 0 0 .4rem;
  font-family: var(--f44-font-h);
  font-size: 1.1rem;
  color: var(--f44-text);
}
.f44-cto-popup p {
  margin: 0 0 .9rem;
  color: var(--f44-text-soft);
  font-size: .92rem;
  line-height: 1.5;
}
.f44-cto-popup .f44-btn--cta {
  display: block;
  text-align: center;
  width: 100%;
}

/* ---------- UTILITIES ---------- */
.f44-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- RESPONSIVE TYPOGRAPHY ---------- */
@media (max-width: 600px) {
  body.f44-body { font-size: 15.5px; }
  .f44-section { padding: 3.5rem 0; }
  .f44-latest { padding: 3.5rem 0; }
  .f44-editorial { padding: 3.5rem 0; }
  .f44-hero-inner { padding: 4.5rem 1.25rem; }
}
