/* ================= GENEL ================= */

body {
    background: #111;
    font-family: Arial, sans-serif;
}

/* Container */
.article-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 30px;
    background: #f2f2f2;   /* gri ton */
    border-radius: 8px;
    font-size:20px;
      line-height: 1.8;
}
}

/* ================= BAŞLIK ================= */

.satranc-title {
    margin-bottom: 20px;
    color: gold;
}

/* ================= GRID ================= */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

/* ================= KART ================= */

.news-card {
    background: #222;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.2s;
}

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

/* ================= GÖRSEL ================= */

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Görsel yoksa */
.no-image {
    height: 180px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

/* ================= BAŞLIK ================= */

.news-card h2 {
    font-size: 14px;
    padding: 10px;
    margin: 0;
}

.news-card a {
    color: #fff;
    text-decoration: none;
}

.news-card a:hover {
    color: gold;
}

/* ================= RESPONSIVE ================= */

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

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