.news-wrapper {
    font-family: "Audiowide", sans-serif;
}

/* ─── WRAPPER ────────────────────────────────────────────────────────────────── */

.news-wrapper {
    min-height: 100vh;
    padding: 70px 0 60px;
    background: #000;
}

/* ─── SAYFA BAŞLIĞI ──────────────────────────────────────────────────────────── */

.news-page-title {
    letter-spacing: 6px;
    text-transform: uppercase;
    color: aqua;
    font-size: 14px;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.15);
}

/* ─── GRID ───────────────────────────────────────────────────────────────────── */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ─── KART ───────────────────────────────────────────────────────────────────── */

.news-card {
    background: #111;
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.news-card:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-4px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/*.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #0a0a0a;
    padding: 15px;
    box-sizing: border-box;
}*/

/* ─── KART BODY ──────────────────────────────────────────────────────────────── */

.news-card-body {
    padding: 1.25rem 1.5rem;
}

.news-date {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.news-category {
    font-size: 11px;
    letter-spacing: 2px;
    color: aqua;
    display: inline-block;
    margin-left: 0.75rem;
    margin-bottom: 0.5rem;
}

.news-title {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.news-summary {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.news-empty {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    font-size: 13px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */

@media (max-width: 500px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-page-title { font-size: 12px; }
}

@media (min-width: 501px) and (max-width: 767px) {
    .news-grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .news-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1281px) {
    .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card-body .btn-custom {
    color: aqua !important;
}