
  .cms-boxed-container {
    max-width: 1120px;
    margin: 20px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
    color: #444;
  }

    .cms-boxed-container.wider {
      max-width:1390px;
    }

  .cms-boxed-container h2.h3 {
    color: #222;
    padding-bottom: 10px;
    margin-top: 30px;
    letter-spacing: 0.5px;
  }

  .cms-boxed-container .text-primary, 
  .cms-boxed-container .badge-primary {
    color: #d66327 !important; 
  }
  
  .cms-boxed-container .badge-primary {
      color: #d66327 !important;
      font-weight: 600;
  }

  .cms-boxed-container .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eee !important;
  }
  
  .cms-boxed-container .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
  }

  .cms-boxed-container .card-title {
    color: #222;
    margin-bottom: 15px;
  }

  .cms-boxed-container .card-footer {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .cms-boxed-container .cms-bg-outer {
    background:#fff0e7;
    margin-left:-40px;
    margin-right:-40px;
  }

   .cms-boxed-container .cms-bg-outer.grey {
    background:#f6f6f6;
   }

   .cms-boxed-container .cms-bg-outer.transparent {
    background:transparent;
   }

  .cms-boxed-container .cms-bg-outer .cms-inner {
    padding:60px 40px;
  }

  /* Styl pro citaci */
.cms-boxed-container blockquote {
    position: relative;
    padding: 20px 30px 20px 70px; /* Prostor pro uvozovky a linku */
    border-left: 5px solid #e67e22; /* Barva ladící k logu (oranžová) */
    background: #fdfdfd;
    font-style: italic;
    color: #222;
    font-weight:500;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.05);
}

/* Ikona uvozovek pomocí pseudo-elementu */
.cms-boxed-container blockquote::before {
    content: "\201C"; 
    position: absolute;
    left: 10px;
    top: -10px;
    font-size: 70px;
    color: #e67e22;
    opacity: 0.2;
}

.cms-boxed-container .custom-list {
    list-style: none;
    padding-left: 0;
}

.cms-boxed-container .custom-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
    font-size: 1rem;
    transition: transform 0.2s ease;
    list-style:none;
}

/* Ikona fajfky nebo bodu */
.cms-boxed-container .custom-list li::before {
    content: '✓'; /* Můžeš nahradit i tečkou: '●' */
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: #e67e22; /* Oranžová z loga */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Jemný hover efekt */
.cms-boxed-container .custom-list li:hover {
    transform: translateX(5px);
}

  .yt-shorts-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px; /* Maximální šířka, kterou má video na stránce zabírat */
    margin: 0 auto;   /* Vycentrování */
    aspect-ratio: 9 / 16; /* Moderní způsob udržení poměru stran */
}

.yt-shorts-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px; /* Volitelné: zaoblené rohy, které vypadají moderně */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Volitelné: jemný stín */
}

  @media (max-width:992px) {
    .cms-boxed-container .cms-bg-outer .cms-inner {
      
    }
  }

  @media (max-width: 768px) {
    .cms-boxed-container {
      margin: 15px;
      padding-top:20px;
      padding-bottom:20px;
    }

    .cms-boxed-container .cms-bg-outer .cms-inner {
      padding:40px;
    }
  }