.section.news-gallery {
    padding: 30px 0;
}
.section.news-gallery h2 {
    clip-path: polygon(0 29%, 100% 0%, 90% 81%, 8% 100%);
    background-color: #000;
    display: inline-block;
    padding: 33px 43px;
    font-weight: 300;
    color: #fff;
    font-size: 52px;
    line-height: 54px;
    min-width: 330px;
    letter-spacing: -1.2px;
}
.section.news-gallery h2 span {
    border-left: 4px solid #009639;
    padding-left: 8px;
}

/* GRID YAPISI */
.news-grid .col-md-3 {
    margin-bottom: 20px;
}
.news-card {
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: 400px;
}
.news-card:hover {
    transform: translateY(-4px);
}

/* Görsel */
.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Bilgi alanı */
.news-info {
    flex: 1;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.news-title {
    font-weight: 700;
    color: #353535;
    font-size: 16px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.9;
    letter-spacing: -0.6px;
    text-decoration: none;
}
.news-title:hover {
    color: #009639;
}

/* Açıklama */
.news-info p {
    color: #5e5e5e;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

/* Buton */
.news-more {
    display: inline-block;
    margin: 15px auto 20px auto;
    padding: 10px 22px;
    color: #898989;
    font-weight: 600;
    font-size: 13px;
    border-radius: 6px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.news-more:hover {
    transform: translateY(-2px);
    color: #333333;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .news-card { height: 400px; }
}
@media (max-width: 768px) {
    .news-card { height: 340px; margin: 0px 15px; }
    .section.news-gallery .news-info {
        padding: 0 !important;
    }
}
