.mac-internal-links {
  background: linear-gradient(135deg, #102633 0%, #17384a 48%, #d8537a 100%);
  position: relative;
  overflow: hidden;
}

.mac-internal-links .section-title h6,
.mac-internal-links .section-title h2,
.mac-internal-links .section-title p {
  color: #fff;
}

.mac-internal-links .section-title p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

.mac-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.mac-link-grid a {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.94);
  color: #17384a;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  transition: all 0.25s ease;
}

.mac-link-grid a:hover {
  background: #d8537a;
  color: #fff;
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .mac-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .mac-link-grid {
    grid-template-columns: 1fr;
  }

  .mac-link-grid a {
    min-height: auto;
    font-size: 16px;
  }
}