.vybaveni-box{
  display:flex;
  align-items:center;
  gap:50px;

width:100%;
  box-sizing:border-box;

    border: 1px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding:45px 55px;
  margin-bottom:45px;

  border-radius:22px;

  box-shadow:
    0 8px 35px rgba(0,0,0,.55),
    0 0 20px rgba(212,175,55,.08);

  transition: all .35s ease;
  position:relative;
  overflow:hidden;
}

.vybaveni-box:hover{
  transform:translateY(-4px);
  box-shadow:
    0 16px 45px rgba(0,0,0,.7),
    0 0 35px rgba(212,175,55,.12);
}

/* YEAR */
.vybaveni-year{
  min-width:160px;
  font-size:72px;
  font-weight:700;
  line-height:1;
  letter-spacing:3px;
  color:#d4af37;

  text-shadow:
    0 0 10px rgba(212,175,55,.35),
    0 0 25px rgba(212,175,55,.15);
}

/* IMAGE */
.vybaveni-cover img{
  display:block;
  width:600px;
  border-radius:16px;

  box-shadow:
    0 15px 35px rgba(0,0,0,.6),
    0 0 18px rgba(212,175,55,.15);

}

.vybaveni-box--ozvuceni .vybaveni-cover img {
    height: 800px;
    object-fit: cover;
    object-position: center;
}

/* CONTENT */
.vybaveni-content{
  flex:1;
}

.vybaveni-content h3{
  margin:0 0 18px;
  font-size:34px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#0e171e;
}

.vybaveni-content p{
  margin:0;
  font-size:18px;
  line-height:1.7;
}

/* DIVIDER */
.gold-divider-2 {
  border: none;
  height: 1px;
  width: 100px;
  background-color: #d4af37;
  margin: 8px auto 8px 0;
}
/* BUTTON */
.vybaveni-order{
  width:220px;
  height:64px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;
  font-weight:600;
  text-decoration:none !important;
  color:#111;

  border-radius:60px;
  border:2px solid #f2d67a;

  background:linear-gradient(180deg,#f6e089,#e3c45d,#c89d22);

  transition: all .3s ease;
}

.vybaveni-order:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(212,175,55,.4);
}
/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px){

.vybaveni-box{
flex-direction:column;
align-items:center;
text-align:center;
gap:28px;

padding:30px 8px;
margin-bottom:28px;
border-radius:18px;
}

/* YEAR + TITLE vedle sebe */
.vybaveni-head{
display:flex;
align-items:center;
justify-content:center;
gap:14px;
flex-wrap:wrap;
margin-bottom:12px;
}

.vybaveni-year{
min-width:auto;
font-size:42px;
letter-spacing:1px;
line-height:1;
}

.vybaveni-content{
width:100%;
display:flex;
flex-direction:column;
align-items:center;
}

.vybaveni-content h3{
margin:0;
font-size:28px;
line-height:1.2;
}

.vybaveni-content p{
font-size:17px;
line-height:1.6;
max-width:100%;
margin:0;
}

/* divider vystředit */
.gold-divider-2{
margin:5px auto 0 auto;
width:70px;
}
.vybaveni-content ul{
list-style:none;
padding-left:0;
margin:5px 0 0;
}

.vybaveni-content li{
list-style:none;
padding-left:0;
margin-bottom:8px; 
}

.vybaveni-content li::marker{
content:"";
}

/* obrázek responsive */
.vybaveni-cover{
width:100%;
}

.vybaveni-cover img{
width:100%;
max-width:100%;
height:auto;
border-radius:14px;
}

/* vysoký image box */
.vybaveni-box--ozvuceni .vybaveni-cover img{
height:auto;
max-height:500px;
object-fit:cover;
}

/* button  */
.vybaveni-order{
width:100%;
max-width:280px;
height:56px;
font-size:16px;
letter-spacing:0px;

padding:0 16px;

display:flex;
align-items:center;
justify-content:center;
}

}


/* EXTRA SMALL PHONES */
@media (max-width:480px){

.vybaveni-box{
padding:24px 18px;
gap:22px;
}

.vybaveni-head{
gap:10px;
}

.vybaveni-year{
font-size:34px;
}

.vybaveni-content h3{
font-size:23px;
}

.vybaveni-content p{
font-size:16px;
}

}