/* =====================================================
   SEKCE BENEFITY
===================================================== */
.s_benefits {
    width: 100%;
    clear: both;
}

.s_benefits .h2.text-center {
    margin-bottom: 40px;
}

/* GRID */
.benefit_grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* <-- tohle centrování řádků */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ITEM */
.benefit_item{
  flex: 0 1 calc(33.333% - 30px); /* 3 v řadě */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}

/* IKONA */
.benefit_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ee2944;
    margin-bottom: 15px;
    line-height: 1;
}

/* SVG / ICON FONT */
.benefit_icon i,
.benefit_icon svg {
    width: 64px;
    height: 64px;
    stroke-width: 2px;
}

/* TEXT */
.benefit_text {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

/* =====================================================
   RESPONSIVE – MOBIL
===================================================== */

@media (max-width: 768px) {
  .benefit_item{
    flex: 0 1 100%; /* pod sebou */
  }
}