﻿.main-section.news-main {
    background: url(../img-video/news-main.png) no-repeat;
    background-size: cover;
    background-position: 20% 50%;
}

    .main-section.news-main::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-image: linear-gradient(to bottom, rgb(80 9 65) 0%, rgb(50 8 41 / 17%) 25%, rgb(255 255 255) 100%);
    }

.news-main .main-first-caption {
    color: var(--c-F2E2F2);
    font-style: normal;
}

.news-main .main-second-caption {
    color: #fff;
}

@media (max-width: 1200px) {
    .main-section.news-main {
        background-position: 60% 50%;
    }
}

@media (max-width: 768px) {
    .main-section.news-main {
        background-position: 60% 50%;
    }
}

@media (max-width: 576px) {
    .main-section.news-main {
        background-position: 50% 50%;
    }
}


/*News Section*/
.news-box-wrapper .container {
    border-color: #85858550;
}

.empty-box {
    height: 60px;
    border-right: 1px solid #85858550;
}

@media (max-width: 1200px) {
    .empty-box {
        border:0;
    }
}

.news-wrapper {
    border-bottom: 1px solid #85858550;
}

.news-grid {
    border-left: 1px solid #85858550;
}

.news-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #85858550;
    padding:0;
}

.news-cell img {
    max-height: 310px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-text {
    text-align: left;
    font-family:var(--secondary-font);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}
.news-text p{
    font-size:16px;
    line-height:24px;
    letter-spacing:1.6px;
    color:var(--c-292929);
    margin-bottom: 20px;
}

.news-date {
    font-size: 16px;
    font-weight: 300;
    color: var(--c-858585);
    margin-bottom: 20px;
}

/* Mobil görünümde tek kolon */
@media (max-width: 1200px) {
    .news-text {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .news-cell img {
        max-height: 270px;
    }
    .news-text {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .news-cell img {
        max-height: 220px;
    }
    .news-text {
        padding: 30px 15px;
    }
}
