.navbar-link.is-active, .navbar-link:focus, .navbar-link:focus-within, .navbar-link:hover, a.navbar-item.is-active, a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover {
  color: var(--primary-color)
}

.checkbox, .radio {
    cursor: pointer;
    line-height: 1.8;
    position: relative;
    display: inherit;
}

.radio + .radio {
    margin-left: 0;
}

/* Card consistent height within columns */
.update-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.update-card:hover {
  border-color: #d0d8e8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Push footer to bottom of card */
.update-card .card-content {
  flex: 1;
}

/* Top tag overlay on image */
.update-card-top-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

/* Make card-footer items sit on same row */
.update-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Remove Bulma's default card-footer-item border */
.update-card .card-footer-item {
  border: none;
  padding: 0;
}

/* Equal height columns */
.columns.is-multiline .column {
  display: flex;
  flex-direction: column;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem 1.5rem;
  border: 1px solid #f0f0f0;
  border-radius: var(--border-radius);
  background: #fff;
  text-decoration: none;
  color: #1a1a1a;
  height: 100%;
  transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
}

.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 12px rgba(24, 95, 165, 0.08);
  color: var(--primary-color);
}

.service-card-icon {
  margin-bottom: 1rem;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius);
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.service-card:hover .service-icon-wrap {
  background: var(--primary-color);
}

.service-icon-wrap svg,
.service-icon-wrap img {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: color 0.15s, filter 0.15s;
  fill: var(--primary-color)
}

.service-card:hover .service-icon-wrap svg {
  color: #fff;
  fill: #fff !important;
}

.service-card:hover .service-icon-wrap img {
  filter: brightness(0) invert(1);
}

.service-card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: inherit;
  margin-bottom: 0.75rem;
  flex: 1;
}

.service-card-arrow {
  color: var(--primary-color);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Equal height columns */
.columns.is-multiline .column {
  display: flex;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .service-card {
    padding: 1.25rem 0.75rem;
  }

  .service-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .service-icon-wrap svg,
  .service-icon-wrap img {
    width: 20px;
    height: 20px;
  }

  .service-card-title {
    font-size: 13px;
  }
}


.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border: 1px solid #f0f0f0;
  border-radius: var(--border-radius);
  background: #fff;
  text-decoration: none;
  height: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.partner-card:hover {
  border-color: var(--background-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.partner-logo-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
}

.partner-logo-img {
  max-height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}

.partner-card:hover .partner-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-name {
  font-size: 11px;
  color: #999;
  text-align: center;
  line-height: 1.3;
  transition: color 0.15s;
}

.partner-card:hover .partner-name {
  color: #555;
}

/* Equal height columns */
.partners-list .column {
  display: flex;
}

/* Mobile */
@media (max-width: 768px) {
  .partner-logo-figure {
    height: 44px;
  }

  .partner-logo-img {
    max-height: 44px;
  }

  .partner-card {
    padding: 1rem 0.75rem;
  }
}

.has-text-link {
    color: var(--primary-color) !important;
}

.more-partners {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border: 1.5px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: background 0.15s, color 0.15s;
}

.more-partners:hover {
    background: var(--primary-color);
    color: #fff !important;
}


/* ── ABOUT NAV PILLS WRAPPER ── */
.about-nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 1rem 0 2rem;
}

/* ── PILL BUTTON ── */
.about-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: none;
  background: #f4f6f9;
  color: #555;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  font-family: inherit;
}

.about-nav-btn:hover {
  background: var(--background-color);
  color: var(--primary-color);
}

/* active state — filled primary colour */
.about-nav-btn.is-active {
  background: var(--primary-color);
  color: #fff;
}

.about-nav-btn.is-active:hover {
  background: var(--primary-hover-color, var(--primary-color));
  color: #fff;
}

/* icon inside button */
.about-nav-btn .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.about-nav-btn .icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: fill 0.15s;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .about-nav-pills {
    gap: 6px;
    padding: 0.75rem 1rem 1.5rem;
  }

  .about-nav-btn {
    font-size: 12px;
    padding: 7px 14px;
    gap: 5px;
  }

  .about-nav-btn .icon svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 480px) {
  .about-nav-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
}


/* ── BREADCRUMB NAV ── */
.bc-nav {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}

/* ── LIST ── */
.bc-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── ITEM ── */
.bc-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  white-space: nowrap;
}

/* ── LINK ── */
.bc-link {
  color: #888;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.12s;
  padding: 2px 0;
}

.bc-link:hover {
  color: var(--primary-color);
}

/* ── SEPARATOR ── */
.bc-sep {
  display: inline-flex;
  align-items: center;
  margin: 0 4px;
  color: #ccc;
  flex-shrink: 0;
}

.bc-sep svg {
  width: 12px;
  height: 12px;
}

/* ── ACTIVE (current page) ── */
.bc-item--active {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .bc-nav { padding: 0.6rem 0; }

  .bc-item     { font-size: 11px; }
  .bc-item--active {
    font-size: 11px;
    max-width: 180px;
  }

  .bc-sep svg  { width: 10px; height: 10px; }
}

@media (max-width: 480px) {
  /* on very small screens only show parent + current */
  .bc-item:not(:nth-last-child(-n+2)) {
    display: none;
  }

  .bc-item--active { max-width: 140px; }
}
