/* Responsive overrides for the expanded eight-service catalogue. */
.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.footer-phone {
  color: #d8f145;
  font-weight: 700;
  text-decoration: none;
}

.portal-addon {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  background: #eef0e8;
}

.portal-addon-intro > p {
  max-width: 36rem;
  margin: 1.25rem 0 2rem;
  color: #53606b;
  line-height: 1.75;
}

.portal-feature-list {
  display: grid;
  gap: 1rem;
}

.portal-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 16px 40px rgba(7, 26, 51, 0.06);
}

.portal-feature-number {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  background: #d8f145;
  color: #071a33;
  font-size: 0.75rem;
  font-weight: 800;
}

.portal-feature h3 {
  margin: 0 0 0.45rem;
  color: #071a33;
}

.portal-feature p {
  margin: 0;
  color: #53606b;
  line-height: 1.65;
}

@media (max-width: 850px) {
  .portal-addon {
    grid-template-columns: 1fr;
  }
}
