/* =====================================================================
   Hiringroute Coastal Corporate — Main CSS (child theme di Kadence)
   Versione: 1.0.0
   Identità: navy #1e3a5f + gold #d4a76a + Inter + foto reali
   ===================================================================== */

/* ---------- CCE BLOCK — override allineamento sinistro ---------- */
.cce-header,
.cce-header h2,
.cce-header p,
h2.cce-title,
p.cce-intro,
.cce-block .cce-title,
.cce-block .cce-intro {
  text-align: left !important;
}

/* ---------- TOKENS ---------- */
:root {
  color-scheme: light;
  --hr-paper: #fafafa;
  --hr-panel: #f1f5f9;
  --hr-panel-soft: #f8fafc;
  --hr-surface: #ffffff;
  --hr-line: #e2e8f0;
  --hr-line-light: #f1f5f9;
  --hr-ink: #0f172a;
  --hr-ink-soft: #475569;
  --hr-muted: #94a3b8;

  --hr-navy: #1e3a5f;
  --hr-navy-deep: #152a47;
  --hr-navy-soft: #2d4a73;
  --hr-navy-pale: #dbeafe;

  --hr-gold: #d4a76a;
  --hr-gold-soft: #e8c89a;
  --hr-gold-pale: #fef3c7;

  --hr-pastel-blue: #dbeafe;
  --hr-pastel-mint: #d1fae5;
  --hr-pastel-amber: #fef3c7;
  --hr-pastel-purple: #ede9fe;

  --hr-radius-sm: 6px;
  --hr-radius-md: 10px;
  --hr-radius-lg: 16px;
  --hr-shadow-sm: 0 2px 8px rgba(15,23,42,.06);
  --hr-shadow-md: 0 8px 24px -8px rgba(15,23,42,.1);
  --hr-shadow-lg: 0 16px 48px -16px rgba(15,23,42,.14);

  /* Override Kadence global palette */
  --global-palette1: var(--hr-navy);
  --global-palette2: var(--hr-navy-deep);
  --global-palette3: var(--hr-ink);
  --global-palette4: var(--hr-ink-soft);
  --global-palette5: var(--hr-muted);
  --global-palette6: var(--hr-line);
  --global-palette7: var(--hr-panel);
  --global-palette8: var(--hr-paper);
  --global-palette9: var(--hr-surface);
  --global-palette-highlight: var(--hr-gold);
  --global-palette-highlight-alt: var(--hr-gold-soft);
  --global-palette-btn-bg: var(--hr-navy);
  --global-palette-btn-bg-hover: var(--hr-navy-deep);
  --global-palette-btn: #ffffff;
  --global-palette-btn-hover: #ffffff;
}

/* ---------- BASE ---------- */
html, body {
  background: var(--hr-surface);
  color: var(--hr-ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: var(--hr-navy); text-decoration: none; }
a:hover { color: var(--hr-gold); }

/* ---------- TYPOGRAPHY OVERRIDES ---------- */
h1, h2, h3, h4, h5, h6,
.entry-title, .post-title,
.kadence-title, .wp-block-heading {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--hr-navy);
}

h1, .entry-title { font-size: clamp(36px, 4.6vw, 56px); line-height: 1.05; }
h2 { font-size: clamp(28px, 3.4vw, 38px); line-height: 1.15; }
h3 { font-size: clamp(20px, 2.4vw, 24px); line-height: 1.25; }

/* Disabilita gli `em` italic (in Inter non rendono bene) — diventano highlight gold underline */
.entry-content em,
.hero em, .hr-em-highlight {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(to right, var(--hr-gold) 0%, var(--hr-gold) 100%);
  background-position: 0 92%;
  background-size: 100% 0.18em;
  background-repeat: no-repeat;
  padding-bottom: 1px;
}

/* ---------- HEADER ---------- */
.site-header.hr-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--hr-line);
  backdrop-filter: blur(10px);
}
.hr-header .hr-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.hr-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
}
.hr-logo-text {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--hr-navy);
  text-transform: uppercase;
  line-height: 1;
}
.hr-logo-tagline {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--hr-muted);
  text-transform: uppercase;
}
.hr-nav { display: flex; flex: 1; justify-content: center; }
.hr-nav-list,
.hr-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
}
.hr-nav-list li,
.hr-nav ul li { margin: 0; }
.hr-nav-list li a,
.hr-nav ul li a,
.hr-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--hr-ink-soft);
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
  text-decoration: none;
  display: inline-block;
}
.hr-nav-list li a:hover,
.hr-nav ul li a:hover,
.hr-nav-list li.current-menu-item a,
.hr-nav ul li.current-menu-item a,
.hr-nav a.current-menu-item,
.hr-nav a.active { color: var(--hr-navy); }
.hr-nav-list li.current-menu-item a::after,
.hr-nav ul li.current-menu-item a::after,
.hr-nav a.current-menu-item::after,
.hr-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--hr-gold);
}
.hr-nav .hr-nav-pharma,
.hr-nav-list li a.hr-nav-pharma,
.hr-nav ul li a.hr-nav-pharma { color: var(--hr-gold); font-weight: 600; }
.hr-search-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--hr-ink-soft);
  transition: background .2s ease;
}
.hr-search-icon:hover { background: var(--hr-panel); color: var(--hr-navy); }

/* ---------- BUTTONS ---------- */
.hr-btn,
.wp-block-button__link,
.kadence-btn,
.kt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--hr-radius-sm) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all .2s ease;
  text-decoration: none;
}
.hr-btn-primary,
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: white !important;
  color: var(--hr-navy) !important;
}
.hr-btn-primary:hover,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: var(--hr-navy-deep) !important;
}
.hr-btn-ghost,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 1.5px solid var(--hr-navy) !important;
  color: var(--hr-navy) !important;
}
.hr-btn-ghost:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--hr-navy) !important;
  color: white !important;
  border-color: var(--hr-navy) !important;
}
.hr-btn-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--hr-navy);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hr-btn-text:hover { color: var(--hr-gold); }

/* ---------- ROUND ICON (cards Esplora per tema) ---------- */
.hr-round-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hr-round-icon.blue { background: var(--hr-pastel-blue); color: var(--hr-navy); }
.hr-round-icon.mint { background: var(--hr-pastel-mint); color: #047857; }
.hr-round-icon.amber { background: var(--hr-pastel-amber); color: #b45309; }
.hr-round-icon.purple { background: var(--hr-pastel-purple); color: #6d28d9; }
.hr-round-icon svg { width: 28px; height: 28px; stroke-width: 2; }

/* ---------- HERO HOMEPAGE ---------- */
.hr-hero { padding: 56px 0 72px; }
.hr-hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .hr-hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hr-hero h1 {
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--hr-navy);
  margin: 0 0 22px;
  font-weight: 800;
}
.hr-hero p.hr-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--hr-ink-soft);
  margin: 0 0 32px;
  max-width: 520px;
}
.hr-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hr-hero-photo {
  aspect-ratio: 4 / 3.4;
  border-radius: var(--hr-radius-lg);
  background: linear-gradient(135deg, #e8eef5 0%, #f1f5f9 100%);
  overflow: hidden;
  position: relative;
}
.hr-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- "DA DOVE VUOI PARTIRE" SECTION ---------- */
.hr-start-from {
  padding: 80px 0;
  background: var(--hr-panel-soft);
}
.hr-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.hr-section-head h2 {
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--hr-navy);
  font-weight: 800;
  margin: 0 0 12px;
}
.hr-section-head p {
  font-size: 16px;
  color: var(--hr-ink-soft);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}
.hr-start-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .hr-start-grid { grid-template-columns: 1fr; } }
.hr-start-card {
  background: white;
  border: 1px solid var(--hr-line);
  border-radius: var(--hr-radius-lg);
  padding: 32px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-decoration: none;
  transition: all .25s ease;
}
.hr-start-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hr-shadow-md);
  border-color: var(--hr-navy-pale);
}
.hr-start-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--hr-navy);
  letter-spacing: -0.01em;
}
.hr-start-card p {
  font-size: 14px;
  color: var(--hr-ink-soft);
  margin: 0 0 18px;
  line-height: 1.55;
}

/* ---------- ARTICLE CARDS ---------- */
.hr-articles-row {
  padding: 80px 0;
  background: white;
}
.hr-ar-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) { .hr-ar-grid { grid-template-columns: 1fr; gap: 48px; } }
.hr-ar-col-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hr-line);
}
.hr-ar-col-head h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--hr-navy);
  margin: 0;
  letter-spacing: -0.016em;
}
.hr-ar-col-head .hr-vedi {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--hr-gold);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.hr-ar-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 600px) { .hr-ar-list { grid-template-columns: 1fr; } }
.hr-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.hr-card-cover {
  aspect-ratio: 4 / 3;
  border-radius: var(--hr-radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--hr-navy), var(--hr-navy-soft));
}
.hr-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hr-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hr-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.hr-card p {
  font-size: 13px;
  color: var(--hr-ink-soft);
  margin: 0;
  line-height: 1.5;
}
.hr-card-date {
  font-size: 11.5px;
  color: var(--hr-muted);
  margin-top: auto;
  padding-top: 6px;
}

/* ---------- VENN APPROACH ---------- */
.hr-approach {
  padding: 80px 0;
  background: var(--hr-panel-soft);
}
.hr-ap-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .hr-ap-grid { grid-template-columns: 1fr; gap: 40px; } }
.hr-venn { display: flex; justify-content: center; }
.hr-venn svg { width: 100%; max-width: 420px; height: auto; }

/* ---------- THEMES + AUTHOR ---------- */
.hr-themes-author { padding: 80px 0; background: white; }
.hr-ta-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
@media (max-width: 1000px) { .hr-ta-grid { grid-template-columns: 1fr; gap: 48px; } }
.hr-themes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 600px) { .hr-themes-grid { grid-template-columns: 1fr; } }
.hr-theme-card { text-decoration: none; }
.hr-theme-card .hr-round-icon { margin-bottom: 14px; }
.hr-theme-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--hr-navy);
  margin: 0 0 6px;
}
.hr-theme-card p {
  font-size: 13.5px;
  color: var(--hr-ink-soft);
  margin: 0 0 12px;
  line-height: 1.55;
}
.hr-author-col {
  background: var(--hr-panel-soft);
  border: 1px solid var(--hr-line);
  border-radius: var(--hr-radius-lg);
  padding: 32px;
}
.hr-author-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  align-items: start;
}
.hr-author-portrait {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  box-shadow: var(--hr-shadow-sm);
  background: linear-gradient(135deg, #e8eef5, #dbeafe);
}
.hr-author-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- PHARMA BAND ---------- */
.hr-pharma-band {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--hr-navy) 0%, var(--hr-navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.hr-pharma-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,167,106,.18), transparent 70%);
}
.hr-pb-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .hr-pb-grid { grid-template-columns: 1fr; gap: 32px; } }
.hr-pharma-band h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 14px;
  font-weight: 800;
}
.hr-pharma-band p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  margin: 0 0 24px;
  max-width: 540px;
}
.hr-pharma-band .hr-eyebrow { color: var(--hr-gold); }
.hr-pb-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hr-pb-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--hr-radius-md);
  padding: 22px;
}
.hr-pb-stat-num {
  font-size: 32px;
  color: var(--hr-gold);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.hr-pb-stat-lab {
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}

/* ---------- NEWSLETTER STRIP ---------- */
.hr-newsletter-strip { padding: 64px 0; background: white; }
.hr-newsletter-box {
  max-width: 1180px;
  margin: 0 auto 0;
  padding: 36px 48px;
  background: var(--hr-navy);
  border-radius: var(--hr-radius-lg);
  color: white;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
@media (max-width: 900px) {
  .hr-newsletter-box { grid-template-columns: 1fr; padding: 32px 28px; gap: 22px; }
}
.hr-newsletter-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hr-newsletter-box h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: white;
  font-weight: 700;
}
.hr-newsletter-box p {
  font-size: 15px;
  line-height: 1.5;
  opacity: .82;
  margin: 0;
}
.hr-newsletter-cta {
  background: white;
  color: var(--hr-navy);
  padding: 14px 26px;
  border-radius: var(--hr-radius-sm);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all .2s ease;
}
.hr-newsletter-cta:hover { background: var(--hr-gold); color: white; }

/* ---------- FOOTER ---------- */
.site-footer.hr-footer,
footer.hr-footer {
  background: var(--hr-navy);
  color: rgba(255,255,255,.78);
  padding: 60px 0 28px;
}
.hr-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.hr-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
}
@media (max-width: 1000px) { .hr-footer-grid { grid-template-columns: 1fr 1fr; } }
.hr-footer h4 {
  font-size: 12px;
  color: white;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.hr-footer ul { list-style: none; padding: 0; margin: 0; }
.hr-footer li { margin-bottom: 10px; font-size: 14px; }
.hr-footer li a { color: rgba(255,255,255,.78); transition: color .2s ease; }
.hr-footer li a:hover { color: white; }
.hr-footer-brand {
  font-size: 22px;
  color: white;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hr-footer-tag {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  opacity: .82;
}
.hr-footer-newsletter {
  display: flex;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--hr-radius-sm);
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.hr-footer-newsletter input {
  flex: 1;
  padding: 11px 14px;
  background: transparent;
  border: none;
  color: white;
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
}
.hr-footer-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.hr-footer-newsletter button {
  width: 40px;
  background: var(--hr-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hr-footer-newsletter button:hover { background: white; color: var(--hr-navy); }
.hr-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.hr-footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all .2s ease;
}
.hr-footer-social a:hover { background: white; color: var(--hr-navy); border-color: white; }
.hr-footer-bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- ARCHIVE / SINGLE POST OVERRIDES ---------- */

/* Archive grid */
.archive .post-thumbnail img,
.search .post-thumbnail img,
.blog .post-thumbnail img {
  border-radius: var(--hr-radius-md);
}
.entry-card,
.kt-blog-grid .entry {
  border: 1px solid var(--hr-line);
  border-radius: var(--hr-radius-lg);
  overflow: hidden;
  transition: all .25s ease;
  background: white;
}
.entry-card:hover,
.kt-blog-grid .entry:hover {
  box-shadow: var(--hr-shadow-md);
  border-color: var(--hr-navy-pale);
  transform: translateY(-3px);
}
.entry-card .entry-title,
.kt-blog-grid .entry .entry-title {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Single post hero */
.single .entry-header {
  text-align: left;
  padding: 30px 0 28px;
}
.single .entry-title {
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--hr-navy);
  font-weight: 800;
  margin-bottom: 18px;
}
.single .post-thumbnail {
  margin: 0 auto 40px;
  border-radius: var(--hr-radius-lg);
  overflow: hidden;
  max-width: 1180px;
}
.single .post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.single .entry-content {
  font-size: 18px;
  line-height: 1.7;
  color: var(--hr-ink);
  max-width: 720px;
  margin: 0 auto;
}
.single .entry-content p:first-of-type:not(:has(img))::first-letter {
  font-size: 4.4em;
  line-height: 0.9;
  float: left;
  padding: 4px 12px 0 0;
  color: var(--hr-gold);
  font-weight: 700;
}
.single .entry-content h2 {
  font-size: 32px;
  line-height: 1.1;
  margin: 50px 0 18px;
  color: var(--hr-navy);
}
.single .entry-content h3 {
  font-size: 22px;
  margin: 32px 0 14px;
}
.single .entry-content blockquote {
  font-size: 22px;
  line-height: 1.4;
  color: var(--hr-navy);
  border-left: 4px solid var(--hr-gold);
  padding: 12px 0 12px 26px;
  margin: 32px 0;
  font-weight: 500;
}
.single .entry-content a {
  color: var(--hr-navy);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.single .entry-content a:hover { color: var(--hr-gold); }
.single .entry-content strong { color: var(--hr-navy); font-weight: 700; }

/* Categoria badge */
.entry-categories a,
.cat-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--hr-gold) !important;
  text-decoration: none;
}

/* ---------- UTILITIES ---------- */
.hr-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--hr-gold);
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-block;
}
.hr-container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.hr-section { padding: 80px 0; }

/* Hide Kadence default scroll-to-top to avoid clash */
.kt-scroll-up-wrap { display: none !important; }

/* Newsletter Plugin Button Styling */
.tnp-subscription-form button[type="submit"],
.tnp-widget button[type="submit"],
.newsletter-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--hr-radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  background: white !important;
  color: var(--hr-navy) !important;
  transition: all .2s ease;
  text-decoration: none;
}

.tnp-subscription-form button[type="submit"]:hover,
.tnp-widget button[type="submit"]:hover,
.newsletter-form button[type="submit"]:hover {
  background: var(--hr-navy-deep) !important;
}

/* Footer newsletter form specific styling */
.hr-footer-newsletter button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: white !important;
  color: var(--hr-navy) !important;
}

.hr-footer-newsletter button[type="submit"]:hover {
  background: var(--hr-navy-deep) !important;
}

/* ========== Newsletter Plugin Button Styling ========== */
/* Restyle the input.tnp-submit button to match theme buttons */
input.tnp-submit {
  padding: 14px 26px !important;
  border-radius: var(--hr-radius-sm) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border: none !important;
  font-family: 'Inter', sans-serif !important;
  background: white !important;
  color: var(--hr-navy) !important;
  transition: all .2s ease !important;
  box-shadow: none !important;
  height: auto !important;
  line-height: normal !important;
}

input.tnp-submit:hover,
input.tnp-submit:focus,
input.tnp-submit:active {
  background: var(--hr-gold) !important;
  color: white !important;
}

/* Footer newsletter form - make button circular to match design */
.hr-footer-newsletter .tnp-field-button input.tnp-submit {
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: unset !important;
  min-height: unset !important;
}

/* Ensure footer newsletter form layout is inline */
.hr-footer-newsletter .tnp-field {
  margin-bottom: 0 !important;
}

.hr-footer-newsletter .tnp-field-button {
  display: inline-flex !important;
  margin-left: 10px !important;
}

/* ========== ARCHIVE GRID ========== */
.archive-header {
  margin-bottom: 40px;
  padding: 40px 0;
}

.archive-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.archive-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--hr-navy);
  margin-bottom: 12px;
}

.archive-description {
  font-size: 16px;
  color: var(--hr-ink-soft);
  line-height: 1.6;
}

/* Grid Layout per archive */
.hr-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .hr-archive-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hr-archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Pagination */
.hr-pagination {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
  text-align: center;
}

.hr-pagination .nav-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hr-pagination .page-numbers {
  padding: 8px 12px;
  border-radius: var(--hr-radius-sm);
  color: var(--hr-navy);
  text-decoration: none;
  transition: all .2s ease;
}

.hr-pagination .page-numbers:hover,
.hr-pagination .page-numbers.current {
  background: var(--hr-navy);
  color: white;
}
