/* Gunluk Gazeteler Sayfasi */

.newspapers-page {
    min-height: 100vh;
    padding: 24px 0 40px;
    background: radial-gradient(circle at top, #1e293b 0, #020617 55%, #000 100%);
}

.newspapers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.newspapers-header {
    text-align: center;
    margin-bottom: 24px;
    color: #e5e7eb;
}

.newspapers-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.newspapers-header h1 i {
    color: #f97316;
}

.newspapers-header p {
    font-size: 14px;
    color: #9ca3af;
}

.newspapers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.newspaper-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.7);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newspaper-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: #f97316;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.9);
}

.newspaper-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.newspaper-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 16px;
    display: flex;
    align-items: flex-end;
    min-height: 80px;
}

.newspaper-card .newspaper-name {
    font-size: 14px;
    font-weight: 600;
    color: #fef3c7;
    text-align: center;
    width: 100%;
}

.newspaper-icon {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #f97316, #b91c1c 70%);
    color: #fef3c7;
}

.newspaper-icon i {
    font-size: 28px;
}

.loading, .error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
    font-size: 16px;
}

.error {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .newspapers-page {
        padding-top: 20px;
    }

    .newspapers-header h1 {
        font-size: 22px;
    }

    .newspapers-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }

    .newspaper-card {
        min-height: 240px;
    }

    .newspaper-overlay {
        min-height: 70px;
        padding: 12px;
    }

    .newspaper-card .newspaper-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .newspapers-container {
        padding: 0 12px;
    }

    .newspapers-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }

    .newspaper-card {
        min-height: 200px;
    }

    .newspaper-overlay {
        min-height: 60px;
        padding: 10px;
    }

    .newspaper-card .newspaper-name {
        font-size: 12px;
    }
}
