  /* Professional Hero Section Styles */
.einbl-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px; /* Adjust padding for top/bottom spacing */
}

.einbl-hero-content {
  max-width: 960px; /* Controls the width for better readability */
}

.einbl-hero h1 {
  font-size: 36px;
  font-weight: 900;
  color: #001938; /* Deep navy for contrast */
  margin-bottom: 12px;
}

.einbl-hero-subtitle {
  font-size: 18px;
  color: #475569; /* Muted text color for readability */
  line-height: 1.6;
  margin-top: 10px;
}

.einbl-hero-description {
  font-size: 14px;
  color: #334155; /* Light text color for contrast */
  line-height: 1.7;
  margin-top: 16px;
  max-width: 760px; /* Prevents the text from stretching too wide */
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.einbl-action-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  align-items:stretch;
}

/* Card */
.einbl-action-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 30px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  min-height:100%;
  position:relative;
  overflow:hidden;
}

.einbl-action-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,215,0,.14), rgba(255,215,0,0) 45%);
  pointer-events:none;
  opacity:.7;
}

.einbl-action-card > *{
  position:relative;
  z-index:1;
}

.einbl-action-card:hover{
  transform:translateY(-2px);
  transition:.18s ease;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  border-color:rgba(0,25,56,.18);
}

/* Top row */
.einbl-action-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom:10px;
}

.einbl-action-icon{
  width:44px;
  height:44px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#001938;
  color:#ffffff;
  flex:0 0 auto;
  box-shadow:0 12px 24px rgba(0,0,0,.10);
}

.einbl-action-meta h3{
  margin:6px 0 0;
  font-size:20px;
  font-weight:950;
  color:#0f172a;
  letter-spacing:-.2px;
}

.einbl-action-pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  background:rgba(0,25,56,.06);
  border:1px solid rgba(0,25,56,.10);
  color:#001938;
}

/* Copy */
.einbl-action-card p{
  margin:10px 0 12px;
  color:#475569;
  line-height:1.7;
  font-size:14px;
}

/* Points */
.einbl-action-points{
  margin:0 0 14px;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}

.einbl-action-points li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#334155;
  font-size:13.5px;
  line-height:1.6;
}

.einbl-action-points li:before{
  content:"✓";
  font-weight:950;
  color:#001938;
  background:rgba(255,215,0,.22);
  border:1px solid rgba(255,215,0,.55);
  width:22px;
  height:22px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  margin-top:1px;
}

/* Actions pinned to bottom */
.einbl-action-actions{
  margin-top:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* Responsive */
@media (max-width: 992px){
  .einbl-action-grid{
    grid-template-columns:1fr;
  }
  .einbl-action-card{
    padding:16px;
  }
}

