/* DESIGN.md — Luminous Sanctuary tokens + legacy aliases */
:root {
  --color-primary:              #293898;
  --color-primary-container:      #4351b1;
  --color-background:           #f8f9ff;
  --color-surface:              #f8f9ff;
  --color-surface-container:    #e9eef9;
  --color-surface-container-low: #eef4ff;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-highest: #dde3ee;
  --color-on-surface:             #161c24;
  --color-on-surface-variant:     #454652;
  --color-on-primary:             #ffffff;
  --color-outline-variant:        #c5c5d4;
  --color-secondary-fixed:        #ebdcff;
  --color-secondary-fixed-dim:  #d4bbff;
  --color-primary-fixed:          #dfe0ff;
  --color-primary-fixed-dim:      #bbc3ff;

  /* Mapped brand (existing block / component CSS) */
  --brand-primary:   var(--color-primary);
  --brand-hover:     #5168c4;
  --brand-dark:      #1c2552;
  --brand-light:     var(--color-primary-fixed);
  --brand-mid-tint:  var(--color-surface-container);

  --navbar-bg:          rgba(248, 249, 255, 0.82);
  --navbar-text:        var(--color-on-surface);
  --navbar-text-muted:  var(--color-on-surface-variant);
  --navbar-text-active: var(--color-primary);

  --navbar-bg-color:    var(--color-primary);
  --navbar-color:       #eef0ff;
  --navbar-color-active: var(--color-secondary-fixed);

  --body-text:  var(--color-on-surface);
  --muted-text: var(--color-on-surface-variant);
  --surface:    var(--color-surface);

  --saknes-ambient-shadow: 0 24px 64px rgba(41, 56, 152, 0.06);
  --saknes-ghost-outline:  1px solid color-mix(in srgb, var(--color-outline-variant) 20%, transparent);
}

/* ── Base typography (Manrope — DESIGN.md) ───────────────────────────────── */
html {
  font-size: 18px;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--body-text);
}

h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 2.125rem; font-weight: 800; }
h3 { font-size: 1.375rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

/* Long-form articles — soft radial (DESIGN.md) */
body.single-news .container.saknes-main {
  background: radial-gradient(ellipse 85% 45% at 50% 0%, color-mix(in srgb, var(--color-secondary-fixed-dim) 10%, transparent) 0%, transparent 55%);
  border-radius: 0 0 20px 20px;
}

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* #region navbar */
.saknes-header {
  position: relative;
  z-index: 1000;
}

.saknes-navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-outline-variant) 22%, transparent);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--color-primary) 4%, transparent);
}

.saknes-navbar .container-fluid {
  min-height: 116px;
  display: flex;
  align-items: center;
}

.saknes-brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

.site-logo {
  display: block;
  width: auto;
  height: 104px;
  max-width: 100%;
  object-fit: contain;
}

.saknes-brand:hover {
  text-decoration: none;
}

.saknes-navbar .navbar-nav {
  margin-left: auto;
}

.saknes-navbar .nav-link {
  font-weight: 600;
  padding: 2rem 1rem;
  color: var(--navbar-text);
  transition: color 0.2s ease;
}

.saknes-navbar .navbar-nav .nav-link:focus,
.saknes-navbar .navbar-nav .nav-link:hover,
.saknes-navbar .navbar-nav .nav-link.active {
  color: var(--navbar-text-active);
}

.saknes-navbar .dropdown-menu {
  border: 1px solid color-mix(in srgb, var(--color-outline-variant) 25%, transparent);
  border-radius: 12px;
  margin-top: 4px;
  background: color-mix(in srgb, var(--color-surface-container-lowest) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--saknes-ambient-shadow);
  /* Scrollable when the diagnosis list is long */
  max-height: min(70vh, 480px);
  overflow-y: auto;
  overflow-x: hidden;
}

.saknes-navbar .dropdown-item {
  font-weight: 600;
  padding: 0.7rem 1rem;
  color: var(--navbar-text);
  transition: background 0.15s ease, color 0.15s ease;
}

.saknes-navbar .dropdown-item:hover,
.saknes-navbar .dropdown-item:focus {
  background: var(--brand-light);
  color: var(--brand-primary);
}

.saknes-navbar-toggler {
  width: 48px;
  height: 48px;
  border: 2px solid var(--brand-primary) !important;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
}

.saknes-navbar-toggler:focus {
  box-shadow: none;
}

.saknes-burger-icon {
  width: 26px;
  height: 26px;
  display: block;
  background-color: var(--brand-primary);

  -webkit-mask: url("../img/horizontal-burger-menu.svg") no-repeat center / contain;
  mask: url("../img/horizontal-burger-menu.svg") no-repeat center / contain;
}

/* Donate button — filled purple */
.saknes-donate-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #ff4d6d;
  vertical-align: middle;
}

.saknes-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 1.5rem;
  padding: 0.75rem 1.35rem;
  min-height: 44px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-container) 100%);
  border: none;
  border-radius: 0.5rem;
  color: var(--color-on-primary);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--color-primary) 18%, transparent);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.saknes-donate-btn:hover {
  filter: brightness(1.06);
  color: var(--color-on-primary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 22px 56px color-mix(in srgb, var(--color-primary) 22%, transparent);
}


@media (max-width: 991.98px) {
  .site-logo {
    height: 76px;
  }

  .saknes-navbar .container-fluid {
    min-height: 92px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .saknes-navbar .navbar-collapse {
    width: 100%;
    margin-top: 0.5rem;
    background: color-mix(in srgb, var(--color-surface-container-lowest) 94%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid color-mix(in srgb, var(--color-outline-variant) 22%, transparent);
    padding: 0.75rem 0 1rem;
    border-radius: 0 0 12px 12px;
  }

  .saknes-navbar .navbar-nav {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .saknes-navbar .nav-item {
    width: 100%;
  }

  .saknes-navbar .nav-link {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 0;
    border-bottom: none;
  }

  .saknes-navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    width: 100%;
    box-shadow: none;
    border: 0;
    background: var(--color-surface-container-low);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
  }

  .saknes-donate-btn {
    margin-left: 0;
    margin-top: 1rem;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .saknes-navbar .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* #endregion */

/* #region Page hero */

.saknes-page-hero {
  position: relative;
  isolation: isolate;
  min-height: 44vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-container) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.saknes-page-hero--front {
  min-height: 46vh;
}

/* Pure gradient when no bitmap / SVG */
.saknes-page-hero:not(.saknes-page-hero--has-image) {
  background: linear-gradient(125deg, var(--color-primary) 0%, var(--color-primary-container) 55%, #5168c4 100%);
}

.saknes-page-hero--has-image {
  background-color: #1a2258;
}

/* Editorial texture on gradient-only heroes */
.saknes-page-hero:not(.saknes-page-hero--has-image)::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 15% 20%, color-mix(in srgb, var(--color-secondary-fixed-dim) 14%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 88%, color-mix(in srgb, var(--color-primary-fixed) 12%, transparent) 0%, transparent 50%);
  pointer-events: none;
}

/* Readable scrim on real photos & Customizer images only */
.saknes-page-hero--has-image:not(.saknes-page-hero--theme-fallback)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(22, 28, 36, 0.58) 0%,
    rgba(41, 56, 152, 0.38) 48%,
    rgba(22, 28, 36, 0.22) 100%
  );
  pointer-events: none;
}

/* Bundled SVG heroes — lighter veil so artwork stays visible */
.saknes-page-hero--theme-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(22, 28, 36, 0.42) 0%,
    rgba(41, 56, 152, 0.28) 55%,
    rgba(22, 28, 36, 0.18) 100%
  );
  pointer-events: none;
}

.saknes-page-hero__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  color: var(--color-on-primary);
}

@media (min-width: 992px) {
  .saknes-page-hero__content {
    padding-left: clamp(0.5rem, 3vw, 2.5rem);
  }
}


.saknes-page-hero__text {
  max-width: min(40rem, 100%);
}

@media (min-width: 1200px) {
  .saknes-page-hero__text {
    transform: translateX(0.35rem);
  }
}

.saknes-page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-on-primary);
  margin: 0 0 0.65rem;
  text-shadow: 0 4px 32px rgba(22, 28, 36, 0.25);
}

.saknes-page-hero__subtitle {
  font-size: clamp(1rem, 2.1vw, 1.375rem);
  color: color-mix(in srgb, var(--color-on-primary) 88%, transparent);
  margin: 0.35rem 0 0;
  max-width: 36rem;
  line-height: 1.55;
  font-weight: 500;
}

/* #endregion */

/* #region Page header (legacy, kept for page-header.php usage) */

.page-header-title {
    font-size: 2.5rem;
    margin-bottom: 15px !important;
}

.page-header-description {
    margin-bottom: 60px;
    max-width: 700px;
}

.page-header-description p:last-child {
    margin-bottom: 0;
}

/* #endregion */

/* #region Useful links page */

.useful-links-page {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.institution-categories-container {
  background-color: var(--color-surface-container-low);
  margin-top: 0;
}

.institution-category-card {
  height: 100%;
  color: var(--brand-primary);
}

.institution-category-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--brand-primary);
}

.institution-item {
  padding: 1.25rem 1.5rem;
  margin: 0 0 1rem 0;
  border: none;
  border-radius: 12px;
  background: var(--color-surface-container-lowest);
  box-shadow: var(--saknes-ambient-shadow);
}

.institution-item-title {
  font-size: 1.0rem;
  font-weight: 700;
  margin-bottom: 10px;

}

.institution-item-description {
  margin-bottom: 10px;
  line-height: 1.1;
}

.institution-item-link-wrap {
  line-height: 1.1;
}

.institution-item-link-prefix {
  font-weight: bold;
}

.institution-item-link {
  text-decoration: none;
  word-break: break-word;
  color: var(--brand-primary);
}

/* #endregion */

/* ── In-content page title (when hero title is suppressed) ───────────────── */
.saknes-content-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--body-text);
  margin: 0 0 2rem;
}

/* #region Back links & entry utilities */

.saknes-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.saknes-back-link:hover {
  color: var(--brand-hover);
  text-decoration: underline;
}

/* ── Inter-section breathing room on content pages ───────────────────────── */
.saknes-main .wp-block-saknes-news-list,
.saknes-main .wp-block-saknes-events-list,
.saknes-main .wp-block-saknes-projekti-list {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-outline-variant);
}

/* First block on the page should not add extra top margin */
.saknes-main > .wp-block-saknes-news-list:first-child,
.saknes-main > .wp-block-saknes-events-list:first-child,
.saknes-main > .wp-block-saknes-projekti-list:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* ── Front page intro priorities ────────────────────────────────────────── */

.saknes-priorities {
  margin: 2.5rem 0 2rem;
  padding: 2.25rem 2.5rem 2.5rem;
  background: linear-gradient(135deg, var(--color-primary-fixed) 0%, var(--color-surface-container-low) 100%);
  border-radius: 20px;
  border: 1px solid var(--color-primary-fixed-dim);
}

.saknes-priorities__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: color-mix(in srgb, var(--color-primary-fixed-dim) 70%, transparent);
  border-radius: 20px;
  padding: 0.25rem 0.85rem;
  margin-bottom: 1.4rem;
}

.saknes-priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.saknes-priority-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem 1.75rem;
  background: var(--color-surface-container-lowest);
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(41, 56, 152, 0.1), 0 1px 4px rgba(41, 56, 152, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.saknes-priority-card:hover {
  box-shadow: 0 10px 40px rgba(41, 56, 152, 0.18), 0 2px 8px rgba(41, 56, 152, 0.08);
  transform: translateY(-3px);
}

.saknes-priority-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--color-primary-fixed);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.saknes-priority-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--body-text);
  line-height: 1.3;
}

.saknes-priority-card__desc {
  font-size: 0.84rem;
  color: var(--muted-text);
  line-height: 1.6;
  flex: 1;
}

.saknes-intro-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface-container-low);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.6;
}

.saknes-intro-cta a {
  color: var(--brand-primary);
  font-weight: 600;
}

@media (max-width: 575px) {
  .saknes-priorities {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .saknes-priorities-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .saknes-priorities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Par mums intro redesign ─────────────────────────────────────────────── */

.saknes-intro-lead {
  font-size: 1.18rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--body-text);
  padding: 1.1rem 1.4rem 1.1rem 1.4rem;
  border-left: 4px solid var(--brand-primary);
  background: var(--brand-light);
  border-radius: 0 12px 12px 0;
  margin-bottom: 2rem !important;
  max-width: none;
}

.saknes-awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.saknes-award-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-left: 4px solid var(--brand-primary);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  box-shadow: var(--saknes-ambient-shadow);
}

.saknes-award-card__year {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-primary);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.saknes-award-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.saknes-award-card__org {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-text);
}

.saknes-award-card__name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--body-text);
}

.saknes-award-card__desc {
  font-size: 0.8rem;
  color: var(--muted-text);
  line-height: 1.45;
}

@media (max-width: 575px) {
  .saknes-awards-grid {
    grid-template-columns: 1fr;
  }
}

/* Remove WP default block content-width constraint on front-end */
.saknes-main .wp-block,
.saknes-main .wp-block-group,
.saknes-main figure.wp-block-image,
.saknes-main .wp-block-paragraph,
.saknes-main .wp-block-heading,
.saknes-main .wp-block-list,
.saknes-main .wp-block-html {
  max-width: none !important;
}

.saknes-entry-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 2rem 0 0.75rem;
  color: var(--brand-primary);
}

.saknes-entry-content h2:first-child {
  margin-top: 0;
}

.saknes-diagnosis-sponsor__logo {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.saknes-diagnosis-sponsor.border-top {
  border-top: none !important;
  margin-top: 2.5rem;
  padding: 1.5rem 1.25rem 1.25rem;
  background: var(--color-surface-container-low);
  border-radius: 12px;
}

/* #endregion */

/* #region Diagnoses page */

/* ── Diagnosis catalog list ───────────────────────────────────────────────── */
.saknes-diagnosis-catalog__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.diagnosis-item {
    border-radius: 14px;
    background: var(--color-surface-container-lowest);
    border: 1px solid color-mix(in srgb, var(--color-outline-variant) 14%, transparent);
    box-shadow: var(--saknes-ambient-shadow);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}

.diagnosis-item:hover {
    box-shadow: 0 6px 28px color-mix(in srgb, var(--color-primary) 10%, transparent);
    transform: translateY(-2px);
}

/* Inner: clickable row — image + body side-by-side */
.diagnosis-item__inner {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
}

.diagnosis-item__thumb-wrap {
    flex: 0 0 160px;
    overflow: hidden;
    background: var(--color-surface-container-low);
}

.diagnosis-item__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.diagnosis-item:hover .diagnosis-item__thumb {
    transform: scale(1.04);
}

.diagnosis-item__body {
    flex: 1;
    padding: 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    justify-content: center;
}

.diagnosis-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--body-text);
    margin: 0;
}

.diagnosis-item__excerpt {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.6;
    margin: 0;
    max-width: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.diagnosis-item__cta {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.02em;
    margin-top: 0.1rem;
    transition: color 0.2s ease;
}

.diagnosis-item:hover .diagnosis-item__cta {
    color: var(--brand-hover);
}

/* Mobile: stack thumb above body */
@media (max-width: 600px) {
    .diagnosis-item__inner {
        flex-direction: column;
    }

    .diagnosis-item__thumb-wrap {
        flex: none;
        height: 160px;
        width: 100%;
    }
}

.saknes-diagnosis-catalog__search .form-label {
  font-weight: 600;
  color: var(--body-text, #1e293b);
}

.saknes-diagnosis-catalog__az-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.saknes-diagnosis-catalog__az-link {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  background: var(--color-surface-container-low, #f5f3ff);
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.saknes-diagnosis-catalog__az-link:hover {
  background: var(--brand-light, #f5f3ff);
  color: var(--brand-hover);
  transform: translateY(-1px);
}

.saknes-diagnosis-catalog__letter-heading {
  margin-bottom: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--brand-mid-tint, #ede9fe);
  color: var(--brand-primary);
}

/* Contact form layout + CF7 skin: blocks-contact-page.css (.saknes-contact-layout) */

/* #endregion */

/* #region About US */

.about-us-header-title {
  font-size: 2.5rem;
  margin-bottom: 15px !important;
}

.about-values-section {
  margin-top: 3rem;
}

.about-value-card {
  padding: 1.5rem 1.75rem;
  border: none;
  border-radius: 14px;
  background: var(--color-surface-container-lowest);
  box-shadow: var(--saknes-ambient-shadow);
}

.about-value-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-value-description {
  line-height: 1.5;
}

.annual-reports-block__title {
  margin: 0 0 24px;
  font-size: 2rem;
  font-weight: 700;
}

.annual-reports-block__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.annual-reports-block__content a {
  text-decoration: none;
}

.annual-reports-block__content a:hover {
  text-decoration: underline;
}

/* #endregion */

/* #region Donation page */

.saknes-donation-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--body-text, #1e293b);
  max-width: none;
  margin-bottom: 2.5rem;
}

.saknes-donation-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 767.98px) {
  .saknes-donation-benefits {
    grid-template-columns: 1fr;
  }
}

.saknes-donation-info {
  background: var(--color-primary-fixed);
  border: none;
  border-radius: 14px;
  padding: 2rem 2.25rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--saknes-ambient-shadow);
}

.saknes-donation-info__title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-primary, #5b21b6);
  margin: 0 0 1.25rem;
}

.saknes-donation-info__table {
  width: 100%;
  border-collapse: collapse;
}

.saknes-donation-info__table tr {
  border-bottom: 1px solid color-mix(in srgb, var(--color-outline-variant) 22%, transparent);
}

.saknes-donation-info__table tr:last-child {
  border-bottom: none;
}

.saknes-donation-info__table th {
  text-align: left;
  padding: 0.6rem 1rem 0.6rem 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-text, #64748b);
  white-space: nowrap;
  width: 1%;
}

.saknes-donation-info__table td {
  padding: 0.6rem 0;
  font-weight: 600;
  color: var(--body-text, #1e293b);
  font-size: 0.95rem;
}

.saknes-donation-iban {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--brand-primary, #5b21b6);
  font-weight: 700;
}

/* #endregion */

/* #region Footer */

.saknes-footer {
  background: linear-gradient(180deg, #1a2258 0%, var(--brand-dark) 45%, #141b40 100%);
  color: var(--navbar-color);
  padding: 0 0 30px;
}

/* Supporters bar */
.saknes-footer-supporters {
  padding: 24px 0;
  border-bottom: none;
  margin-bottom: 40px;
  background: color-mix(in srgb, #ffffff 5%, transparent);
}

.saknes-footer-supporters__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 12px;
  text-align: center;
}

.saknes-footer-supporters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.saknes-footer-supporter {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid color-mix(in srgb, #ffffff 14%, transparent);
  transition: background 0.2s ease, color 0.2s ease;
}

.saknes-footer-supporter:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.saknes-footer-supporter--logo {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.92);
}

.saknes-footer-supporter--logo:hover {
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
}

.saknes-footer-supporter__img {
  display: block;
  height: 47px;
  width: 143px;
  object-fit: contain;
  object-position: center;
}

.saknes-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 0;
}

.saknes-footer-title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navbar-color);
}

.saknes-footer-description,
.saknes-footer-contact-list li,
.saknes-footer-links,
.saknes-footer-links a,
.saknes-footer-socials a {
  color:  var(--navbar-color);
}

.saknes-footer-description {
  margin: 0;
  line-height: 1.3;
}

.saknes-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.saknes-footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


.saknes-footer-links a,
.saknes-footer-socials a {
  text-decoration: none;
  width: max-content;
}

.saknes-footer-links a:hover,
.saknes-footer-socials a:hover {
  color: var(--navbar-color-active);
  text-decoration: underline;
}

.saknes-footer-socials {
  display: flex;
  flex-direction: column;
}

.saknes-footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--navbar-color) 22%, transparent);
  text-align: center;
  color: var(--navbar-color);
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .saknes-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 575.98px) {
  .saknes-footer {
    padding: 50px 0 24px 24px;
  }

  .saknes-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* #endregion */
/* ── News list block ──────────────────────────────────────────────────────── */
.saknes-archive-item {
  padding: 1.35rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--color-surface-container-lowest);
  box-shadow: var(--saknes-ambient-shadow);
  border: 1px solid color-mix(in srgb, var(--color-outline-variant) 14%, transparent);
}

.saknes-archive-thumb {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--brand-mid-tint, #ede9fe);
  display: block;
}
.saknes-archive-thumb-link { display: block; }

.saknes-archive-item h2 a,
.saknes-archive-item h3 a {
  color: var(--body-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.saknes-archive-item h2 a:hover,
.saknes-archive-item h3 a:hover { color: var(--brand-primary); }

.saknes-archive-excerpt {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}
.saknes-archive-excerpt p { margin: 0; max-width: none; }

.saknes-news-list__header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.saknes-news-list__title {
  margin: 0;
}

.saknes-news-list__header-link {
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, gap 0.2s ease;
}

.saknes-news-list__header-link:hover {
  color: var(--brand-hover);
}

/* Legacy bottom-of-list more button (kept for other uses) */
.saknes-news-list__more {
  text-align: center;
  padding-top: 1.5rem;
}
.saknes-news-list__more-link {
  display: inline-block;
  padding: 0.65rem 2rem;
  min-height: 44px;
  line-height: 1.4;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-container) 100%);
  color: var(--color-on-primary);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--color-primary) 16%, transparent);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.saknes-news-list__more-link:hover {
  filter: brightness(1.05);
  color: var(--color-on-primary);
  transform: translateY(-2px);
}

/* ── News archive listing ─────────────────────────────────────────────────── */
.saknes-news-archive {
  display: flex;
  flex-direction: column;
}

.saknes-archive-item__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 600px) {
  .saknes-archive-item__inner {
    grid-template-columns: 1fr;
  }
}

.saknes-archive-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.saknes-archive-meta {
  font-size: 0.82rem;
  color: var(--muted-text);
  margin: 0 0 0.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── External link list items ─────────────────────────────────────────────── */
.external-link a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
}

.external-link a::after {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  flex-shrink: 0;
  background-color: currentColor;
  opacity: 0.55;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE OVERRIDES  ≤ 767px
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 767.98px) {

  /* ── Base scale ─────────────────────────────────────── */
  html { font-size: 16px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.1rem; }

  /* ── Hero ───────────────────────────────────────────── */
  .saknes-page-hero {
    min-height: 32vh;
  }
  .saknes-page-hero--front {
    min-height: 36vh;
  }
  .saknes-page-hero__content {
    padding: 2.5rem 0;
  }
  .saknes-page-hero__title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  .saknes-page-hero__subtitle {
    font-size: 0.95rem;
  }

  /* ── Section spacing ────────────────────────────────── */
  .container.py-5,
  .container-xxl.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* ── News archive items ─────────────────────────────── */
  .saknes-archive-item__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .saknes-archive-thumb {
    aspect-ratio: 16 / 9;
    max-height: 220px;
  }

  /* News block (front page) — image full width, capped height */
  .saknes-news-list .col-md-4,
  .saknes-news-list .col-lg-3 {
    width: 100%;
  }
  .saknes-news-list .saknes-archive-thumb {
    max-height: 200px;
    aspect-ratio: 16 / 9;
  }

  /* ── PDF callout ────────────────────────────────────── */
  .saknes-pdf-callout {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .saknes-pdf-callout__cta {
    width: 100%;
    justify-content: flex-end;
  }

  /* ── Diagnosis layout: hide TOC already handled, ensure padding ── */
  .saknes-diagnosis-wrap {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .saknes-diagnosis-section {
    margin-bottom: 2.5rem;
  }
  .saknes-diagnosis-section__heading {
    font-size: 1.2rem;
  }

  /* ── Footer ─────────────────────────────────────────── */
  .saknes-footer {
    padding: 40px 0 20px;
  }
}

/* ── News card (limited / carousel mode) ─────────────────────────────────── */
.saknes-news-card {
  background: var(--color-surface-container-lowest);
  border: 1px solid color-mix(in srgb, var(--color-outline-variant) 15%, transparent);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--saknes-ambient-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.saknes-news-card:hover {
  box-shadow: 0 28px 64px color-mix(in srgb, var(--color-primary-fixed-dim) 35%, transparent);
  transform: translateY(-2px);
}

.saknes-news-card__thumb-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--brand-mid-tint, #ede9fe);
}

.saknes-news-card__thumb-wrap a {
  display: block;
  height: 100%;
}

.saknes-news-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.saknes-news-card:hover .saknes-news-card__thumb {
  transform: scale(1.04);
}

.saknes-news-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.saknes-news-card__date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-text, #64748b);
  margin: 0;
}

.saknes-news-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0.1rem 0 0;
  color: var(--body-text, #1e293b);
}

.saknes-news-card__title a {
  color: inherit;
  text-decoration: none;
}

.saknes-news-card__title a:hover {
  color: var(--brand-primary, #5b21b6);
}

.saknes-news-card__excerpt {
  font-size: 0.88rem;
  color: var(--muted-text, #64748b);
  line-height: 1.65;
  margin-top: 0.2rem;
}

.saknes-news-card__excerpt p {
  margin: 0;
  font-size: inherit;
  color: inherit;
  max-width: none;
}

/* ── News carousel controls ──────────────────────────────────────────────── */
.saknes-news-carousel {
  position: relative;
  padding-bottom: 3rem; /* space for controls */
  overflow: hidden;     /* clip sliding items during animation */
  border-radius: 16px;  /* match card radius so corners stay clean */
}

.saknes-news-carousel .carousel-inner {
  overflow: hidden;
}

.saknes-news-carousel__btn {
  position: absolute;
  bottom: 0;
  top: auto !important;
  transform: none !important;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-container) 100%);
  opacity: 1;
  border: none;
  box-shadow: 0 12px 32px color-mix(in srgb, var(--color-primary) 18%, transparent);
}

.saknes-news-carousel__btn:hover {
  filter: brightness(1.06);
}

.carousel-control-prev.saknes-news-carousel__btn {
  left: 0;
}

.carousel-control-next.saknes-news-carousel__btn {
  left: 3rem;
  right: auto;
}

/* ══════════════════════════════════════════════════════════════════
   SMALL MOBILE  ≤ 480px
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  html { font-size: 15px; }

  .saknes-page-hero {
    min-height: 28vh;
  }
  .saknes-page-hero--front {
    min-height: 32vh;
  }

  /* Tighter horizontal padding on very small screens */
  .container,
  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Donate button full width in mobile menu */
  .saknes-donate-btn {
    width: 100%;
    justify-content: center;
  }

  /* Diagnosis list items smaller font */
  .saknes-diagnosis-section__body > ul li,
  .saknes-diagnosis-section__body .wp-block-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem 0.5rem calc(0.75rem + 18px + 0.5rem);
  }

  /* File list smaller */
  .saknes-file-list__link {
    font-size: 0.9rem;
  }

  /* Useful links container less padding */
  .saknes-useful-links-container {
    padding: 1.25rem 1rem 1.5rem;
  }
}

/* ── Logo download cards (Kontakti page) ────────────────────────────────── */
.saknes-logo-downloads {
  margin-top: 3.5rem;
}

.saknes-logo-downloads__title {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
  margin: 0 0 0.5rem;
}

.saknes-logo-downloads__intro {
  font-size: 0.98rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 60ch;
}

.saknes-logo-downloads__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.saknes-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem 1rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--color-outline-variant, #c5c5d4) 30%, transparent);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.saknes-logo-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 10px 28px rgba(91, 33, 182, 0.12);
  transform: translateY(-2px);
}

.saknes-logo-card__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--brand-light);
  border-radius: 10px;
  margin-bottom: 0.4rem;
  padding: 0.75rem;
}

.saknes-logo-card__preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.saknes-logo-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--body-text);
}

.saknes-logo-card__detail {
  font-size: 0.78rem;
  color: var(--muted-text);
  letter-spacing: 0.02em;
}

.saknes-logo-card__cta {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.saknes-logo-card:hover .saknes-logo-card__cta {
  color: var(--brand-hover);
}

@media (max-width: 767.98px) {
  .saknes-logo-downloads__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Breadcrumbs ────────────────────────────────────────────────────────── */
.saknes-breadcrumbs {
  font-size: 0.9rem;
}

.saknes-breadcrumbs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
}

.saknes-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  color: var(--muted-text);
  white-space: nowrap;
  max-width: 100%;
}

.saknes-breadcrumbs__item:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: var(--muted-text);
  opacity: 0.6;
}

.saknes-breadcrumbs__item a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.saknes-breadcrumbs__item a:hover,
.saknes-breadcrumbs__item a:focus {
  color: var(--brand-hover);
  text-decoration: underline;
}

.saknes-breadcrumbs__item[aria-current="page"] span {
  color: var(--body-text);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: min(60ch, 100%);
}

/* ── 404 page ───────────────────────────────────────────────────────────── */
.saknes-404__lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 0.75rem;
}

.saknes-404__hint {
  color: var(--muted-text);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 auto 1.5rem;
}

.saknes-404__shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1rem;
}

.saknes-404__shortcut {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--brand-light);
  color: var(--brand-primary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.saknes-404__shortcut:hover,
.saknes-404__shortcut:focus {
  background: var(--brand-primary);
  color: #ffffff;
  transform: translateY(-1px);
  text-decoration: none;
}

/* ── Link cards (purple pill + globe icon, reusable anywhere) ─── */

.saknes-link-cards {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
}

.saknes-link-cards li {
  position: relative;
  display: block;
  padding: 0.6rem 0.85rem 0.6rem calc(0.85rem + 16px + 0.65rem);
  background: var(--color-primary-fixed);
  border-radius: 10px;
  box-shadow: inset 3px 0 0 0 var(--color-primary);
  line-height: 1.55;
  font-size: 0.97rem;
}

.saknes-link-cards li::before {
  content: '';
  position: absolute;
  left: 0.85rem;
  top: calc(0.6rem + 0.25rem);
  width: 16px;
  height: 16px;
  background-color: var(--brand-primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M21.721 12.752a9.711 9.711 0 0 0-.945-5.003 12.754 12.754 0 0 1-4.339 2.708 18.991 18.991 0 0 1-.214 4.772 17.165 17.165 0 0 0 5.498-2.477ZM14.634 15.55a17.324 17.324 0 0 0 .332-4.647c-.952.227-1.945.347-2.966.347-1.021 0-2.014-.12-2.966-.347a17.515 17.515 0 0 0 .332 4.647 17.385 17.385 0 0 0 5.268 0ZM9.772 17.119a18.963 18.963 0 0 0 4.456 0A17.182 17.182 0 0 1 12 21.724a17.18 17.18 0 0 1-2.228-4.605ZM7.777 15.23a18.87 18.87 0 0 1-.214-4.774 12.753 12.753 0 0 1-4.34-2.708 9.711 9.711 0 0 0-.944 5.004 17.165 17.165 0 0 0 5.498 2.477ZM21.356 14.752a9.765 9.765 0 0 1-7.478 6.817 18.64 18.64 0 0 0 1.988-4.718 18.627 18.627 0 0 0 5.49-2.098ZM2.644 14.752c1.682.971 3.53 1.688 5.49 2.099a18.64 18.64 0 0 0 1.988 4.718 9.765 9.765 0 0 1-7.478-6.816ZM13.878 2.43a9.755 9.755 0 0 1 6.116 3.986 11.267 11.267 0 0 1-3.746 2.504 18.63 18.63 0 0 0-2.37-6.49ZM12 2.276a17.152 17.152 0 0 1 2.805 7.121c-.897.23-1.837.353-2.805.353-.968 0-1.908-.122-2.805-.353A17.151 17.151 0 0 1 12 2.276ZM10.122 2.43a18.629 18.629 0 0 0-2.37 6.49 11.266 11.266 0 0 1-3.746-2.504 9.754 9.754 0 0 1 6.116-3.985Z'/%3E%3C/svg%3E") no-repeat center / 16px 16px;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M21.721 12.752a9.711 9.711 0 0 0-.945-5.003 12.754 12.754 0 0 1-4.339 2.708 18.991 18.991 0 0 1-.214 4.772 17.165 17.165 0 0 0 5.498-2.477ZM14.634 15.55a17.324 17.324 0 0 0 .332-4.647c-.952.227-1.945.347-2.966.347-1.021 0-2.014-.12-2.966-.347a17.515 17.515 0 0 0 .332 4.647 17.385 17.385 0 0 0 5.268 0ZM9.772 17.119a18.963 18.963 0 0 0 4.456 0A17.182 17.182 0 0 1 12 21.724a17.18 17.18 0 0 1-2.228-4.605ZM7.777 15.23a18.87 18.87 0 0 1-.214-4.774 12.753 12.753 0 0 1-4.34-2.708 9.711 9.711 0 0 0-.944 5.004 17.165 17.165 0 0 0 5.498 2.477ZM21.356 14.752a9.765 9.765 0 0 1-7.478 6.817 18.64 18.64 0 0 0 1.988-4.718 18.627 18.627 0 0 0 5.49-2.098ZM2.644 14.752c1.682.971 3.53 1.688 5.49 2.099a18.64 18.64 0 0 0 1.988 4.718 9.765 9.765 0 0 1-7.478-6.816ZM13.878 2.43a9.755 9.755 0 0 1 6.116 3.986 11.267 11.267 0 0 1-3.746 2.504 18.63 18.63 0 0 0-2.37-6.49ZM12 2.276a17.152 17.152 0 0 1 2.805 7.121c-.897.23-1.837.353-2.805.353-.968 0-1.908-.122-2.805-.353A17.151 17.151 0 0 1 12 2.276ZM10.122 2.43a18.629 18.629 0 0 0-2.37 6.49 11.266 11.266 0 0 1-3.746-2.504 9.754 9.754 0 0 1 6.116-3.985Z'/%3E%3C/svg%3E") no-repeat center / 16px 16px;
}
