/* Scope variables to the section so we don't clash with the rest of the site */
#sim-credentials-pro {
  --ink: #0f172a;
  --muted: #64748b;
  --panel: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --accent: #7c3aed; /* subtle hover ring */
  color: var(--ink);
  background:
    radial-gradient(900px 360px at 0% 0%, rgba(124, 58, 237, 0.06) 0%, rgba(124, 58, 237, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 64px 0;
}

/* container */
#sim-credentials-pro .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* header */
#sim-credentials-pro .head { margin-bottom: 20px; }
#sim-credentials-pro .title {
  margin: 0 0 6px;
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(26px, 3.2vw, 38px);
}
#sim-credentials-pro .desc {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  max-width: 62ch;
}

/* layout */
#sim-credentials-pro .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px) {
  #sim-credentials-pro .grid { grid-template-columns: 1fr; }
}

/* checklist */
#sim-credentials-pro .checklist {
  list-style: none;
  margin: 0;
  padding: 10px 0 0 0;
  display: grid;
  gap: 12px;
}
#sim-credentials-pro .checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  column-gap: 10px;
  font-size: 17px;
}
#sim-credentials-pro .tick {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 999px;
  background: #e8ecff;
  color: #2b2e7f;
  font-weight: 700;
  font-size: 14px;
}

/* logos — compact, elegant “chips” */
#sim-credentials-pro .logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 12px;
}
#sim-credentials-pro .logo {
  min-height: 64px;                 /* smaller than previous cards */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(2, 8, 23, 0.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
}
#sim-credentials-pro .logo img {
  height: 28px;                     /* tighter logo height */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(.85);
}
#sim-credentials-pro .logo:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: 0 10px 22px rgba(2, 8, 23, 0.10);
}
#sim-credentials-pro .logo:hover img { filter: none; }

/* awards — slimmer, balanced cards */
#sim-credentials-pro .awards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 820px) {
  #sim-credentials-pro .awards { grid-template-columns: 1fr; }
}
#sim-credentials-pro .award {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.08);
  text-decoration: none;
  color: inherit;
}
@media (max-width: 640px) {
  #sim-credentials-pro .award { grid-template-columns: 1fr; }
}
#sim-credentials-pro .award-logo {
  min-height: 110px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px dashed #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sim-credentials-pro .award-logo img{
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

#sim-credentials-pro .award-logo.placeholder::before {
  content: "Add logo";
  color: #94a3b8;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
#sim-credentials-pro .award-title {
  margin: 0 0 4px;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 800;
}
#sim-credentials-pro .award-meta {
  color: var(--muted);
  font-size: 14px;
}

/* motion respect */
@media (prefers-reduced-motion: reduce) {
  #sim-credentials-pro .logo { transition: none; }
}

/* Fix tiny logos inside the partner cards (drop this after your current CSS) */
#sim-credentials-pro .card {               /* make the card itself a bit tighter */
  min-height: 80px;
  padding: 12px 14px;
}

#sim-credentials-pro .card-icon img,
#sim-credentials-pro .logo img {           /* scale logos up and let them use the space */
  height: clamp(38px, 4.8vw, 56px);        /* was ~28px */
  max-width: 95%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(.9);     /* keep subtle style */
}

@media (max-width: 640px) {
  #sim-credentials-pro .card { min-height: 72px; }
  #sim-credentials-pro .card-icon img,
  #sim-credentials-pro .logo img { height: clamp(34px, 7vw, 48px); }
}

