/* Pilot skin for main.html and arnold_chiari.html.
   One stylesheet. Mobile-first. Wider layouts use min-width. */

:root {
  --ab-bg: #f6f8fb;
  --ab-ink: #172033;
  --ab-heading: #102a43;
  --ab-muted: #44546a;
  --ab-blue: #1f5f8f;
  --ab-green: #20836f;
  --ab-green-dark: #176857;
  --ab-navy: #123e63;
  --ab-border: #e5e9ef;
  --ab-white: #ffffff;
  --ab-soft: #eef6fb;
  --ab-soft-green: #eef9f5;
  --ab-max: 1120px;
  --highlight-color: #1f5f8f;
}

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

html {
  background: var(--ab-bg);
}

body {
  margin: 0;
  background: var(--ab-bg);
  color: var(--ab-ink);
  /* arnold_chiari.html sets Inter with !important in an inline style. */
  font-family: "Source Sans 3", "Segoe UI", sans-serif !important;
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
button,
input,
textarea {
  font-family: inherit;
}

/* Loaded menu chrome is not a page heading. Keep the previous label weight. */
#menu-main .card-bottom > p.font-20,
#menu-main .card-bottom > p.font-18,
.menu-title .menu-sheet-title {
  font-weight: 700;
  line-height: 1.25;
}

/* The Chiari page pins Inter with !important on these elements. */
h1,
h2,
h3,
h4,
h5,
h6,
p,
.btn,
.card-text,
.card-title,
.responsive-font {
  font-family: "Source Sans 3", "Segoe UI", sans-serif !important;
}

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

button {
  font: inherit;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* custom.js writes style.display = "block" on .menu after load.
   A normal display:none loses to that inline style. */
#preloader,
#menu-main,
#menu-call,
.header,
#footer-bar,
.menu,
.menu-hider {
  display: none !important;
}

#page {
  background: var(--ab-bg);
  min-height: 100vh;
}

.page-content {
  margin-top: 0;
}

/* —— Header —— */
.d-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--ab-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.d-chrome-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 64px;
  max-width: var(--ab-max);
  margin: 0 auto;
  padding: 0 1rem;
}

.d-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  overflow: hidden;
  color: var(--ab-navy);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.d-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.d-nav-item {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 10px;
  padding: 0.5rem 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #344054;
  text-decoration: none;
}

.d-nav-item:hover,
.d-nav-item.is-active {
  background: var(--ab-soft);
  color: var(--ab-navy);
}

.d-nav-item--wa {
  background: var(--ab-soft-green);
  color: #126b55;
}

.d-nav-item--stack {
  display: block;
  border-radius: 12px;
  padding: 0.85rem 0.75rem;
  font-size: 1rem;
}

.d-langs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0.35rem 0 0.5rem;
  font-size: 0.75rem;
}

.d-langs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: #344054;
  text-decoration: none;
}

.d-langs a:hover {
  text-decoration: underline;
}

.d-menu-wrap {
  position: relative;
}

.d-menu-wrap summary {
  list-style: none;
}

.d-menu-wrap summary::-webkit-details-marker {
  display: none;
}

.d-menu-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.d-menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ab-navy);
  border-radius: 2px;
}

@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .d-nav {
    display: flex;
  }

  .d-menu-btn {
    display: none !important;
  }

  .d-menu-wrap {
    display: none;
  }
}

.d-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(16, 42, 67, 0.28);
}

.d-menu-wrap:not([open]) .d-sheet {
  display: none;
}

.d-sheet-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 20rem);
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--ab-border);
  padding: 1.25rem 1rem 2rem;
  overflow: auto;
}

.d-sheet-title {
  margin: 0 0 1rem;
  padding-right: 2rem;
  font-weight: 800;
  color: var(--ab-navy);
}

.d-sheet-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.d-sheet-nav .d-langs {
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--ab-border);
}

.d-sheet-nav .d-btn {
  margin-top: 0.5rem;
}

/* —— Buttons —— */
.d-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.d-btn--primary {
  background: var(--ab-green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(32, 131, 111, 0.18);
}

.d-btn--primary:hover {
  background: var(--ab-green-dark);
}

.d-btn--secondary {
  background: #fff;
  color: var(--ab-navy);
  border: 1px solid #cfd8e3;
}

.d-btn--secondary:hover {
  background: var(--ab-soft);
}

/* —— Home —— */
.d-hero {
  border-bottom: 1px solid var(--ab-border);
  background: linear-gradient(135deg, #f9fcff 0%, #eef6fb 60%, #eef9f5 100%);
  padding: 1.5rem 0 1.75rem;
}

.d-hero-grid,
.d-pills,
.d-konular,
.d-footer-grid {
  max-width: var(--ab-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.d-hero-grid {
  display: grid;
  align-items: center;
  gap: 1.25rem;
}

.d-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ab-blue);
}

.d-hero h1 {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ab-heading);
}

.d-lead {
  margin: 0.5rem 0 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ab-muted);
}

.d-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.d-hero-ctas .d-btn {
  width: 100%;
}

.d-hero-photo {
  margin: 0 auto;
  width: 100%;
  max-width: 220px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(31, 95, 143, 0.15);
  background: #fff;
}

.d-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
}

@media (min-width: 640px) {
  .d-hero-ctas .d-btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  .d-hero-grid {
    grid-template-columns: 1.7fr 0.7fr;
  }
}

.d-pills {
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}

.d-pills h2 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #183b56;
}

.d-pills ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.d-pills li {
  border: 1px solid var(--ab-border);
  background: #fff;
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #344054;
}

.d-konular {
  padding-bottom: 2.5rem;
  scroll-margin-top: 5.5rem;
}

.d-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.d-bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--ab-border);
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(31, 58, 88, 0.05);
  overflow: hidden;
}

.d-bento-card:hover {
  border-color: #cde9df;
  box-shadow: 0 16px 36px rgba(31, 58, 88, 0.1);
}

.d-bento-card--blue {
  background: radial-gradient(420px circle at 100% 0%, #eef6fb, #fff 58%);
}

.d-bento-card--green {
  background: radial-gradient(420px circle at 100% 0%, #eef9f5, #fff 58%);
}

.d-bento-card--amber {
  background: radial-gradient(420px circle at 100% 0%, #fff8e8, #fff 58%);
}

.d-bento-ico {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  border: 1px solid var(--ab-border);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ab-blue);
  margin-bottom: 0.75rem;
}

.d-bento-ico svg,
.d-ico {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.d-bento-card--green .d-bento-ico {
  color: var(--ab-green);
}

.d-bento-card--amber .d-bento-ico {
  color: #9b6b13;
}

.d-bento-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ab-navy);
}

.d-bento-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #667085;
}

.d-bento-cta {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--ab-green);
}

.d-groups {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.d-groups h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ab-navy);
}

.d-group-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.d-group-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid var(--ab-border);
  background: #fff;
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #244f70;
  text-decoration: none;
}

.d-group-list a:hover {
  border-color: #cde9df;
  background: var(--ab-soft-green);
}

.d-group-list a span {
  color: var(--ab-green);
  opacity: 0.7;
}

@media (min-width: 640px) {
  .d-bento {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .d-groups {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .d-bento {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .d-bento-card {
    min-height: 17rem;
  }

  .d-groups {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (hover: hover) and (pointer: fine) {
  .d-bento-card:hover {
    transform: translateY(-2px);
  }

  .d-group-list a:hover {
    transform: translateY(-1px);
  }
}

/* Reviews on the home page. Side-project badges stay in the page <style>. */
.d-home #hasta-yorumlari,
.d-home .alp-projects {
  max-width: var(--ab-max);
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}

.d-home #hasta-yorumlari h2,
.d-home .alp-projects-title {
  color: #183b56;
  font-weight: 800;
}

.d-home #hasta-yorumlari .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
}

.d-home #hasta-yorumlari .card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--ab-border);
  border-radius: 16px;
}

.star-rating {
  color: #e2b93b;
}

.font-14 {
  font-size: 0.875rem;
  line-height: 1.55;
}

.font-18 {
  font-size: 1.125rem;
}

.font-subtitle {
  font-size: 0.8rem;
  color: var(--ab-muted);
}

.text-highlight {
  color: var(--ab-blue);
}

.font-weight-bold {
  font-weight: 700;
}

.p-2 {
  padding: 0.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.d-flex {
  display: flex;
}

.flex-fill {
  flex: 1 1 auto;
}

@media (min-width: 768px) {
  .d-home #hasta-yorumlari .row {
    grid-template-columns: 1fr 1fr;
  }
}

/* —— Article (arnold_chiari) —— */
.d-article {
  max-width: var(--ab-max);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.d-article .container,
.d-article .container-fluid,
.d-article .content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.d-article .card,
.d-article .card-style {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  margin: 0 0 1.25rem;
}

.d-article .card-body,
.d-article .content {
  margin: 0;
  padding: 0;
}

.d-article h1 {
  max-width: 40rem;
  margin: 0 0 0.6rem;
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #102a43;
  text-align: left;
}

.d-article h2.color-aqua-light,
.d-article h2.d-lead {
  max-width: 40rem;
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #44546a;
  text-align: left;
}

.d-article h3,
.d-article .h3,
.d-article h5,
.d-article .h5,
.d-article .card-title {
  margin: 2rem 0 1rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.3;
  font-weight: 700;
  color: #183b56;
  text-align: left;
}

.d-article h6,
.d-article .h6 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #183b56;
}

.menu-divider {
  padding-left: 16px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.d-article p,
.d-article .card-text,
.d-article li {
  margin: 0 0 1rem;
  line-height: 1.72;
  color: #172033;
  text-align: left;
}

.d-article ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.d-article a:not(.d-btn):not(.btn) {
  color: var(--ab-blue);
}

.d-article .text-center,
.d-article .justify-text {
  text-align: left;
}

.d-article .bg-danger,
.d-article .bg-fade-blue-dark {
  background: #eef6fb;
  border: 1px solid #d7e9f6;
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  margin: 1.25rem 0;
}

.d-article .bg-danger :is(p, h2, h3, h5, h6, .card-title, .card-text),
.d-article .bg-fade-blue-dark :is(p, h2, h3, h5, h6, .card-title, .card-text),
.d-article .text-white:not(.btn):not(.d-btn) {
  color: #1d2939;
  background: transparent;
}

.d-article .ratio {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0.5rem auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.d-article .ratio > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d-article a.btn,
.d-article .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 0.65rem;
  border-radius: 12px;
  padding: 0.65rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
  text-decoration: none;
  background: var(--ab-green);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 18px rgba(32, 131, 111, 0.18);
}

.d-article a.btn.bg-red-dark,
.d-article a.btn.bg-blue-dark,
.d-article a.btn.bg-green-dark,
.d-article a.btn[href^="tel:"],
.d-article a.btn[href="#"],
.d-article a.btn[data-menu="menu-call"] {
  background: #fff;
  color: var(--ab-navy);
  border: 1px solid #cfd8e3;
  box-shadow: none;
}

.d-article a.btn i,
.d-article .btn i {
  display: none;
}

.d-article .d-medical-note {
  margin: 0.2rem 0 0.85rem;
  max-width: 46rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: #5c6b7c;
}

.d-article .d-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.15rem 0 1.15rem;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--ab-border);
  border-radius: 16px;
}

.d-article .d-author img {
  width: 112px;
  height: 140px;
  flex: 0 0 112px;
  object-fit: cover;
  object-position: 22% 14%;
  border-radius: 12px;
  margin: 0;
}

.d-article .d-author[data-shot="portrait"] img {
  object-position: center 12%;
}

.d-article .d-author p {
  margin: 0;
}

.d-article .d-author-name {
  color: #102a43;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.d-article .d-author-role {
  margin-top: 0.2rem;
  color: var(--ab-blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.d-article .d-author-place {
  margin-top: 0.12rem;
  color: #44546a;
  font-size: 0.88rem;
}

.d-article .d-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.35rem 0 1.35rem;
}

.d-article .d-related > [class*="col"] {
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0;
}

.d-article .d-related .card,
.d-article .d-related .card-style {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ab-border);
  border-radius: 14px;
}

.d-article .d-related a {
  color: inherit;
  text-decoration: none;
}

.d-article .d-related img.topic-card {
  display: block;
  width: 100%;
  aspect-ratio: 1070 / 1470;
  object-fit: contain;
  border-radius: 22px;
}

.d-article .d-related .card:has(img.topic-card),
.d-article .d-related .card-style:has(img.topic-card) {
  background: transparent;
  border: 0;
  overflow: visible;
}

.d-article .d-related .card:has(img.topic-card) .p-2,
.d-article .d-related .card:has(img.topic-card) .text-center {
  display: none;
}

/* Bootstrap collapse, kept working by scripts/bootstrap.min.js */
.d-article .accordion {
  border: 1px solid var(--ab-border);
  border-radius: 14px;
  overflow: hidden;
  margin: 1rem 0 1.5rem;
}

.d-article .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--ab-border);
  background: #fff;
}

.d-article .accordion-button {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0.9rem 2.4rem 0.9rem 1rem;
  border: 0;
  background: #fff;
  color: #244f70;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.d-article .accordion-button::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1.2rem;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.d-article .accordion-button:not(.collapsed)::after {
  transform: rotate(-135deg);
  top: 1.35rem;
}

/* display:none only while the panel is fully closed. .collapsing is the
   open/close animation and must stay visible or Bootstrap aborts it. */
.d-article .accordion-collapse.collapse:not(.show) {
  display: none;
}

.d-article .accordion-collapse.collapsing {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.d-article .accordion-body {
  padding: 0 1rem 1rem;
  color: #172033;
}

@media (min-width: 640px) {
  .d-article {
    padding: 2.5rem 1.25rem 3rem;
  }

  .d-article a.btn,
  .d-article .btn {
    width: auto;
  }

  .d-article .d-author img {
    width: 148px;
    height: 186px;
    flex-basis: 148px;
  }
}

@media (min-width: 768px) {
  .d-article .d-related[data-n="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .d-article .d-related[data-n="4"],
  .d-article .d-related[data-n="5"],
  .d-article .d-related[data-n="6"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* —— Footer + mobile bar —— */
.d-footer {
  background: #102a43;
  color: #dce6ef;
}

.d-footer-grid {
  display: grid;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.d-footer h2 {
  margin: 0;
  font-size: 1.125rem;
  color: #fff;
}

.d-footer p {
  margin: 0.5rem 0 0;
  color: #c4d1dc;
  font-size: 1rem;
}

.d-footer a {
  color: #d9f3ec;
  text-decoration: none;
}

.d-mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.6rem 0.65rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--ab-border);
}

.d-mobilebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
}

.d-mobilebar-call {
  background: var(--ab-soft);
  color: var(--ab-navy);
}

.d-mobilebar-wa {
  background: var(--ab-green);
  color: #fff;
}

@media (min-width: 768px) {
  .d-footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .d-mobilebar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Beats the hover transform above when the user asks for less motion. */
  .d-bento-card:hover,
  .d-group-list a:hover {
    transform: none !important;
  }
}
