/* =========================
   Gymnastik – Seitenlayout
   ========================= */

.hero {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
}

.hero-media{
  height: 280px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.08)),
    url("/lrg/images/lrg_abt_walking_1.jpg") center/cover no-repeat;
}

.hero-content{
  padding: 1.2rem 1.2rem 1.4rem;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid #e9e9e9;
  background: #fff;
  font-weight: 700;
  margin-top: -1.2rem;
  position: relative;
}

.hero h2{
  margin: .7rem 0 .35rem;
  font-size: 1.4rem;
}

.hero p{
  margin: 0;
  color: var(--text-muted);
  max-width: 70ch;
}

/* Info Cards */
.info-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.info-card{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,.03);
}

.info-card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .6rem;
}

.info-card-head h3{
  margin: 0;
  font-size: 1.05rem;
}

.info-card-head i{
  font-size: 1.15rem;
  opacity: .75;
}

.info-main{
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
}

.info-sub{
  margin: .35rem 0 0;
  color: var(--text-muted);
}

/* responsive */
@media (max-width: 980px){
  .hero-media{ height: 240px; }
  .info-grid{ grid-template-columns: 1fr; }
}