    .article-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .article-text {
      flex: 1 1 400px;
    }

    .article-text {
      font-size: 1rem;
      /* základná veľkosť textu */
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      /* jemne tmavá farba pre oči */
      letter-spacing: 0.5px;
      /* mierne oddelenie písmen pre lepšiu čitateľnosť */
    }

    .article-text p {
      line-height: 1.8;
      /* väčší rozostup medzi riadkami */
      margin-bottom: 1.5em;
      /* viac priestoru medzi odsekmi */
    }

    .article-text h2,
    .article-text h3,
    .article-text h4 {
      margin-top: 2rem;
      /* väčší priestor nad nadpisom */
      margin-bottom: 1rem;
      /* priestor pod nadpisom */
      line-height: 1.3;
    }

    .article-image {
      flex: 1 1 300px;
      text-align: center;
    }

    .article-image img {
      width: 80%;
      border-radius: 5px;
    }

    .article-image2 {
      flex: 1 1 300px;
      text-align: center;
    }

    .article-image2 img {
      width: 40%;
      border-radius: 5px;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }

    .gallery img {
      width: 100%;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
    }

    .lightbox .close,
    .lightbox .prev,
    .lightbox .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 2rem;
      background: rgba(0, 0, 0, 0.5);
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      user-select: none;
    }

    .lightbox .close {
      top: 10%;
      right: 5%;
      transform: none;
      font-size: 2.5rem;
    }

    .lightbox .prev {
      left: 5%;
    }

    .lightbox .next {
      right: 5%;
    }

    /* Vyhľadávacie pole*/

    .article-search {
      margin-bottom: 2rem;
      text-align: center;
      gap: 0.5rem;
    }

    #searchBtn {
      display: none;
      /* default – skryté */
      padding: 0.6rem 1rem;
      border: none;
      border-radius: 6px;
      background: #888888;
      color: white;
      font-weight: bold;
      cursor: pointer;
    }

    #searchBtn:hover {
      background: #219150;
    }

    .article-search input {
      width: 50%;
      padding: 0.8rem 1rem;
      font-size: 1rem;
      border-radius: 25px;
      border: 1px solid #ccc;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .article-search input:focus {
      width: 80%;
      max-width: 800px;
      transition-duration: 0.5s;
      outline: none;
      border-color: #80e689;
      box-shadow: 0 4px 12px rgba(255, 126, 95, 0.3);
    }

    .article-meta {
      font-size: 0.95rem;
      color: #777;
      margin-top: -10px;
      margin-bottom: 25px;
      font-style: italic;
    }

    .article-date {
      font-size: 0.85rem;
      color: #888;
      margin: 6px 0 10px;
      font-style: italic;
    }

    .article-date::before {
      content: "📅 ";
    }



    @media (max-width: 768px) {

      /* MOBIL */
      @media (max-width: 768px) {
        #searchBtn {
          display:inline;
          text-align: center;
          margin: 5px;
        }
      }

      .article-container {
        flex-direction: column;
      }
    }

    .card_content {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: #333;
    }

    .card_content:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    }

    .card_content img {
      width: 100%;
      height: auto;
      object-fit: fill;

    }

    .card_content-content {
      padding: 1.2rem;
    }

    .card_content2 {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: #333;
    }

    .card_content2:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    }

    .card_content2 img {
      width: 100%;
      object-fit: cover;
      height: 200px;

    }

    .card_content2-content {
      padding: 1.2rem;
    }

    /* Ľavý kontajner – hlavný obsah */
    .container-left_content {
      flex: 3;
      width: 100%;
      max-width: 1500px;
      padding: 1rem;
      background: #cccccc4b;
      /* čisté biele pozadie */
      border-radius: 16px;
      /* zaoblené rohy */
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      /* mäkký tieň */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Pravý kontajner – menší, napr. pre banner */
    .container-right_content {
      flex: 1;
      /* menší pomer */
      width: 225px;
      margin-top: 3rem;
      padding: 0 1.5rem;
      /* odstránený float */
    }

    .article-image p {
      margin-top: -5px;
      font-size: small;
      font-style: italic;
    }