.learning-center,
.webinars {
  h1 {
    margin-bottom: 1.5rem;
  }
}

.learning-center {
  h2 {
    margin-top: 2rem;
  }

  .btn {
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    width: fit-content;
    transition: background-color 0.3s ease;

    &.primary-btn {
      background-color: #0693e3;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      &:hover {
        background-color: #6d6d6d;
        color: #fff;
      }
    }
  }

  .article {
    max-width: 85%;
    position: relative;

    .primary-btn {
      margin-left: 0.75rem;
    }

    &:first-of-type {
      h2 {
        margin-top: 0;
      }
    }

    &:not(:last-of-type) {
      &::after {
        content: "";
        display: block;
        background-color: #212529;
        position: absolute;
        bottom: -5px;
        left: 0.5rem;
        width: 100%;
        height: 1px;
        opacity: 0.25;
      }
    }
  }
}

.webinars {
  iframe {
    max-width: 60%;
    border: none;
  }

  .webinar-video {
    margin-bottom: 2rem;
  }
}
