/*
Theme Name: Haber Magazin
Theme URI: https://sarkisi.net
Author: Haydar
Author URI: https://sarkisi.net.com
Description: Siyah, beyaz, antrasit tonlar覺nda haber/magazin WordPress temas覺
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: sarki dinle
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1C1C1C; /* Antrasit */
    color: #fff;
}

a {
    color: #E50914;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Slider Alan覺 */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider img {
    width: 100%;
    display: block;
}

/* Grid Haberler */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.news-item {
    background: #000;
    padding: 10px;
    border-radius: 5px;
}

.news-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.news-item h3 {
    font-size: 16px;
    margin: 10px 0;
}

.news-item p {
    font-size: 14px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Slider Ana Görsel Boyut */
.slider-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Thumbnail Küçük Resimler */
.slider-thumbs {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}
.slider-thumbs img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}
.slider-thumbs img:hover {
    border: 2px solid #E50914;
}
