.enrollment-banner {
  padding: 14px 24px;
  background-color: #f7fafd;
  max-width: 1139px;
  margin: 2rem auto 0;
  border-radius: 12px;
}

.enrollment-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.enrollment-banner__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #e8eef7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enrollment-banner__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #3b5998;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.enrollment-banner__text {
  color: #1a1a2e;
  font-size: 19px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.enrollment-banner__btn {
  display: inline-block;
  background-color: #0351a3;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: auto;
  transition: background-color 0.3s ease;
}

.enrollment-banner__btn:hover {
  background-color: #2d4373;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .enrollment-banner {
    padding: 14px 16px;
    margin: 1rem 12px 0;
  }

  .enrollment-banner__inner {
    gap: 12px;
  }

  .enrollment-banner__text {
    font-size: 14px;
  }

  .enrollment-banner__btn {
    margin-left: 0;
  }
}
