/**
 * Newspapers Page Styles
 * /gazeteler
 * HGC Logo Renkleri: Altın (#D4AF37), Koyu Gri (#2C2C2C), Kırmızı (#C41E3A), Yeşil (#4A7C39)
 */

/* Filter Tabs */
.filter-tabs .nav-pills {
    gap: 0.5rem;
}
.filter-tabs .nav-link {
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    color: #495057;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}
.filter-tabs .nav-link:hover {
    background: #e9ecef;
}
.filter-tabs .nav-link.active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #fff;
}
.filter-tabs .nav-link .badge.bg-primary {
    background: rgba(255,255,255,0.2) !important;
}

/* Newspaper Card Styles */
.newspaper-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}
.newspaper-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.newspaper-logo-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.newspaper-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.newspaper-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

.newspaper-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.newspaper-title-btn {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: #fff;
    border: 2px solid #2C2C2C;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2C2C2C;
    text-align: center;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    line-height: 1.3;
}
.newspaper-title-btn:hover {
    background: #2C2C2C;
    color: #fff;
}

.newspaper-website {
    display: block;
    color: #D4AF37;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    word-break: break-all;
}
.newspaper-website:hover {
    color: #B8960C;
    text-decoration: underline;
}

.newspaper-description {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.newspaper-info {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.5;
    flex: 1;
}
.newspaper-info p {
    margin-bottom: 0.35rem;
}
.newspaper-info strong {
    color: #333;
}
.newspaper-info a {
    color: #D4AF37;
    text-decoration: none;
}
.newspaper-info a:hover {
    color: #B8960C;
    text-decoration: underline;
}

.newspaper-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.newspaper-footer .badge {
    font-size: 0.65rem;
    font-weight: 500;
}
.newspaper-footer .badge.bg-secondary {
    background: #2C2C2C !important;
}
.newspaper-footer .badge.bg-success {
    background: #4A7C39 !important;
}

/* Newspaper Registration Form */
.newspaper-register-form .form-label {
    font-weight: 500;
}
.newspaper-register-form .card-header {
    background: #D4AF37;
}
