
     #news {
         justify-content: center;
         align-items: center;
         display: flex;
         flex-direction: column;
     }

     .news-card {
         display: flex;
         gap: 30px;
         align-items: center;
         background: white;
         transition: 0.3s all ease-in-out;
         width: 100%;
         box-shadow: 0px 0px 1px 0px rgba(41, 70, 255,0.6);
         margin:20px 0px;
         border-radius: 5px;
         overflow: hidden;
     }

     .news-card:hover{
        box-shadow: 0px 4px 20px rgba(41, 70, 255,0.3);
     }

     /* RESİM */
     .news-img {
         flex: 1;
         overflow: hidden;
     }

     .news-img img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: 0.5s;
     }

     .news-card:hover .news-img img {
         transform: scale(1.05);
     }

     /* CONTENT */
     .news-content {
         flex: 1;
     }

     .news-content h3 {
         font-size: 18px;
         margin-bottom: 10px;
         color: #222;
     }

     .news-content p {
         color: #666;
         line-height: 1.6;
         font-size: 14px;
     }

     /* BUTON */
     .news-content .read-btn {
         margin-top: 15px;
         border-radius: 10px;
         background: #1d92ff;
         color: white;
         border: none;
         padding: 15px 25px;
         cursor: pointer;
         transition: 0.3s;
     }

     .news-content .read-btn {
         font-size: 16px;
     }
     .news-content .read-btn i{
         transition: all 0.33s ease;

     }
     .news-content .read-btn:hover i{
        transform: translateX(5px);
     }


     .news-content .read-btn:hover {
         background: #0f6edb;
     }

     /* RESPONSIVE */
     @media (max-width: 992px) {
         #news {
             padding: 0 30px;
         }

         .news-card {
             flex-direction: column;
         }
         .news-content{
            padding: 10px;
         }

         .news-img {
             width: 100%;
             height: 220px;
         }
     }
     #news .card-link{
        text-decoration: none;
        display: flex;
        width: 90%;
     }

