/*
Theme Name: Tatami Fuerte Blocks
Theme URI: https://tatamifuerte.com/
Author: Tatami Fuerte
Description: Tema nativo de bloques, ligero y sin constructores para Tatami Fuerte.
Version: 1.2.0
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tatami-fuerte
Tags: blog, full-site-editing, block-patterns, custom-colors, custom-logo, featured-images
*/

:root {
  --tf-navy: #101f35;
  --tf-navy-2: #172d4a;
  --tf-red: #c11f26;
  --tf-red-dark: #95161b;
  --tf-paper: #f7f8fa;
  --tf-white: #ffffff;
  --tf-ink: #172033;
  --tf-muted: #5e6878;
  --tf-line: #dce2e9;
  --tf-radius-sm: 12px;
  --tf-radius: 22px;
  --tf-radius-lg: 34px;
  --tf-shadow: 0 18px 55px rgba(16, 31, 53, 0.12);
  --tf-gutter: clamp(20px, 4vw, 32px);
}

html { scroll-behavior: smooth; }

html,
body { overflow-x: clip; }

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

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-underline-offset: 0.18em; }

img,
svg { max-width: 100%; }

/*
 * Todos los bloques anchos comparten el mismo margen lateral. De este modo
 * ninguna sección queda pegada al borde en tablet o móvil.
 */
.tf-header-inner,
.tf-hero-grid,
.tf-stats,
.tf-section > .alignwide,
.tf-content-shell > .alignwide,
.tf-site-footer > .alignwide {
  width: calc(100% - (var(--tf-gutter) + var(--tf-gutter)));
  max-width: 1180px;
  margin-right: auto !important;
  margin-left: auto !important;
}

.tf-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 226, 233, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

body.admin-bar .tf-site-header { top: 32px; }

.tf-header-inner {
  min-height: 78px;
  gap: 28px;
}

.tf-brand { gap: 11px; flex-shrink: 0; }

.tf-brand .wp-block-site-logo img {
  width: auto;
  max-width: 160px;
  max-height: 52px;
  object-fit: contain;
}

.tf-brand .wp-block-site-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tf-brand .wp-block-site-title a { text-decoration: none; }

.tf-main-nav { margin-left: auto; }

.tf-main-nav .wp-block-navigation__container { gap: clamp(10px, 1.2vw, 18px); }

.tf-main-nav .wp-block-navigation-item__content {
  color: var(--tf-navy);
  font-size: 0.9rem;
  font-weight: 680;
  text-decoration: none;
}

.tf-main-nav .current-menu-item > .wp-block-navigation-item__content,
.tf-main-nav .wp-block-navigation-item__content:hover { color: var(--tf-red); }

.tf-header-cta { flex-shrink: 0; }

.tf-nav-mobile-cta { display: none; }

.wp-block-button__link {
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(193, 31, 38, 0.2);
}

.is-style-outline > .wp-block-button__link:hover {
  color: var(--tf-white);
  background: var(--tf-navy);
  box-shadow: none;
}

.tf-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(58px, 8vw, 112px);
  padding-bottom: clamp(58px, 8vw, 104px);
  background:
    radial-gradient(circle at 92% 8%, rgba(193, 31, 38, 0.15), transparent 34%),
    linear-gradient(135deg, #f9fafb 0%, #eef2f6 100%);
}

.tf-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  z-index: -1;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(16, 31, 53, 0.045);
  border-radius: 30%;
  transform: rotate(28deg);
}

.tf-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(300px, 42fr);
  gap: clamp(44px, 7vw, 96px);
}

.tf-hero-grid > .wp-block-column,
.tf-author-grid > .wp-block-column { flex-basis: auto !important; }

.tf-hero-copy { max-width: 720px; }

.tf-eyebrow,
.tf-kicker {
  margin-bottom: 16px;
  color: var(--tf-red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tf-hero h1 {
  max-width: 820px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.tf-hero-lead {
  max-width: 660px;
  color: var(--tf-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.65;
}

.tf-hero-actions { margin-top: 30px; }

.tf-trust-line {
  margin-top: 28px;
  color: var(--tf-muted);
  font-size: 0.88rem;
}

.tf-hero-art {
  position: relative;
  min-height: 450px;
  padding: clamp(28px, 4vw, 50px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--tf-radius-lg);
  color: var(--tf-white);
  background: linear-gradient(145deg, var(--tf-navy), #071221);
  box-shadow: var(--tf-shadow);
}

.tf-hero-art::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -105px;
  width: 290px;
  height: 290px;
  border: 48px solid rgba(193, 31, 38, 0.6);
  transform: rotate(45deg);
}

.tf-monogram {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--tf-white);
  font-size: clamp(7rem, 15vw, 12rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.14em;
}

.tf-monogram strong { color: var(--tf-red); }

.tf-art-label {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin-top: 24px;
  color: #dfe7f1;
  font-size: 1rem;
  font-weight: 650;
}

.tf-art-tags {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 3;
  gap: 8px;
}

.tf-art-tag,
.tf-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.03em;
}

.tf-art-tag {
  color: var(--tf-white);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.tf-stats {
  margin-top: -28px;
  position: relative;
  z-index: 4;
}

.tf-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  background: var(--tf-white);
  box-shadow: 0 16px 40px rgba(16, 31, 53, 0.08);
}

.tf-stat {
  min-height: 110px;
  padding: 25px;
  border-right: 1px solid var(--tf-line);
}

.tf-stat:last-child { border-right: 0; }
.tf-stat strong { display: block; color: var(--tf-navy); font-size: 1.35rem; }
.tf-stat span { color: var(--tf-muted); font-size: 0.86rem; }

.tf-section { padding-top: clamp(72px, 8vw, 118px); padding-bottom: clamp(72px, 8vw, 118px); }
.tf-section--compact { padding-top: clamp(50px, 6vw, 82px); padding-bottom: clamp(50px, 6vw, 82px); }
.tf-section--soft { background: #eef2f6; }
.tf-section--dark { color: var(--tf-white); background: var(--tf-navy); }

.tf-section > :not(.alignwide):not(.alignfull) {
  width: calc(100% - (var(--tf-gutter) + var(--tf-gutter)));
  max-width: 760px;
  margin-right: auto !important;
  margin-left: auto !important;
}

.tf-section-title {
  max-width: 760px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.tf-section-lead { max-width: 720px; color: var(--tf-muted); font-size: 1.08rem; }
.tf-section--dark .tf-section-lead { color: #c8d3e1; }

.tf-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.tf-card {
  height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  background: var(--tf-white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tf-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 31, 38, 0.32);
  box-shadow: var(--tf-shadow);
}

.tf-card-index { color: var(--tf-red); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.12em; }
.tf-card h3 { margin-top: 26px; margin-bottom: 12px; font-size: 1.35rem; }
.tf-card p { color: var(--tf-muted); }
.tf-card a { font-weight: 760; text-decoration: none; }

.tf-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.tf-route {
  position: relative;
  min-height: 280px;
  padding: 32px;
  overflow: hidden;
  border-radius: var(--tf-radius);
  color: var(--tf-white);
  background: var(--tf-navy);
}

.tf-route-grid > .wp-block-column:nth-child(2) .tf-route,
.tf-route-grid > .tf-route:nth-child(2) { background: var(--tf-red); }
.tf-route-grid > .wp-block-column:nth-child(3) .tf-route,
.tf-route-grid > .tf-route:nth-child(3) { color: var(--tf-navy); background: #dfe6ee; }
.tf-route h3 { margin-top: 54px; font-size: 1.65rem; }
.tf-route p { opacity: 0.84; }
.tf-route a { color: inherit; font-weight: 800; text-decoration: none; }

.tf-post-grid { margin-top: 40px; }

.tf-post-grid .wp-block-post-template { gap: 24px; }

.tf-post-card {
  height: 100%;
  padding: 14px 14px 26px;
  overflow: hidden;
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  background: var(--tf-white);
}

.tf-post-card .wp-block-post-featured-image img { border-radius: calc(var(--tf-radius) - 8px); }
.tf-post-card .wp-block-post-date { margin: 20px 10px 0; color: var(--tf-red); font-size: 0.76rem; font-weight: 760; text-transform: uppercase; }
.tf-post-card .wp-block-post-title,
.tf-post-card .wp-block-post-excerpt { margin-left: 10px; margin-right: 10px; }
.tf-post-card .wp-block-post-title { margin-top: 12px; font-size: 1.3rem; line-height: 1.2; }
.tf-post-card .wp-block-post-title a { text-decoration: none; }
.tf-post-card .wp-block-post-excerpt { color: var(--tf-muted); }

.tf-author-grid {
  display: grid;
  grid-template-columns: minmax(280px, 45fr) minmax(0, 55fr);
  gap: clamp(34px, 7vw, 90px);
}

.tf-author-visual {
  min-height: 430px;
  padding: 40px;
  border-radius: var(--tf-radius-lg);
  color: var(--tf-white);
  background:
    linear-gradient(155deg, rgba(16, 31, 53, 0.93), rgba(16, 31, 53, 0.99)),
    linear-gradient(45deg, var(--tf-red), var(--tf-navy));
}

.tf-author-initials { margin: 0; font-size: clamp(6rem, 12vw, 10rem); font-weight: 950; line-height: 1; letter-spacing: -0.09em; }
.tf-author-caption { max-width: 300px; margin-top: auto; color: #dbe5f0; }
.tf-badge { color: var(--tf-navy); background: #e6ebf1; }
.tf-badges { gap: 8px; margin: 22px 0; }

.tf-tool {
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  border-radius: var(--tf-radius-lg);
  background:
    radial-gradient(circle at 85% 10%, rgba(193, 31, 38, 0.5), transparent 25%),
    var(--tf-navy);
}

.tf-tool h2 { max-width: 720px; color: var(--tf-white); }
.tf-tool p { max-width: 680px; color: #ccd7e4; }

.tf-content-shell {
  padding: clamp(50px, 7vw, 88px) var(--tf-gutter) clamp(70px, 8vw, 112px);
}

.tf-content-shell > .alignwide {
  width: 100%;
}
.tf-page-header { max-width: 840px; margin-bottom: 42px; }
.tf-page-header h1 { margin-bottom: 18px; font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: 1.02; letter-spacing: -0.05em; }

.tf-prose {
  font-size: 1.05rem;
  line-height: 1.75;
}

.tf-prose > * { max-width: 760px; margin-left: auto; margin-right: auto; }
.tf-prose > .alignwide { max-width: 1180px; }
.tf-prose > .alignfull { max-width: none; }
.tf-prose h2 { margin-top: 2.4em; font-size: clamp(1.75rem, 3vw, 2.45rem); }
.tf-prose h3 { margin-top: 2em; font-size: 1.4rem; }
.tf-prose img { border-radius: var(--tf-radius); }

.tf-article-header { max-width: 940px; margin-left: auto; margin-right: auto; text-align: center; }
.tf-article-header .wp-block-post-terms { color: var(--tf-red); font-weight: 760; }
.tf-article-header .wp-block-post-title { font-size: clamp(2.35rem, 5vw, 4.8rem); line-height: 1.04; letter-spacing: -0.052em; }
.tf-article-header .wp-block-post-date { color: var(--tf-muted); }
.tf-featured-image { margin-top: 38px; }
.tf-featured-image img { max-height: 650px; border-radius: var(--tf-radius-lg); object-fit: cover; }

.tf-disclaimer {
  max-width: 760px;
  margin: 52px auto 0;
  padding: 24px 26px;
  border-left: 4px solid var(--tf-red);
  border-radius: 0 var(--tf-radius-sm) var(--tf-radius-sm) 0;
  color: var(--tf-muted);
  background: #eef2f6;
  font-size: 0.9rem;
}

.tf-site-footer { padding-top: 64px; padding-bottom: 28px; color: #dbe4ef; background: #091524; }
.tf-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(130px, 1fr));
  gap: clamp(32px, 5vw, 72px);
}
.tf-footer-brand { max-width: 360px; }
.tf-footer-brand .wp-block-site-title { margin-top: 0; }
.tf-site-footer h2, .tf-site-footer h3 { color: var(--tf-white); }
.tf-site-footer p { color: #b7c4d4; }
.tf-site-footer a { color: #e8eef5; }
.tf-site-footer a:hover { color: #ff6970; }
.tf-footer-links { gap: 7px; }
.tf-footer-links p { margin: 0; }
.tf-footer-links a { display: inline-block; padding: 3px 0; text-decoration: none; }
.tf-footer-bottom { margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.13); }
.tf-footer-bottom p { margin: 0; font-size: 0.82rem; }

.tf-empty-state { padding: 36px; border: 1px dashed #bfc9d5; border-radius: var(--tf-radius); background: #f4f6f8; }

@media (min-width: 1241px) {
  .tf-main-nav .tf-nav-home,
  .tf-main-nav .tf-nav-tools,
  .tf-main-nav .tf-nav-contact { display: none; }
}

@media (max-width: 1240px) {
  .tf-header-cta { display: none; }
  .tf-main-nav .wp-block-navigation-item__content { font-size: 0.84rem; }
}

@media (max-width: 1240px) {
  .tf-header-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 72px;
  }

  .tf-main-nav {
    position: relative;
    z-index: 1001;
    display: flex !important;
    width: 48px;
    margin-left: auto !important;
    align-items: center;
    justify-content: flex-end;
  }

  .tf-main-nav .wp-block-navigation__responsive-container:not(.is-menu-open) { display: none !important; }
  .tf-main-nav .wp-block-navigation__responsive-container-open {
    position: relative !important;
    z-index: 1002;
    display: inline-flex !important;
    visibility: visible !important;
    width: 46px;
    height: 46px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tf-line);
    border-radius: 50%;
    opacity: 1 !important;
    color: var(--tf-navy) !important;
    background: var(--tf-white) !important;
    box-shadow: 0 7px 22px rgba(16, 31, 53, 0.1);
  }

  .tf-main-nav .wp-block-navigation__responsive-container-open svg,
  .tf-main-nav .wp-block-navigation__responsive-container-open path {
    display: block !important;
    visibility: visible !important;
    fill: currentColor !important;
    opacity: 1 !important;
  }

  .tf-main-nav .wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    z-index: 1000 !important;
    inset: 0 !important;
    display: flex !important;
    visibility: visible !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding: 24px var(--tf-gutter) 36px;
    overflow-y: auto;
    opacity: 1 !important;
    color: var(--tf-white);
    background:
      radial-gradient(circle at 100% 0, rgba(193, 31, 38, 0.28), transparent 35%),
      #091524 !important;
  }

  .tf-main-nav .wp-block-navigation__responsive-dialog,
  .tf-main-nav .wp-block-navigation__responsive-close,
  .tf-main-nav .wp-block-navigation__responsive-container-content { width: 100%; }

  .tf-main-nav .wp-block-navigation__responsive-container-close {
    position: absolute;
    z-index: 1003;
    top: 0;
    right: 0;
    display: grid !important;
    visibility: visible !important;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    opacity: 1 !important;
    color: var(--tf-white) !important;
    background: rgba(255,255,255,0.06);
  }

  .tf-main-nav .wp-block-navigation__responsive-container-close svg,
  .tf-main-nav .wp-block-navigation__responsive-container-close path {
    display: block !important;
    fill: currentColor !important;
  }

  .tf-main-nav .wp-block-navigation__responsive-container-content {
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 72px;
  }

  .tf-main-nav .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .tf-main-nav .wp-block-navigation__responsive-container-content .wp-block-navigation-item {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .tf-main-nav .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content {
    display: flex;
    width: 100%;
    padding: 14px 0;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--tf-white) !important;
    font-size: clamp(1.08rem, 4vw, 1.32rem);
    font-weight: 720;
  }

  .tf-main-nav .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content:hover { color: #ff777d; }

  .tf-main-nav .wp-block-navigation__responsive-container-content .tf-nav-mobile-cta {
    display: flex;
    margin-top: 22px;
    border-bottom: 0;
  }

  .tf-main-nav .wp-block-navigation__responsive-container-content .tf-nav-mobile-cta .wp-block-navigation-item__content {
    justify-content: center;
    padding: 13px 20px;
    border-radius: 999px;
    color: var(--tf-white);
    background: var(--tf-red);
  }

  .tf-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tf-post-grid .wp-block-post-template { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .tf-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
  }

  .tf-footer-grid > .wp-block-column:first-child { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  body.admin-bar .tf-site-header { top: 46px; }
  .tf-header-inner { min-height: 68px; }
  .tf-brand .wp-block-site-title { font-size: 0.93rem; }
  .tf-hero-grid,
  .tf-author-grid { grid-template-columns: minmax(0, 1fr); }
  .tf-hero-art { min-height: 360px; }
  .tf-stats { margin-top: 18px; }
  .tf-stat-grid { grid-template-columns: 1fr; }
  .tf-stat { border-right: 0; border-bottom: 1px solid var(--tf-line); }
  .tf-stat:last-child { border-bottom: 0; }
  .tf-route-grid { grid-template-columns: 1fr; }
  .tf-route { min-height: 0; }
  .tf-author-visual { min-height: 320px; }
}

@media (max-width: 600px) {
  :root { --tf-gutter: 20px; }

  .tf-site-header { position: sticky; }
  body.admin-bar .tf-site-header { top: 46px; }
  .tf-header-inner { min-height: 64px; gap: 14px; }
  .tf-brand { gap: 8px; }
  .tf-brand .wp-block-site-logo img { max-width: 132px; max-height: 42px; }
  .tf-brand .wp-block-site-title { font-size: 0.82rem; }

  .tf-main-nav .wp-block-navigation__responsive-container-open {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tf-line);
    border-radius: 50%;
    color: var(--tf-navy);
    background: var(--tf-white);
  }

  .tf-hero { padding-top: 48px; padding-bottom: 52px; }
  .tf-hero-grid { gap: 34px; }
  .tf-hero h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); line-height: 1; }
  .tf-hero-lead { font-size: 1rem; line-height: 1.6; }
  .tf-hero-art { min-height: 280px; padding: 28px; border-radius: 26px; }
  .tf-monogram { font-size: clamp(6.3rem, 34vw, 9rem); }
  .tf-art-tags { left: 24px; right: auto; }
  .tf-hero-actions .wp-block-button { width: 100%; }
  .tf-hero-actions .wp-block-button__link { width: 100%; text-align: center; }

  .tf-section { padding-top: 64px; padding-bottom: 64px; }
  .tf-section--compact { padding-top: 48px; padding-bottom: 48px; }
  .tf-section-title { font-size: clamp(2rem, 10vw, 2.7rem); overflow-wrap: anywhere; }
  .tf-section-lead { font-size: 1rem; }

  .tf-card-grid,
  .tf-post-grid .wp-block-post-template { grid-template-columns: 1fr; }
  .tf-card, .tf-route { padding: 25px; }
  .tf-card { border-radius: 18px; }
  .tf-card h3 { margin-top: 18px; }

  .tf-author-visual { min-height: 270px; padding: 28px; border-radius: 26px; }
  .tf-tool { padding: 30px 24px; border-radius: 24px; }

  .tf-site-footer { padding-top: 50px; }
  .tf-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 24px; }
  .tf-footer-grid > .wp-block-column:first-child,
  .tf-footer-grid > .wp-block-column:last-child { grid-column: 1 / -1; }
  .tf-footer-grid h3 { margin-bottom: 12px; }
  .tf-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 42px;
  }
}

@media (max-width: 410px) {
  .tf-brand .wp-block-site-title { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
