  /* News grid */
    .news-img {
      width: 100%;
      height: 500px;
      object-fit: fill;
      border-radius: 0px;
      cursor: pointer;
      transition: transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .news-img:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    /* Full-page popup overlay */
    .image-popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.13);
      justify-content: center;
      align-items: center;
      z-index: 9999;
      overflow: hidden;
    }

    .image-popup.active {
      display: flex;
    }

    .popup-img {
      max-width: 90%;
      max-height: 85vh;
      border-radius: 0px;
      transition: transform 0.3s ease;
      cursor: grab;
    }

    .btn-icon {
      position: absolute;
      z-index: 10000;
      background: #303030;
      color: #fff;
      font-weight: bold;
      border: none;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-icon:hover {
      background: #303030;
    }

    .btn-closes {
      top: 20px;
      right: 25px;
      font-size: 24px;
    }

    .btn-prev {
      left: 25px;
    }

    .btn-next {
      right: 25px;
    }

    .btn-zoom-in,
    .btn-zoom-out {
      bottom: 25px;
    }

    .btn-zoom-in {
      left: calc(50% - 55px);
    }

    .btn-zoom-out {
      left: calc(50% + 15px);
    }

    @media (max-width: 768px) {
      .news-img {
        height: auto;
      }
    }