.mm-guide-nav-wrap {
  margin: 40px 0;
  padding: 24px;
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
}

.mm-guide-nav-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
}

.mm-guide-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mm-guide-nav-card,
.mm-guide-nav-card:hover,
.mm-guide-nav-card:focus,
.mm-guide-nav-card:active {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 16px 18px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mm-guide-nav-card:hover,
.mm-guide-nav-card:focus {
  transform: translateY(-2px);
  border-color: #ff4903;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
  text-decoration: none;
}

.mm-guide-nav-card:hover .mm-guide-nav-label,
.mm-guide-nav-card:hover .mm-guide-nav-sub,
.mm-guide-nav-card:focus .mm-guide-nav-label,
.mm-guide-nav-card:focus .mm-guide-nav-sub,
.mm-guide-nav-card:active .mm-guide-nav-label,
.mm-guide-nav-card:active .mm-guide-nav-sub {
  text-decoration: none;
}

.mm-guide-nav-card-primary {
  border-color: #ff4903;
  background: linear-gradient(135deg, rgba(255, 73, 3, 0.08) 0%, rgba(255, 73, 3, 0.14) 100%);
}

.mm-guide-nav-card-primary .mm-guide-nav-icon {
  background: #ff4903;
  color: #ffffff;
}

.mm-guide-nav-card-full {
  grid-column: 1 / -1;
}

.mm-guide-nav-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 999px;
  background: rgba(255, 73, 3, 0.10);
}

.mm-guide-nav-icon-download {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  background: transparent;
  border-radius: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #000000;
}

.mm-guide-nav-card-primary .mm-guide-nav-icon.mm-guide-nav-icon-download {
  background: transparent;
  color: #000000;
}

.mm-guide-nav-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mm-guide-nav-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
}

.mm-guide-nav-sub {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.4;
  color: #6b7280;
}

@media (max-width: 768px) {
  .mm-guide-nav-wrap {
    padding: 18px;
    border-radius: 14px;
  }

  .mm-guide-nav-grid {
    grid-template-columns: 1fr;
  }

  .mm-guide-nav-card,
  .mm-guide-nav-card:hover,
  .mm-guide-nav-card:focus,
  .mm-guide-nav-card:active {
    min-height: 74px;
    padding: 14px 16px;
  }

  .mm-guide-nav-card-full {
    grid-column: auto;
  }

  .mm-guide-nav-label {
    font-size: 15px;
  }

  .mm-guide-nav-sub {
    font-size: 12px;
  }

  .mm-guide-nav-icon-download {
    font-size: 26px;
  }
}
.mm-guide-nav-card-full.mm-guide-nav-card-primary {
  background: #ff4903;
  border-color: #ff4903;
  color: #ffffff;
}

.mm-guide-nav-card-full.mm-guide-nav-card-primary .mm-guide-nav-label,
.mm-guide-nav-card-full.mm-guide-nav-card-primary .mm-guide-nav-sub {
  color: #ffffff;
}

.mm-guide-nav-card-full.mm-guide-nav-card-primary .mm-guide-nav-sub {
  opacity: 0.9;
}

/* icon blijft wit in oranje knop */
.mm-guide-nav-card-full.mm-guide-nav-card-primary .mm-guide-nav-icon {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}