/*
Theme Name: WebDesignBronx
Theme URI: https://webdesignbronx.com/
Author: WebDesignBronx.com
Description: A fast, editable WordPress marketing theme for WebDesignBronx.com and regional service landing pages.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: webdesignbronx
*/

:root {
  --wdb-ink: #050505;
  --wdb-navy: #07131f;
  --wdb-blue: #167bbd;
  --wdb-green: #167bbd;
  --wdb-orange: #f4542a;
  --wdb-paper: #f4f7fb;
  --wdb-white: #ffffff;
  --wdb-muted: #5d6a78;
  --wdb-line: rgba(6, 19, 31, 0.12);
  --wdb-radius: 22px;
  --wdb-shadow: 0 20px 50px rgba(5, 5, 5, 0.10);
  --wdb-font: "Montserrat", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--wdb-ink);
  background: var(--wdb-paper);
  font-family: var(--wdb-font);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--wdb-blue); }

a.wdb-card {
  color: var(--wdb-ink);
  text-decoration: none;
}

img { max-width: 100%; height: auto; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wdb-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--wdb-line);
  backdrop-filter: blur(18px);
}

.wdb-header-inner,
.wdb-container {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.wdb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.wdb-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--wdb-ink);
  font-size: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.wdb-logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--wdb-white);
  background: linear-gradient(135deg, var(--wdb-blue), var(--wdb-green));
  border-radius: 12px;
}

.wdb-logo-image {
  display: block;
  width: clamp(116px, 13vw, 188px);
  height: auto;
  max-width: 188px;
  max-height: 46px;
  object-fit: contain;
}

.wdb-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 800;
}

.wdb-nav ul {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wdb-nav a {
  color: var(--wdb-ink);
  text-decoration: none;
}

.wdb-nav a:hover,
.wdb-nav a:focus { color: var(--wdb-blue); }

.wdb-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wdb-phone {
  color: var(--wdb-ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.wdb-button,
.wp-block-button__link,
.wdb-form button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  color: var(--wdb-white) !important;
  background: var(--wdb-orange);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(244, 84, 42, 0.28);
  cursor: pointer;
  font: 900 15px/1 var(--wdb-font);
  text-decoration: none;
}

.wdb-button:hover,
.wp-block-button__link:hover,
.wdb-form button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

.wdb-button.secondary,
.is-style-outline .wp-block-button__link {
  color: var(--wdb-white) !important;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.wdb-menu-toggle { display: none; }

.wdb-main { min-height: 60vh; }

.entry-content > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.wdb-section,
.wp-block-group.wdb-section {
  position: relative;
  padding: clamp(54px, 8vw, 104px) 0;
}

.wdb-dark {
  color: var(--wdb-white);
  background:
    radial-gradient(circle at 12% 0%, rgba(22, 123, 189, 0.45), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(244, 84, 42, 0.28), transparent 28%),
    linear-gradient(135deg, #050505 0%, #07131f 56%, #10243a 100%);
}

.wdb-hero {
  overflow: hidden;
  padding: clamp(54px, 7vw, 86px) 0;
}

.wdb-hero::after {
  content: "";
  position: absolute;
  inset: auto -8vw -100px auto;
  width: min(560px, 80vw);
  height: min(560px, 80vw);
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 34px 34px;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.wdb-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.wdb-hero-copy { grid-column: 1 / -1; position: relative; z-index: 1; min-width: 0; max-width: 1080px; }
.wdb-hero-card { grid-column: 1 / -1; position: relative; z-index: 1; min-width: 0; }

.wdb-hero-card .wdb-card,
.wdb-hero-card .wdb-form {
  max-width: 470px;
  margin-left: auto;
}

.wdb-hero-style-1 {
  background:
    radial-gradient(circle at 78% 20%, rgba(244, 84, 42, 0.28), transparent 30%),
    linear-gradient(135deg, #050505 0%, #0b1b2c 100%);
}

.wdb-hero-style-2 {
  background:
    radial-gradient(circle at 18% 10%, rgba(22, 123, 189, 0.42), transparent 34%),
    linear-gradient(135deg, #07131f 0%, #050505 100%);
}

.wdb-hero-style-3 {
  background:
    linear-gradient(115deg, #050505 0%, #101820 48%, #167bbd 125%);
}

.wdb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--wdb-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 { font-size: clamp(48px, 8vw, 88px); }
h2 { font-size: clamp(34px, 4.8vw, 58px); }
h3 { font-size: clamp(22px, 2.4vw, 31px); }

.wdb-lede {
  max-width: 780px;
  color: inherit;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.wdb-dark .wdb-lede,
.wdb-dark p { color: rgba(255, 255, 255, 0.82); }

.wdb-dark .wdb-card p,
.wdb-dark .wdb-form p {
  color: var(--wdb-muted);
}

.wdb-trust-line {
  max-width: 820px;
  margin-top: 22px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 800;
}

.wdb-card,
.wp-block-group.wdb-card,
.wdb-form,
.fluentform {
  padding: clamp(22px, 3vw, 34px);
  background: var(--wdb-white);
  border: 1px solid rgba(5, 5, 5, 0.09);
  border-radius: var(--wdb-radius);
  box-shadow: var(--wdb-shadow);
}

.wdb-dark .wdb-card,
.wdb-dark .wdb-form,
.wdb-dark .fluentform {
  color: var(--wdb-ink);
  background: rgba(255, 255, 255, 0.96);
}

.wdb-card p { color: var(--wdb-muted); }

.wdb-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.wdb-card-grid .wdb-card {
  min-height: 100%;
}

.wdb-card-grid .wdb-card h3 {
  max-width: 12ch;
}

.wdb-industry-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.wdb-industry-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  align-items: center;
  min-height: 108px;
  padding: 20px;
  color: var(--wdb-ink);
  background:
    linear-gradient(135deg, rgba(22, 123, 189, 0.10), rgba(244, 84, 42, 0.08)),
    var(--wdb-white);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.07);
  text-decoration: none;
}

.wdb-industry-tile span {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--wdb-white);
  background: var(--wdb-ink);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 950;
}

.wdb-industry-tile strong {
  font-size: 20px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.wdb-industry-tile em {
  color: var(--wdb-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.wdb-service-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.wdb-service-tile {
  display: block;
  min-height: 132px;
  padding: 22px;
  color: var(--wdb-ink);
  background: var(--wdb-white);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.08);
  text-decoration: none;
}

.wdb-service-tile strong {
  display: block;
  max-width: 13ch;
  margin-bottom: 18px;
  color: var(--wdb-ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

.wdb-service-tile span {
  display: inline-flex;
  color: var(--wdb-orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wdb-proof-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin-top: 18px;
  color: var(--wdb-white);
}

.wdb-proof-panel span {
  display: none;
}

.wdb-proof-panel strong {
  display: none;
}

.wdb-proof-panel ul {
  display: contents;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wdb-proof-panel li {
  padding: 16px 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.wdb-proof-panel li::before {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  margin-bottom: 12px;
  background: var(--wdb-orange);
  border-radius: 99px;
}

.wdb-section-head {
  max-width: 860px;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.wdb-section-content {
  width: 100%;
}

.wdb-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.wdb-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.wdb-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 750;
}

.wdb-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--wdb-blue), var(--wdb-orange));
  border-radius: 5px;
}

.wdb-price {
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 1;
}

.wdb-price small {
  color: var(--wdb-muted);
  font-size: 19px;
  letter-spacing: 0;
}

.wdb-form {
  display: grid;
  gap: 14px;
}

.wdb-hero-card .wdb-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wdb-hero-card .wdb-form h3,
.wdb-hero-card .wdb-form .wdb-form-success,
.wdb-hero-card .wdb-form label:has(textarea),
.wdb-hero-card .wdb-form .wdb-consent,
.wdb-hero-card .wdb-form button,
.wdb-hero-card .wdb-form .wdb-form-note {
  grid-column: 1 / -1;
}

.wdb-hero-card .wdb-form h3 {
  margin-bottom: 4px;
}

.wdb-hero-card .wdb-form textarea {
  min-height: 82px;
}

.wdb-form label {
  display: grid;
  gap: 7px;
  color: var(--wdb-ink);
  font-size: 14px;
  font-weight: 900;
}

.wdb-form input,
.wdb-form select,
.wdb-form textarea,
.fluentform input:not([type="checkbox"]):not([type="radio"]),
.fluentform select,
.fluentform textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--wdb-ink);
  background: #f7f9fc;
  border: 1px solid var(--wdb-line);
  border-radius: 14px;
  font: 600 16px/1.3 var(--wdb-font);
  min-width: 0;
}

.wdb-form textarea,
.fluentform textarea {
  min-height: 110px;
  resize: vertical;
}

.fluentform h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.fluentform .ff-el-group {
  margin-bottom: 16px;
}

.fluentform .ff-el-input--label label,
.fluentform label {
  color: var(--wdb-ink);
  font-size: 14px;
  font-weight: 900;
}

.fluentform .ff-el-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fluentform input[type="checkbox"] {
  width: auto;
  min-height: 0;
  margin-top: 5px;
}

.fluentform button,
.fluentform .ff-btn-submit {
  width: auto;
  min-height: 50px;
  padding: 14px 22px;
  color: var(--wdb-ink);
  background: var(--wdb-cta);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(255, 172, 56, 0.34);
  font: 950 16px/1 var(--wdb-font);
  cursor: pointer;
}

.fluentform .text-danger,
.fluentform .error,
.fluentform .ff-el-is-error .ff-el-help-message {
  color: #b42318;
  font-weight: 800;
}

.wdb-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--wdb-muted) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.wdb-consent input { width: auto; min-height: 0; margin-top: 5px; }

.wdb-form-note {
  color: var(--wdb-muted);
  font-size: 13px;
  margin: 0;
}

.wdb-form-success {
  display: none;
  padding: 16px;
  background: rgba(22, 123, 189, 0.12);
  border: 1px solid rgba(22, 123, 189, 0.35);
  border-radius: 16px;
  font-weight: 850;
}

.wdb-form.is-submitted .wdb-form-success { display: block; }

.wdb-faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--wdb-line);
}

.wdb-faq summary {
  cursor: pointer;
  font-weight: 950;
  font-size: 20px;
}

.wdb-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.wdb-pill {
  padding: 9px 12px;
  color: var(--wdb-ink);
  background: rgba(18, 103, 255, 0.09);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.wdb-site-footer {
  color: rgba(255,255,255,.78);
  background: #06131f;
  padding: 60px 0 28px;
}

.wdb-footer-logo {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 10px;
}

.wdb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}

.wdb-site-footer h2,
.wdb-site-footer h3 {
  color: var(--wdb-white);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.wdb-site-footer a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

.wdb-footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}

.wdb-copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.56);
  font-size: 13px;
}

@media (max-width: 980px) {
  .wdb-header-inner { flex-wrap: wrap; padding: 14px 0; }
  .wdb-menu-toggle { display: inline-flex; }
  .wdb-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  body.wdb-menu-open .wdb-nav { display: block; }
  .wdb-nav ul { display: grid; gap: 10px; }
  .wdb-actions { margin-left: auto; }
  .wdb-hero-copy,
  .wdb-hero-card { grid-column: 1 / -1; }
  .wdb-hero-card .wdb-card,
  .wdb-hero-card .wdb-form {
    max-width: none;
    margin-left: 0;
  }
  .wdb-proof-panel {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .wdb-hero-card .wdb-form {
    grid-template-columns: 1fr;
  }
  .wdb-card-grid,
  .wdb-two,
  .wdb-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wdb-header-inner,
  .wdb-container {
    width: calc(100% - 22px);
    max-width: 1160px;
  }
  .wdb-logo-image { width: 128px; max-height: 34px; }
  .wdb-actions > .wdb-button:not(.wdb-menu-toggle) { display: none; }
  .wdb-actions {
    position: absolute;
    top: 14px;
    right: 11px;
    margin-left: 0;
  }
  .wdb-actions .wdb-button {
    width: auto;
    min-height: 42px;
    padding: 10px 14px;
  }
  .wdb-actions .wdb-menu-toggle {
    display: inline-flex !important;
    position: fixed;
    top: 14px;
    right: auto;
    left: 168px;
    z-index: 100;
  }
  .wdb-header-inner {
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 70px;
  }
  h1 { font-size: clamp(38px, 12.5vw, 50px); }
  h2 { font-size: clamp(31px, 10vw, 42px); }
  .wdb-hero h1 {
    max-width: 10.5ch;
    overflow-wrap: normal;
  }
  .wdb-hero-copy .wdb-lede,
  .wdb-hero-copy .wdb-trust-line {
    max-width: 32ch;
  }
  .wdb-lede { font-size: 18px; }
  .wdb-button,
  .wp-block-button__link,
  .wdb-form button,
  input[type="submit"] { width: 100%; }
  .wdb-hero { padding-top: 52px; }
}

/* Intake forms should stay readable even when placed inside dark CTA sections. */
.fluentform h3,
.fluentform p,
.wdb-dark .fluentform h3,
.wdb-dark .fluentform p,
.wdb-dark .fluentform .ff-el-form-check,
.wdb-dark .fluentform .ff-el-form-check label {
  color: var(--wdb-ink);
}

.wdb-dark .fluentform p,
.fluentform p {
  color: var(--wdb-muted);
}

.wdb-contact-details .wdb-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wdb-detail-card {
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  border: 1px solid rgba(5, 5, 5, 0.09);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(6, 21, 37, 0.08);
}

.wdb-detail-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--wdb-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wdb-detail-card a,
.wdb-detail-card p,
.wdb-detail-card .wdb-detail-text {
  margin: 0;
  color: var(--wdb-ink);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.wdb-detail-card a:hover {
  color: var(--wdb-orange);
}

.wdb-detail-card-wide {
  grid-column: 1 / -1;
}

.wdb-detail-card-wide p,
.wdb-detail-card-wide .wdb-detail-text {
  color: var(--wdb-muted);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .wdb-contact-details .wdb-detail-grid {
    grid-template-columns: 1fr;
  }
}

.wdb-header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--wdb-ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 21, 37, 0.10);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.wdb-header-phone:hover,
.wdb-header-phone:focus {
  color: var(--wdb-blue);
  border-color: rgba(28, 126, 191, 0.32);
}

@media (max-width: 900px) {
  .wdb-header-phone {
    order: -1;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .wdb-actions { gap: 8px; }
  .wdb-header-phone {
    width: 100%;
    justify-content: center;
  }
}

.wdb-warning-section {
  background:
    linear-gradient(135deg, rgba(255, 172, 56, 0.15), rgba(28, 126, 191, 0.08)),
    #fffaf0;
}

.wdb-warning-section .wdb-section-head {
  border-left: 6px solid var(--wdb-orange);
  padding-left: clamp(18px, 3vw, 28px);
}

.wdb-warning-section .wdb-card {
  border-color: rgba(255, 172, 56, 0.35);
}

/* Stronger click-to-call treatment in the header. */
.wdb-header-phone {
  position: relative;
  gap: 8px;
  padding: 12px 18px 12px 16px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--wdb-blue), #0b6fae 48%, #073f78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 16px 34px rgba(28, 126, 191, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.wdb-header-phone::before {
  content: "Call";
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 26px;
  padding: 0 9px;
  color: var(--wdb-ink);
  background: var(--wdb-cta);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wdb-header-phone:hover,
.wdb-header-phone:focus {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(255, 172, 56, 0.7);
  box-shadow: 0 20px 42px rgba(28, 126, 191, 0.42), 0 0 0 4px rgba(255, 172, 56, 0.18);
}

@media (max-width: 520px) {
  .wdb-header-phone {
    width: auto;
    justify-content: center;
    padding: 11px 15px;
  }
}

/* Balanced header call button, placed after the primary CTA. */
.wdb-header-phone {
  padding: 13px 18px;
  gap: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.wdb-header-phone::before {
  content: "Call";
  min-width: auto;
  height: auto;
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.wdb-header-phone::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
