.adb {
  position: relative;
  width: 100%;
  height: 904px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.adb__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.adb__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adb__bg--mobile {
  display: none;
}

.adb__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding-block-start: 80px;
}

.adb__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.adb__title {
  margin: 0;
  padding-block-start: var(--adb-h-pt, 0px);
  padding-block-end: var(--adb-h-pb, 16px);
  font-size: var(--adb-h-fs, 40px);
  font-weight: var(--adb-h-fw, 700);
  line-height: 1.2;
  color: rgb(var(--color-text));
  word-break: break-word;
}

.adb__subtitle {
  margin: 0;
  padding-block-start: var(--adb-s-pt, 0px);
  padding-block-end: var(--adb-s-pb, 32px);
  font-size: var(--adb-s-fs, 16px);
  font-weight: var(--adb-s-fw, 400);
  line-height: 1.6;
  color: rgb(var(--color-text));
  word-break: break-word;
}

.adb__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.adb-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(
    12.37deg,
    rgba(55, 55, 55, 1) 10.838%,
    rgba(81, 81, 81, 1) 47.225%,
    rgba(121, 121, 121, 1) 64.623%,
    rgba(66, 66, 66, 1) 94.987%
  );
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  cursor: pointer;
  min-width: 180px;
  box-sizing: border-box;
}

.adb-btn__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.adb-btn__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.adb-btn__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.adb-btn__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.adb-btn__desc {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.adb-btn__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 200ms ease;
  will-change: opacity;
}

.adb-btn__hover-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.adb-btn__hover::after {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M11 3v11M7 10l4 4 4-4' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 18h14' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.adb-btn:hover .adb-btn__hover {
  opacity: 1;
}

@media (max-width: 991px) {
  .adb {
    height: 480px;
  }

  .adb__bg--has-mobile {
    display: none;
  }

  .adb__bg--mobile {
    display: block;
  }

  .adb__title {
    padding-block-start: var(--adb-mh-pt, 0px);
    padding-block-end: var(--adb-mh-pb, 12px);
    font-size: var(--adb-mh-fs, 28px);
    font-weight: var(--adb-mh-fw, 700);
  }

  .adb__subtitle {
    padding-block-start: var(--adb-ms-pt, 0px);
    padding-block-end: var(--adb-ms-pb, 24px);
    font-size: var(--adb-ms-fs, 14px);
    font-weight: var(--adb-ms-fw, 400);
  }

  .adb__overlay {
    padding-block-start: 48px;
  }

  .adb__btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }

  .adb-btn {
    min-width: 0;
    width: 100%;
    padding: 12px 0 12px 12px;
    gap: 10px;
    box-sizing: border-box;
  }

  .adb-btn__icon {
    width: 24px;
    height: 24px;
  }

  .adb-btn__body {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .adb-btn__title,
  .adb-btn__desc {
    font-size: 14px;
    overflow-wrap: break-word;
  }

  .adb-btn__desc {
    font-size: 11px;
  }

  .adb-btn__hover-text {
    font-size: 14px;
  }

  .adb-btn__hover::after {
    width: 16px;
    height: 16px;
  }
}
