/* ==========================================================================
   SEIB CONSTRUCTION — SHARED COMPONENTS
   Buttons · Navigation · Trust Bar · Footer · Tags
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BUTTON SYSTEM
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-fast),
    box-shadow var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

/* Primary — Copper filled */
.btn-primary {
  background-color: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--copper-light);
  border-color: var(--copper-light);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184, 115, 51, 0.35);
  transform: translateY(-1px);
}

/* Outline light — white border, for dark backgrounds */
.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

/* Outline copper — copper border, for light backgrounds */
.btn-outline-copper {
  background-color: transparent;
  color: var(--copper);
  border-color: var(--copper);
}

.btn-outline-copper:hover,
.btn-outline-copper:focus {
  background-color: var(--copper);
  color: var(--white);
  transform: translateY(-1px);
}

/* Outline navy */
.btn-outline-navy {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover ,
.btn-outline-navy:focus {
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* Ghost — no border, copper text */
.btn-ghost {
  background-color: transparent;
  color: var(--copper);
  border-color: transparent;
  padding-inline: 4px;
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--copper-light);
}

/* Sizes */
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 20px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Arrow icon in button */
.btn-arrow::after {
  content: "→";
  font-size: 1em;
  transition: transform var(--transition-base);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   2. SITE HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
#header-sticky.active-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition:
    background-color var(--transition-slow),
    box-shadow var(--transition-slow),
    border-color var(--transition-slow);
}

/* Transparent on hero — becomes solid on scroll (class added via JS) */
.site-header--transparent {
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.site-header--solid {
  background-color: var(--white);
  border-bottom: 1px solid rgba(184, 115, 51, 0.25);
  box-shadow: 0 2px 24px rgba(15, 27, 51, 0.35);
}

.site-header--white {
  background-color: var(--white);
  box-shadow: 0 2px 24px rgba(15, 27, 51, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: var(--space-4);
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
  width: 15%;
}


.nav-logo span {
  color: var(--copper);
}

/* Nav links */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
  list-style: none;
  margin: 0;
  width: 70%;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  padding: 6px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 3px;
  transition:
    color var(--transition-base),
    background-color var(--transition-base);
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--navy);
  background-color: rgb(27, 42, 74, 0.07);
}

.nav-links > li > a.active {
  color: var(--copper-light);
}


/* Dropdown arrow */
.dropdown-arrow {
  font-size: 10px;
  opacity: 0.6;
  transition: transform var(--transition-base);
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--navy-deep);
  border: 1px solid rgba(184, 115, 51, 0.2);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 260px;
  list-style: none;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-base);
  pointer-events: none;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  margin: 0;
}

.nav-dropdown li a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-base),
    background-color var(--transition-base);
}

.nav-dropdown li a:hover {
  color: var(--copper-light);
  background-color: rgba(184, 115, 51, 0.1);
}

/* Dropdown connector (prevents gap from closing menu) */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

/* Nav actions (phone + CTA) */
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-4);
  flex-shrink: 0;
  width: 16%;
}

.nav-phone {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--copper-light);
  transition: color var(--transition-base);
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--white);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-base);
}

.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base),
    width var(--transition-base);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* Mobile nav */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--navy-deep);
    border-top: 1px solid rgba(184, 115, 51, 0.2);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-5) var(--container-pad);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    z-index: var(--z-nav);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links > li > a {
    font-size: 16px;
    padding: 16px 4px;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 0;
  }

  /* Hover/focus on the dark mobile sidebar: use the active copper color
     instead of the desktop navy (which is invisible on the navy background). */
  .nav-links > li > a:hover,
  .nav-links > li > a:focus {
    color: var(--copper-light);
    background-color: transparent;
  }

  /* Parent items with a sub-menu: label navigates, caret toggles the sub-menu.
     Push the caret to the far right and give it a large tap target. */
  .has-dropdown > a {
    justify-content: space-between;
  }

  .has-dropdown > a .dropdown-arrow {
    padding: 16px;
    margin: -16px -16px -16px 0;
    font-size: 14px;
    opacity: 0.8;
  }

  /* Caret feedback when the sub-menu is open (no hover on mobile) */
  .has-dropdown.open > a .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    border: none;
    padding: 0 0 8px 16px;
    min-width: unset;
    width: 100%;
    pointer-events: auto;
    display: none;
  }

  .has-dropdown.open .nav-dropdown {
    display: block;
    transform: translateX(0%) translateY(0);
  }

  .nav-dropdown li a {
    font-size: 14px;
    padding: 10px 8px;
    color: rgba(255, 255, 255, 0.6);
  }

  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  /* Larger logo on mobile/tablet — the desktop 15% width shrinks it to a
     sliver once the nav collapses to the hamburger. Capped so it leaves
     room for the toggle button. */
  .nav-logo {
    width: min(160px, 45%);
  }
}

/* --------------------------------------------------------------------------
   3. TOP BAR
-------------------------------------------------------------------------- */


/* General Top Bar Styling */
.top-bar {
    background-color: var(--navy); /* Dark background */
    color: var(--white);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Company Info */
.top-bar .company-info {
  width: 75%;
}
.top-bar .company-info ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Divider between list items */
.top-bar .company-info li {
  display: flex;
  align-items: center;
}

.top-bar .company-info li:not(:last-child)::after {
  content: ""; /* Empty content to create the divider */
  display: inline-block;
  width: 1px; /* Width of the divider */
  height: 70%; /* Height of the divider */
  background-color: #f5f5f5; /* Divider color */
  margin: 0 15px;
}

.top-bar .company-info li a {
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 15px;
  line-height: 1.1em;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.top-bar .company-info li a[href]:hover {
  color: var(--copper);
}

/* Social Icons */
.top-bar .social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 25%;
}

.top-bar .social-icon {
    margin-left: 15px;
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.top-bar .social-icon:hover {
    color: var(--copper);
}

/* FontAwesome icon styles */
.top-bar .fab {
    font-size: 18px;
}


@media (max-width: 767px) {

.top-bar {
  display: none;
}

  /* Company Info */
.top-bar .company-info {
  width: 100%;
}
.top-bar .company-info ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 0;
}


/* Social Icons */
.top-bar .social-links {
    justify-content: center;
    width: 100%;
}
}

/* --------------------------------------------------------------------------
   3. TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background-color: var(--navy);
  border-top: 1px solid rgba(184, 115, 51, 0.3);
  border-bottom: 1px solid rgba(184, 115, 51, 0.15);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 28px;
  position: relative;
}

.trust-item + .trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.trust-icon {
  font-size: 18px;
  color: var(--copper);
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.trust-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .trust-item {
    padding: 10px 16px;
  }
}

@media (max-width: 640px) {
  .trust-bar-inner {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-bar-inner::-webkit-scrollbar {
    display: none;
  }
  .trust-item {
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   4. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-9);
  padding-top: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  display: block;
}

.footer-brand .footer-logo img {
  filter: invert(1) brightness(1000%);
}

.footer-brand .footer-logo span {
  color: var(--copper);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2;
}

.footer-brand .footer-license {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: var(--space-4);
  line-height: 1.8;
}

.footer-col h2 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.5px;
  margin-bottom: var(--space-5);
  text-transform: none;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: 0 !important;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-base);
  line-height: 1.8;
}

.footer-col ul li a:hover {
  color: var(--copper-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
  gap: var(--space-5) 0;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
  text-align: left;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-base);
}

.footer-bottom a:hover {
  color: var(--copper-light);
}


.footer-bottom  .footer-bottom-text {
  width: 40%;
}

.footer-bottom  .footer-legal-row {
  width: 60%;
}

.footer-bottom  .footer-legal-row ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 10px 20px;
}

.footer-bottom  .footer-legal-row ul a {
  font-size: 12px;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8) var(--space-6);
  }
/*  .footer-brand {
    grid-column: 1 / -1;
  }*/

  .footer-bottom  .footer-bottom-text {
    width: 100%;
  }

  .footer-bottom  .footer-bottom-text p {
    text-align: center;
  }

  .footer-bottom  .footer-legal-row {
    width: 100%;
  }

  .footer-bottom  .footer-legal-row ul {
    justify-content: center;
  }

}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7) var(--space-5);
    padding-top: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}

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

/* --------------------------------------------------------------------------
   5. TAG / BADGE COMPONENTS
   -------------------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.tag-copper {
  background-color: var(--copper-dim);
  color: var(--copper);
}

.tag-navy {
  background-color: rgba(27, 42, 74, 0.1);
  color: var(--navy);
}

.tag-white {
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

/* Rating stars */
.stars {
  color: #f4b942;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--cream);
  margin-block: var(--space-8);
}

/* Copper accent line under headings */
.copper-underline {
  display: inline-block;
  position: relative;
}

.copper-underline::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 48px;
  height: 3px;
  background-color: var(--copper);
  border-radius: 2px;
}

.copper-underline--center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Strip WordPress menu classes from footer lists */
.footer-col .menu-item {
  list-style: none;
}


/* ==========================================================================
   404 — PAGE NOT FOUND  (template: 404.php)
   Full-viewport, centered, navy — matches the site's dark section treatment.
   ========================================================================== */
.err404-section {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  min-height: 100svh;
  padding-top: 72px; /* clears fixed nav */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.err404-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, var(--copper-dim), transparent 65%);
  pointer-events: none;
}

.err404-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(56px, 8vw, 96px);
}

/* Big "404" code */
.err404-code {
  font-family: var(--font-display);
  font-size: clamp(96px, 20vw, 200px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--copper-light) 0%, var(--copper) 60%, rgba(184, 115, 51, 0.25) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--copper);
  margin-bottom: var(--space-4);
  animation: err404Pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes err404Pop {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: none; }
}

/* Eyebrow */
.err404-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper-light);
  display: block;
  margin-bottom: var(--space-4);
}

/* Headline */
.err404-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 46px);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

/* Subheadline */
.err404-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

/* Quick navigation links */
.err404-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  text-align: left;
}

.err404-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
}

.err404-link:hover {
  background: rgba(184, 115, 51, 0.12);
  border-color: rgba(184, 115, 51, 0.4);
  transform: translateY(-2px);
}

.err404-link-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--copper-dim);
  border: 1px solid rgba(184, 115, 51, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--copper-light);
}

.err404-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.err404-link-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.err404-link-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

/* Primary actions */
.err404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
}

/* Urgent contact strip */
.err404-urgent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.err404-urgent-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.err404-urgent-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--copper-light);
  text-decoration: none;
  transition: color var(--transition-base);
}

.err404-urgent-phone i {
  font-size: 11px;
}

.err404-urgent-phone:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 720px) {
  .err404-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .err404-links {
    grid-template-columns: 1fr;
  }
}
