.e4ak-wrap{
  width:100%;
  box-sizing:border-box;
}

.e4ak-title{
  text-align:center;
  font-weight:700;
  letter-spacing:0.5px;
  text-transform:uppercase;
  margin: 0 0 12px 0;
}

.e4ak-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.e4ak-card{
  box-sizing:border-box;
  border-radius:16px;
  padding:12px;
  display:flex;
  flex-direction:column;
  min-height: 120px;
}

.e4ak-card__heading{
  font-weight:700;
  text-transform:uppercase;
  font-size: 12px;
  line-height: 1.2;
  margin: 0 0 10px 0;
  opacity: .95;
}

.e4ak-card__lines{
  font-size: 12px;
  line-height: 1.35;
  flex:1;
}

.e4ak-card__line{
  display:flex;
  justify-content:space-between;
  gap:8px;
  margin: 3px 0;
  opacity: .95;
}

.e4ak-card__badge{
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  font-weight:700;
  font-size: 12px;
  line-height: 1.2;
  text-align:center;
}

/* Tablet & Mobile: 2 sütun */
@media (max-width: 1024px){
  .e4ak-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px){
  .e4ak-card{ min-height: 110px; }
  .e4ak-card__heading{ font-size: 11px; }
  .e4ak-card__lines, .e4ak-card__badge{ font-size: 11px; }
}
