.news-container {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    .first-news {
        width: 70%;
        padding: 0px 20px 0px 0px;
        h2 {
          padding-top: 10px;
          a {
              font-size: 26px;
              line-height: 32px;
          }
          a:hover {
            color: #8DC63F;
          }
        }
        img {
            width: 100%;
            border: none;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
      p {
        a:hover {
        	color: #8DC63F;
      	}
      }
    }
    .other-news {
        width: 30%;
        padding: 0px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        height: 100%;
        overflow: hidden;
        gap: 20px;
        .one-news {
            position: relative;
            width: 100%;
            aspect-ratio: 20/11; /* kontrola proporcija */
            overflow: hidden;  /* sprječava da slika izađe van */
            .img-container {
                width: 100%;
                height: 100%;
                img {
                    width: 100%;
                    object-fit: cover;   /* slika se prilagodi kontejneru */
                    object-position: center; /* centrirana unutar kontejnera */
                    border: none;
                    border-top-left-radius: 10px;
                    border-top-right-radius: 10px;
                }
            }
            .one-news-heading {
                position: absolute;
                bottom: 5px;
                left: 5px;
                color: #fff;
                background: rgba(0,0,0,0.5);
                padding: 5px;
                font-size: 12px;
                line-height: 18px;
                a {
                    color: white;
                    transition: 0.3s ease all;
                }
                a:hover {
                    color: white;
                }
            }
        }
    }
    @media (max-width: 768px) {
        flex-direction: column;

        .first-news,
        .other-news {
            width: 100%;
            padding: 10px;
        }
        .first-news {
            padding-bot: 30px
        }
        .other-news {
            flex-direction: row;
            .one-news {
                .img-container {
                    a {
                        width: 100%;
                        img {
                            min-height: 150px;
                        }
                    }
                }
            }
            .one-news:nth-child(3) {
                display: none;
            }
        }
    }
    @media (max-width: 768px) {
        flex-direction: column;

        .first-news {
            h2 {
                a {
                    font-size: 20px;
                    line-height: 26px;
                }
            }
        }
    }
}