
.learn-feature-panel {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  overflow: hidden;
}

.learn-feature-panel__intro {
  background: linear-gradient(135deg, #00122a 0%, #001a3d 100%);
  padding: 2.5rem 2rem;
}

.learn-feature-panel__links {
  background: #eef4fc !important;
  padding: 2.5rem;
  display: flex;
}

.learn-feature-panel__content {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  gap: 0 2.5rem;
  width: 100%;
}

.learn-feature-panel__divider {
  align-self: stretch;
  width: 1px;
  background: rgba(148, 163, 184, 0.35);
}

  .learn-dot-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

.learn-dot-indicators span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: black;
  display: inline-block;
}


.learn-nav {
  max-width: 640px;
}

.learn-nav__item {
  min-height: 54px;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.learn-nav__item:hover {
  background-color: rgba(80, 72, 228, 0.12);
}

.learn-nav__divider {
  width: 1px;
  background-color: rgba(80, 72, 228, 0.25);
}

.learn-helpful {
  display: inline-flex;
  border: 1px solid #5048e4;
  border-radius: 999px;
  overflow: hidden;
  background-color: rgba(80, 72, 228, 0.08);
}

.learn-helpful__wrapper {
  display: flex;
  align-items: stretch;
}

.learn-helpful__info {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  border-right: 1px solid rgba(80, 72, 228, 0.2);
}

.learn-helpful__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #5048e4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5048e4;
}

.learn-helpful__text {
  font-size: 0.95rem;
  color: #111827;
}


.learn-card__header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}


@media (max-width: 991.98px) {
  .learn-feature-panel {
    grid-template-columns: 1fr;
  }

  .learn-feature-panel__intro,
  .learn-feature-panel__links {
    padding: 2rem;
    text-align: center;
  }

  .learn-feature-panel__links {
    flex-direction: column;
    text-align: center;
  }

  .learn-feature-panel__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
