/* MS Project CTA block. Mirrors the static MS Project landing section 08. */
.ms-project-landing .btn.outline-light {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  padding: 10px 35px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ms-project-cta-section {
  background: #5774E7;
}

.ms-project-cta-section__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.ms-project-cta-section__title {
  font-weight: 400;
  font-size: 40px;
  line-height: 56px;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 40px;
}

.ms-project-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ms-project-cta-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 40px;
  box-sizing: border-box;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ms-project-cta-card:hover,
.ms-project-cta-card:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0px 4px 20px rgba(32, 32, 96, 0.06);
}

.ms-project-cta-card:hover .btn.outline-light,
.ms-project-cta-card:focus-within .btn.outline-light {
  background: #FAFAFA;
  border-color: #FAFAFA;
  color: #202060;
}

.ms-project-cta-card__title {
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  color: #FFFFFF;
  margin: 0;
}

.ms-project-cta-card__body {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin: 0;
  flex-grow: 1;
}

.ms-project-cta-card__button {
  align-self: flex-start;
  padding: 10px 48px;
}

@media (max-width: 1200px) {
  .ms-project-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ms-project-cta-grid {
    grid-template-columns: 1fr;
  }
}
