﻿/* === Text s buttonem a obrázek  === */




.cs-wrap{
  background:#F8F9FA;
  padding:48px 0;
}




.cs-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:40px;
  align-items:center; /* vertikální zarovnání textu s obrázkem */
}




/* Text */
.cs-badge{
  margin:0 0 14px;
  font-weight:800;
  font-size:14px;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:#111;
}




.cs-title{
  margin:0 0 16px;
  font-weight:900;
  font-size:42px;
  line-height:1.15;
  color:#111;
}




.cs-desc{
  margin:0 0 22px;
  font-size:16px;
  line-height:1.6;
  color:rgba(17,17,17,.78);
  max-width:54ch;
}




/* Media */
.cs-media{
  display:flex;
  justify-content:center;
  align-items:center;
}




.cs-img{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;
  border-radius:0;
}




/* Responsivita */
@media (max-width: 999px){
  .cs-inner{
    grid-template-columns:1fr;
    gap:26px;
  }


  /* ✅ změna pořadí na mobilu */
  .cs-media{ order: 1; }
  .cs-text{  order: 2; }


  .cs-title{
    font-size:34px;
  }
  .cs-desc{
    max-width:unset;
  }
}