.fund-security {
  --fs-color-text: #2d333e;
  --fs-color-muted: #687587;
  --fs-color-green: #70b500;
  --fs-color-green-hover: #73bb00;
  --fs-color-gray: #f4f4f5;
  --fs-radius-btn: 8px;

  background: #fff;
  padding-bottom: 51px;
  color: var(--fs-color-text);
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

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

.fund-security img {
  max-width: 100%;
  height: auto;
  display: block;
}

.fund-security a {
  color: inherit;
}

.fund-security .content-wrapper {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.fund-security .fund-security__content {
  width: 100%;
}

/* Title / subtitle (не зависят от style.css лендинга) */
.fund-security .section-title,
.fund-security .fund-security__title,
#crypto-cfd-landing .fund-security .section-title,
#crypto-cfd-landing .fund-security .fund-security__title {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: var(--fs-color-text);
}

.fund-security .fund-security__title,
#crypto-cfd-landing .fund-security .fund-security__title {
  line-height: 52px;
  margin-bottom: 0;
}

.fund-security .section-subtitle,
#crypto-cfd-landing .fund-security .section-subtitle {
  margin: 0 0 19px;
  font-size: 14px;
  line-height: 20px;
  color: var(--fs-color-muted);
}

.fund-security .fund-security__left .section-subtitle,
#crypto-cfd-landing .fund-security .fund-security__left .section-subtitle {
  margin-bottom: 19px;
}

/* Button */
.fund-security .btn,
#crypto-cfd-landing .fund-security .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: 0;
  border-radius: var(--fs-radius-btn);
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  max-width: fit-content;
}

.fund-security .btn--green,
#crypto-cfd-landing .fund-security .btn--green {
  background: var(--fs-color-green);
  color: #fff;
}

.fund-security .btn--green:hover,
#crypto-cfd-landing .fund-security .btn--green:hover {
  background: var(--fs-color-green-hover);
  color: #fff;
  text-decoration: none;
}

.fund-security .fund-security__card {
  --fund-glow-x: 50%;
  --fund-glow-y: 50%;
  --fund-glow-opacity: 0.7;
  display: grid;
  grid-template-columns: 440px auto;
  column-gap: 18px;
  align-items: center;
  background: var(--fs-color-gray);
  border-radius: 32px;
  padding: 52px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Blue cursor glow */
.fund-security .fund-security__card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(
      circle 400px at var(--fund-glow-x) var(--fund-glow-y),
      rgba(25, 71, 151, 0.08) 0%,
      rgba(25, 71, 151, 0.00) 100%
    );
  opacity: var(--fund-glow-opacity, 0.7);
  transition: opacity 220ms ease;
}

.fund-security .fund-security__card > * {
  position: relative;
  z-index: 1;
}

.fund-security .fund-security__btn {
  width: 100%;
  max-width: 201px;
  grid-area: 2 / 1 / 3 / 3;
}

.fund-security .fund-security__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 22px;
  grid-area: 1 / 2 / 3 / 3;
}

.fund-security .fund-security__item {
  display: flex;
  gap: 22px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.fund-security .fund-security__item:hover {
  text-decoration: none;
}

.fund-security .fund-security__item-copy {
  display: block;
  min-width: 0;
}

.fund-security .fund-security__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.fund-security .fund-security__item-title {
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--fs-color-text);
  margin-bottom: 4px;
}

.fund-security .fund-security__item-text {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: var(--fs-color-muted);
}

@media (max-width: 1100px) {
  .fund-security .fund-security__card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 51px 33px;
    border-radius: 24px;
  }

  .fund-security .fund-security__btn {
    order: 3;
  }
}

@media (max-width: 900px) {
  .fund-security .content-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .fund-security .btn, #crypto-cfd-landing .fund-security .btn {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .fund-security {
    padding: 32px 0;
  }

  .fund-security .content-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .fund-security .section-title,
  .fund-security .fund-security__title,
  #crypto-cfd-landing .fund-security .section-title,
  #crypto-cfd-landing .fund-security .fund-security__title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 17px;
  }

  .fund-security .fund-security__left .section-subtitle, #crypto-cfd-landing .fund-security .fund-security__left .section-subtitle {
    text-align: center;
    margin-bottom: 20px;
  }

  .fund-security .fund-security__card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 51px 33px;
    border-radius: 24px;
  }

  .fund-security .fund-security__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fund-security .fund-security__item {
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }

  .fund-security .fund-security__item-text {
    font-size: 16px;
  }

  .fund-security .fund-security__btn {
    order: 3;
    margin-top: 16px;
    max-width: 188px;
    padding: 16px 12px;
  }

  .fund-security .btn {
    font-size: 20px;
    line-height: 24px;
  }

  .fund-security .fund-security__item-title {
    margin-bottom: 3px;
  }

  .fund-security .fund-security__item:last-child .fund-security__item-title {
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .fund-security .fund-security__card {
    padding: 40px 32px;
    gap: 32px;
  }
}