/* AADENA10 Expertise Manager — Front v0.2.1 */
.aad10-expert,
.aad10-expert * {
  box-sizing: border-box;
}

.aad10-expert {
  --aad10-expert-bg: #ffffff;
  --aad10-expert-soft: #f4f9fd;
  --aad10-expert-title: #071f3b;
  --aad10-expert-accent: #2995e8;
  --aad10-expert-text: #465a70;
  --aad10-expert-content: 1560px;
  --aad10-expert-visual: 47fr;
  --aad10-expert-copy: 53fr;
  --aad10-expert-gap: 72px;
  --aad10-expert-pad-desktop: 64px;
  --aad10-expert-pad-tablet: 52px;
  --aad10-expert-pad-mobile: 42px;
  --aad10-expert-ratio: 4/3;
  --aad10-expert-pos-desktop: center center;
  --aad10-expert-pos-mobile: center center;
  --aad10-expert-watermark-opacity: .06;
  --aad10-expert-watermark-width: 500px;
  --aad10-expert-watermark-x: -70px;
  --aad10-expert-watermark-y: 10px;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--aad10-expert-pad-desktop) 0;
  color: var(--aad10-expert-text);
  background:
    radial-gradient(circle at 9% 14%, rgba(41, 149, 232, .075), transparent 31%),
    radial-gradient(circle at 94% 82%, rgba(7, 31, 59, .035), transparent 25%),
    var(--aad10-expert-bg);
  font-family: inherit;
}

.aad10-expert-fullbleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.aad10-expert__watermark {
  position: absolute;
  z-index: -1;
  top: calc(50% + var(--aad10-expert-watermark-y));
  right: var(--aad10-expert-watermark-x);
  width: min(var(--aad10-expert-watermark-width), 38vw);
  max-height: 86%;
  object-fit: contain;
  transform: translateY(-50%);
  opacity: var(--aad10-expert-watermark-opacity);
  pointer-events: none;
  user-select: none;
}

.aad10-expert--image-right .aad10-expert__watermark {
  right: auto;
  left: var(--aad10-expert-watermark-x);
}

.aad10-expert__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), var(--aad10-expert-content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, var(--aad10-expert-visual)) minmax(0, var(--aad10-expert-copy));
  gap: var(--aad10-expert-gap);
  align-items: center;
}

.aad10-expert--image-right .aad10-expert__visual {
  order: 2;
}

.aad10-expert--image-right .aad10-expert__content {
  order: 1;
}

.aad10-expert__visual,
.aad10-expert__content {
  min-width: 0;
}

.aad10-expert__image-frame {
  position: relative;
  overflow: visible;
  aspect-ratio: var(--aad10-expert-ratio);
  border-radius: 10px;
}

.aad10-expert__image-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -18px;
  bottom: -18px;
  width: 58%;
  height: 60%;
  border-radius: 9px;
  border: 1px solid rgba(41, 149, 232, .12);
  background:
    linear-gradient(rgba(41, 149, 232, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 149, 232, .045) 1px, transparent 1px),
    var(--aad10-expert-soft);
  background-size: 28px 28px;
}

.aad10-expert__image-frame picture,
.aad10-expert__image-frame > picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.aad10-expert__image-frame > picture img {
  border-radius: 10px;
  object-fit: cover;
  object-position: var(--aad10-expert-pos-desktop);
  box-shadow: 0 24px 58px rgba(7, 31, 59, .12);
}

.aad10-expert__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid #dce7ef;
  border-radius: 10px;
  color: rgba(7, 31, 59, .28);
  background:
    linear-gradient(135deg, rgba(41, 149, 232, .06), rgba(7, 31, 59, .03)),
    var(--aad10-expert-soft);
}

.aad10-expert__placeholder svg {
  width: 86px;
  height: 86px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aad10-expert__badge {
  position: absolute;
  right: -18px;
  bottom: 24px;
  min-width: 128px;
  min-height: 102px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 15px 18px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-top: 4px solid var(--aad10-expert-accent);
  border-radius: 7px;
  color: #ffffff;
  background:
    linear-gradient(150deg, rgba(41, 149, 232, .12), transparent 48%),
    var(--aad10-expert-title);
  box-shadow: 0 16px 34px rgba(7, 31, 59, .24);
  text-align: center;
}

.aad10-expert__badge strong {
  font-size: 33px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.035em;
}

.aad10-expert__badge span {
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 760;
}

.aad10-expert__content {
  position: relative;
  max-width: 760px;
}

.aad10-expert--image-right .aad10-expert__content {
  margin-left: auto;
}

.aad10-expert__eyebrow {
  margin: 0 0 11px;
  color: var(--aad10-expert-accent);
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 850;
}

.aad10-expert__content h2 {
  max-width: 20ch;
  margin: 0;
  color: var(--aad10-expert-title);
  font-size: clamp(38px, 3.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -.038em;
  text-wrap: balance;
}

.aad10-expert__intro {
  max-width: 66ch;
  margin: 20px 0 0;
  color: #273f56;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  font-weight: 650;
}

.aad10-expert__body {
  max-width: 70ch;
  margin: 14px 0 0;
  color: var(--aad10-expert-text);
  font-size: 14px;
  line-height: 1.68;
}

.aad10-expert__proofs {
  margin-top: 23px;
  display: grid;
  gap: 9px;
}

.aad10-expert-proof {
  position: relative;
  min-height: 70px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 11px 14px;
  border: 1px solid rgba(7, 31, 59, .09);
  border-left: 3px solid rgba(41, 149, 232, .50);
  border-radius: 6px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 8px 22px rgba(7, 31, 59, .035);
  backdrop-filter: blur(2px);
}

.aad10-expert-proof--featured {
  border-left-color: var(--aad10-expert-accent);
  background: rgba(255, 255, 255, .82);
}

.aad10-expert-proof__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(41, 149, 232, .16);
  border-radius: 5px;
  color: var(--aad10-expert-accent);
  background: rgba(244, 249, 253, .86);
}

.aad10-expert-proof__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aad10-expert-proof__icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.aad10-expert-proof h3 {
  margin: 0;
  color: var(--aad10-expert-title);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 820;
}

.aad10-expert-proof p {
  margin: 4px 0 0;
  color: var(--aad10-expert-text);
  font-size: 12px;
  line-height: 1.42;
}

@media (hover: hover) and (pointer: fine) {
  .aad10-expert--proof-hover .aad10-expert-proof {
    transition:
      transform .2s ease,
      border-color .2s ease,
      background-color .2s ease,
      box-shadow .2s ease;
  }

  .aad10-expert--proof-hover .aad10-expert-proof__icon {
    transition:
      transform .2s ease,
      border-color .2s ease,
      background-color .2s ease;
  }

  .aad10-expert--proof-hover .aad10-expert-proof:hover {
    transform: translateY(-3px);
    border-color: rgba(41, 149, 232, .22);
    border-left-color: var(--aad10-expert-accent);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(7, 31, 59, .08);
  }

  .aad10-expert--proof-hover .aad10-expert-proof:hover .aad10-expert-proof__icon {
    transform: translateY(-1px);
    border-color: rgba(41, 149, 232, .30);
    background: rgba(41, 149, 232, .08);
  }
}

.aad10-expert__logos {
  margin-top: 20px;
  min-height: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.aad10-expert__logos a,
.aad10-expert__logos span {
  display: inline-flex;
  align-items: center;
}

.aad10-expert__logos img {
  max-width: 105px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .68;
  transition: filter .2s ease, opacity .2s ease;
}

.aad10-expert__logos a:hover img,
.aad10-expert__logos a:focus-visible img {
  filter: grayscale(0);
  opacity: 1;
}

.aad10-expert__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aad10-expert__btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 830;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.aad10-expert__btn:hover,
.aad10-expert__btn:focus-visible {
  transform: translateY(-1px);
}

.aad10-expert__btn:focus-visible {
  outline: 3px solid rgba(41, 149, 232, .24);
  outline-offset: 3px;
}

.aad10-expert__btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aad10-expert__btn--primary {
  color: #ffffff;
  background: var(--aad10-expert-accent);
  box-shadow: 0 11px 24px rgba(41, 149, 232, .18);
}

.aad10-expert__btn--secondary {
  color: var(--aad10-expert-title);
  border-color: #d1dce5;
  background: rgba(255, 255, 255, .90);
}

@media (min-width: 1101px) and (max-width: 1450px) {
  .aad10-expert {
    padding: var(--aad10-expert-pad-tablet) 0;
  }

  .aad10-expert__inner {
    width: min(calc(100% - 48px), var(--aad10-expert-content));
    grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
    gap: clamp(38px, 4.5vw, var(--aad10-expert-gap));
  }

  .aad10-expert__content h2 {
    font-size: clamp(36px, 3.2vw, 46px);
  }

  .aad10-expert__intro {
    margin-top: 17px;
    font-size: 16px;
  }

  .aad10-expert__proofs {
    margin-top: 19px;
  }

  .aad10-expert-proof {
    min-height: 66px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
}

@media (max-width: 1100px) {
  .aad10-expert {
    padding: var(--aad10-expert-pad-tablet) 0;
  }

  .aad10-expert__inner {
    width: min(calc(100% - 48px), 940px);
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .aad10-expert--image-right .aad10-expert__visual,
  .aad10-expert--image-right .aad10-expert__content {
    order: initial;
  }

  .aad10-expert__visual {
    width: min(100%, 820px);
    margin: 0 auto;
  }

  .aad10-expert__content,
  .aad10-expert--image-right .aad10-expert__content {
    max-width: none;
    margin: 0;
  }

  .aad10-expert__content h2 {
    max-width: 24ch;
  }

  .aad10-expert__proofs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .aad10-expert-proof {
    min-height: 154px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    padding: 14px;
  }

  .aad10-expert__watermark {
    width: min(var(--aad10-expert-watermark-width), 52vw);
  }
}

@media (max-width: 767px) {
  .aad10-expert {
    padding: var(--aad10-expert-pad-mobile) 0;
  }

  .aad10-expert__watermark {
    display: none;
  }

  .aad10-expert--watermark-mobile .aad10-expert__watermark {
    display: block;
    width: min(var(--aad10-expert-watermark-width), 82vw);
    opacity: calc(var(--aad10-expert-watermark-opacity) * .70);
  }

  .aad10-expert__inner {
    width: min(calc(100% - 32px), 720px);
    gap: 36px;
  }

  .aad10-expert__image-frame > picture img {
    object-position: var(--aad10-expert-pos-mobile);
  }

  .aad10-expert__image-frame::before {
    left: -10px;
    bottom: -10px;
  }

  .aad10-expert__badge {
    right: 10px;
    bottom: -18px;
    min-width: 112px;
    min-height: 86px;
    padding: 12px 14px;
  }

  .aad10-expert__badge strong {
    font-size: 27px;
  }

  .aad10-expert__badge span {
    font-size: 9px;
  }

  .aad10-expert__content {
    padding-top: 5px;
  }

  .aad10-expert__content h2 {
    max-width: 22ch;
    font-size: clamp(32px, 8.8vw, 43px);
  }

  .aad10-expert__intro {
    margin-top: 16px;
    font-size: 16px;
  }

  .aad10-expert__body {
    margin-top: 12px;
    font-size: 13.5px;
  }

  .aad10-expert__proofs {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }

  .aad10-expert-proof {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    align-content: center;
    padding: 11px 12px;
  }

  .aad10-expert__actions {
    margin-top: 21px;
  }
}

@media (max-width: 520px) {
  .aad10-expert__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aad10-expert__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aad10-expert__btn,
  .aad10-expert__logos img,
  .aad10-expert-proof,
  .aad10-expert-proof__icon {
    transition: none;
  }
}
