/* =========================
   Kearney-style card sizing
   ========================= */

   .kearney-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 18px 22px;
  }
  
  /* --- IMPORTANT: force images to never overflow the card --- */
  .kearney-card img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  /* =========================
     Software page image sizing
     ========================= */
  
  .soft-media {
    margin: 14px auto 22px auto;
    max-width: 720px;            /* overall media block width */
    width: 100%;
    overflow: hidden;            /* no spill */
    border-radius: 10px;
  }
  
  .soft-media img.soft-img-large {
    width: 100% !important;      /* fill the media block */
    max-width: 720px !important; /* keep it from becoming huge */
    max-height: 360px !important;/* <<< makes it MUCH smaller */
    object-fit: contain;         /* keep full image visible */
    border-radius: 10px;
  }
  
  /* Row of smaller images */
  .soft-media-row {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
  }
  
  .soft-media-row img.soft-img-small {
    width: 100% !important;
    height: 160px !important;    /* <<< smaller thumbnails */
    object-fit: cover;           /* nice crop like Carney */
    border-radius: 10px;
    display: block;
  }
  
  /* Mobile: stack thumbnails */
  @media (max-width: 900px) {
    .soft-media { max-width: 92vw; }
    .soft-media img.soft-img-large { max-width: 92vw !important; }
  
    .soft-media-row {
      grid-template-columns: 1fr;
      max-width: 92vw;
    }
    .soft-media-row img.soft-img-small {
      height: 200px !important;
    }
  }

/* Contact page styling */
.contact-card{
  background: rgba(20, 25, 30, 0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px 26px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-lead{
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 18px 0;
  color: rgba(255,255,255,0.92);
}

.contact-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px 0;

  justify-content: center;   /* 👈 centers the buttons horizontally */
  width: 100%;
}

.contact-divider{
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 18px 0;
}

.contact-list{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.contact-list li{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-list li:last-child{
  border-bottom: none;
}

.contact-list i{
  width: 18px;
  opacity: 0.9;
}

.contact-note{
  margin-top: 18px;
}

.c-red { color: #ff4d4d; font-weight: 600; }
.c-green { color: #4cd964; font-weight: 600; }
.c-blue { color: #4da3ff; font-weight: 600; }
.c-yellow { color: #ffd54a; font-weight: 600; }

.accent{ color:#ff4d4d; font-weight:700; }


/* subtle, professional highlight colors */
.hl-red   { color: #b91c1c; font-weight: 700; }
.hl-green { color: #15803d; font-weight: 700; }
.hl-blue  { color: #1d4ed8; font-weight: 700; }

/* optional: background-style highlight */
.hl-bg{
  color: #000;                 /* black text */
  padding: 0 .25em;
  border-radius: .35em;
  background: #ffd54a;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

