/*
Theme Name: InfiniTech
Theme URI: https://www.trustinfinitech.com
Author: InfiniTech Consulting
Author URI: https://www.trustinfinitech.com
Description: Custom theme for InfiniTech Consulting — Managed IT Services
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: infinitech
*/

/* ============================================================
   TOKENS & RESET
   ============================================================ */
:root {
  --navy:        #1a2e4a;
  --navy-light:  #243d5e;
  --navy-dark:   #0f1e30;
  --crimson:     #990005;
  --crimson-h:   #730005;
  --gold:        #e8a020;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --gray-light:  #e8ecf1;
  --gray-mid:    #8a9ab0;
  --gray-text:   #4a5568;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Source Sans 3', sans-serif;
  --max-w:       1100px;
  --radius:      4px;
  --shadow:      0 2px 20px rgba(26,46,74,.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--crimson); text-decoration: none; }
a:hover { color: var(--crimson-h); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.3px;
}
h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; }
h2 { font-size: clamp(22px, 3vw, 34px); }
h3 { font-size: clamp(17px, 2vw, 22px); }
h4 { font-size: 17px; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.it-wrap  { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.it-section { padding: 72px 0; }
.it-section--dark { background: var(--navy); }
.it-section--tint { background: var(--off-white); }

.it-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 10px;
}
.it-section--dark .it-label { color: var(--gold); }

.it-section-title {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--navy);
  margin-bottom: 14px;
}
.it-section--dark .it-section-title { color: var(--white); }

.it-section-lead {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 680px;
  margin-bottom: 40px;
}
.it-section--dark .it-section-lead { color: rgba(255,255,255,.75); }

/* Grid helpers */
.it-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.it-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.it-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

@media (max-width: 900px) {
  .it-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .it-grid-2, .it-grid-3, .it-grid-4 { grid-template-columns: 1fr; }
  .it-wrap { padding: 0 20px; }
  .it-section { padding: 52px 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .4px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--crimson); color: var(--white); }
.btn-primary:hover { background: var(--crimson-h); color: var(--white); }
.btn-outline   { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-white     { background: var(--white); color: var(--crimson); }
.btn-white:hover { background: var(--off-white); color: var(--crimson); }

/* ============================================================
   CARDS
   ============================================================ */
.it-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.it-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.it-card--accent {
  border-top: 3px solid var(--crimson);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-topbar {
  background: var(--navy-dark);
  padding: 7px 0;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.site-topbar a { color: rgba(255,255,255,.8); }
.site-topbar a:hover { color: var(--white); }
.site-topbar .it-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.topbar-item { display: flex; align-items: center; gap: 6px; }

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.site-header .it-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 68px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  max-height: 68px;
  overflow: hidden;
}
.site-logo a,
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
  height: 45px;
  overflow: hidden;
}
.site-logo img,
.site-logo .custom-logo-link img,
.custom-logo {
  height: 45px !important;
  width: auto !important;
  max-height: 45px !important;
  object-fit: contain;
}
.site-logo .it-logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}
.site-logo .it-logo-text span { color: var(--gold); }

/* Primary nav */
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.site-nav > ul > li { position: relative; }
.site-nav > ul > li > a {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 22px 13px;
  transition: color .15s;
  white-space: nowrap;
}
.site-nav > ul > li > a:hover,
.site-nav > ul > li.current-menu-item > a,
.site-nav > ul > li.current-menu-ancestor > a { color: var(--gold); }

/* Dropdown */
.site-nav ul .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-light);
  min-width: 210px;
  border-top: 2px solid var(--crimson);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  z-index: 100;
  flex-direction: column;
}
.site-nav ul li:hover > .sub-menu,
.site-nav ul li:focus-within > .sub-menu { display: flex; }
.site-nav .sub-menu li a {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  padding: 11px 18px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.site-nav .sub-menu li a:hover { background: rgba(255,255,255,.08); color: var(--gold); }

/* Support Portal button in nav */
.site-nav ul li.menu-support-portal > a,
.site-nav > ul > li:last-child > a {
  background: var(--crimson);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 9px 16px !important;
  margin-left: 8px;
}
.site-nav ul li.menu-support-portal > a:hover,
.site-nav > ul > li:last-child > a:hover { background: var(--crimson-h) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 12px 0 20px;
    border-top: 2px solid var(--crimson);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav > ul > li > a { padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .site-nav .sub-menu { position: static; display: none; background: rgba(0,0,0,.2); box-shadow: none; border-top: none; }
  .site-nav .sub-menu.open { display: flex; }
  .site-nav .sub-menu li a { padding: 10px 36px; }
  .site-nav ul li.menu-support-portal > a,
  .site-nav ul li:last-child > a { margin: 12px 24px 0; display: block; text-align: center; border-radius: var(--radius); }
  .site-topbar { display: none; }
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a5c 100%);
  padding: 54px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
}
.page-banner h1 { color: var(--white); font-size: clamp(24px, 3.5vw, 38px); margin-bottom: 8px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   PAGE CONTENT (standard WP pages)
   ============================================================ */
.page-content-wrap {
  padding: 60px 0 72px;
}
.page-content-area {
  max-width: 860px;
}

/* Style WP content output */
.entry-content h2 { font-size: clamp(20px, 2.5vw, 27px); margin: 36px 0 12px; color: var(--navy); }
.entry-content h3 { font-size: 20px; margin: 28px 0 10px; color: var(--navy); }
.entry-content h4 { font-size: 17px; margin: 22px 0 8px; }
.entry-content p  { font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin: 0 0 18px 24px; }
.entry-content li { margin-bottom: 6px; line-height: 1.65; }
.entry-content strong { color: var(--navy); font-weight: 600; }
.entry-content img { border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow); }
.entry-content a { color: var(--crimson); border-bottom: 1px solid rgba(184,28,46,.25); }
.entry-content a:hover { border-bottom-color: var(--crimson); }
.entry-content blockquote {
  border-left: 3px solid var(--crimson);
  padding: 14px 20px;
  background: var(--off-white);
  margin: 24px 0;
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
}
.entry-content blockquote cite { font-style: normal; font-size: 14px; color: var(--gray-mid); }

/* Tables in WP content */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 24px 0;
}
.entry-content table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 13px;
}
.entry-content table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--gray-light);
}
.entry-content table tr:nth-child(even) td { background: var(--off-white); }

/* ============================================================
   HOMEPAGE: HERO
   ============================================================ */
.home-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1e3a5c 100%);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,28,46,.15) 0%, transparent 70%);
}
.home-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
}
.home-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.home-hero-badge {
  display: inline-block;
  background: rgba(153,0,5,.85);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px;
  margin-bottom: 22px;
}
.home-hero h1 {
  color: var(--white);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.home-hero h1 em { color: var(--gold); font-style: normal; }
.home-hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin-bottom: 38px;
}
.home-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ============================================================
   HOMEPAGE: STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--crimson);
  padding: 22px 0;
}
.stats-bar .it-wrap {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; color: var(--white); }
.stat-num {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 800;
  display: block; line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

/* ============================================================
   HOMEPAGE: SERVICES
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  padding: 32px 26px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--crimson); }
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.service-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.service-card p { font-size: 14.5px; color: var(--gray-text); line-height: 1.65; margin-bottom: 18px; }
.service-card a.card-link {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  color: var(--crimson);
  border-bottom: 1px solid rgba(184,28,46,.3);
  padding-bottom: 1px;
}
.service-card a.card-link:hover { border-bottom-color: var(--crimson); }

/* ============================================================
   HOMEPAGE: ABOUT / WHY
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-text h2 { margin-bottom: 16px; }
.why-text p  { font-size: 16px; margin-bottom: 20px; }
.why-points  { display: flex; flex-direction: column; gap: 16px; }
.why-point {
  display: flex; align-items: flex-start; gap: 14px;
}
.why-point-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--crimson);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-point-icon svg { width: 18px; height: 18px; fill: white; }
.why-point-text h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.why-point-text p  { font-size: 13.5px; color: var(--gray-text); margin: 0; line-height: 1.55; }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOMEPAGE: INDUSTRIES
   ============================================================ */
.industry-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 40px;
  padding: 12px 20px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, color .15s;
}
.industry-pill:hover { border-color: var(--crimson); color: var(--crimson); box-shadow: 0 2px 10px rgba(184,28,46,.1); }
.industry-pill svg { width: 18px; height: 18px; fill: var(--crimson); flex-shrink: 0; }
.industries-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ============================================================
   HOMEPAGE: BLOG/NEWS
   ============================================================ */
.post-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.post-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-light); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-card-thumb img { transform: scale(1.03); }
.post-card-body { padding: 20px 22px; }
.post-card-meta { font-size: 12px; color: var(--gray-mid); margin-bottom: 8px; }
.post-card-body h3 { font-size: 16px; margin-bottom: 10px; }
.post-card-body h3 a { color: var(--navy); }
.post-card-body h3 a:hover { color: var(--crimson); }
.post-card-body p { font-size: 14px; color: var(--gray-text); margin-bottom: 14px; }
.post-card-link {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  color: var(--crimson);
}

/* ============================================================
   HOMEPAGE: CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--crimson) 0%, #8b1220 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip p  { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--off-white);
  border-left: 3px solid var(--crimson);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
}
.testimonial p { font-size: 15px; font-style: italic; color: var(--gray-text); margin-bottom: 12px; }
.testimonial cite { font-style: normal; font-size: 13px; font-weight: 700; color: var(--navy); display: block; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.72);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,.62); max-width: 300px; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: -.3px;
}
.footer-logo-text span { color: var(--gold); }
.footer-tagline { font-size: 12px; color: var(--gray-mid); margin-top: 4px; letter-spacing: .5px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.68); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; font-size: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.68); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG: SINGLE POST
   ============================================================ */
.single-post-header { margin-bottom: 36px; }
.single-post-meta { font-size: 13px; color: var(--gray-mid); margin-bottom: 12px; }
.single-post-meta a { color: var(--gray-mid); }
.post-thumbnail { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow); }

/* ============================================================
   BLOG: ARCHIVE
   ============================================================ */
.archive-header { margin-bottom: 40px; }
.archive-header h1 { font-size: clamp(24px, 3vw, 36px); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pagination { margin-top: 48px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  color: var(--navy);
}
.pagination a:hover { border-color: var(--crimson); color: var(--crimson); }
.pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

@media (max-width: 768px) { .posts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .posts-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FORMS (contact/gravity/tech-banker)
   ============================================================ */
.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="tel"],
.entry-content textarea,
.entry-content select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-text);
  transition: border-color .15s;
  margin-bottom: 12px;
}
.entry-content input:focus,
.entry-content textarea:focus { outline: none; border-color: var(--navy); }
.entry-content input[type="submit"],
.entry-content button[type="submit"] {
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
.entry-content input[type="submit"]:hover { background: var(--crimson-h); }

/* ============================================================
   SEARCH & 404
   ============================================================ */
.error-404, .search-results-wrap { padding: 80px 0; text-align: center; }
.error-404 h1 { font-size: 80px; color: var(--gray-light); margin-bottom: 8px; }

/* ============================================================
   WP ALIGNMENT CLASSES
   ============================================================ */
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin: 0 auto 16px; }
.alignwide, .alignfull { width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--gray-mid); margin-top: 6px; text-align: center; }
