/* Full-bleed light-blue band */
.ltap-band {
  background: #e8f0f9;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

/* Inner container */
.ltap-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 16px 28px;
}

/* Smaller headings */
.ltap-title {
  text-align: center;
  font-size: 22px;   /* was larger */
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #173a5e;
  margin: 0 0 14px;
}
.ltap-card-title {
  margin: 4px 0 6px;
  font-size: 19px !important;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: #173a5e;
}

.ltap-card-title h3 {
	  font-size: 10px;   /* smaller than before */

}

/* Grid: 4 across on desktop */
.ltap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Card layout (no white box) */
.ltap-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  padding: 0;
  min-height: 100%;
}

/* Consistent image size */
.ltap-image {
  height: 200px;
  margin-bottom: 10px;
  background: #dbe6f3;
  overflow: hidden;
}
.ltap-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Body text */
.ltap-card-text {
  color: #173a5e;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Buttons pinned to bottom; KU classes handle appearance */
.ltap-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.ltap-actions a {
  flex: 1 1 160px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .ltap-grid { grid-template-columns: repeat(2, 1fr); }
  .ltap-title { font-size: 20px; }
}
@media (max-width: 560px) {
  .ltap-grid { grid-template-columns: 1fr; }
  .ltap-title { font-size: 18px; }
  .ltap-card-title { font-size: 14px; }
  .ltap-card-text { font-size: 14px; }
  .ltap-image { height: 180px; }
}


/* Compact KU button for LTAP cards (smaller, wraps long text) */
.ltap-button {
  /* size */
  font-size: 14px;
  line-height: 1.3;
  padding: 8px 12px;

  /* layout & wrapping */
  white-space: normal;   /* allow multi-line labels */
  word-break: normal;
  hyphens: auto;
  max-width: 100%;
  min-height: auto;
  background: white;
  border: 1px solid black;
}

/* keep mobile targets touch-friendly without looking huge */
@media (max-width: 576px) {
  .ku-body-4__card .ku-button--compact {
    font-size: 14px;
    padding: 10px 12px;
  }
}

