/**
 * Google News Rich Content Styles
 * Veliaht Dizisi Web Sitesi
 * 
 * Bu dosya Google News zengin içeriği için özel stilleri içerir.
 */

/* News Rich Content Container */
.news-rich-content {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-rich-content:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* News Header */
.news-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.news-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.news-header h3 {
    margin: 0;
    color: #007bff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* News Meta Grid */
.news-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateY(-1px);
}

.news-item strong {
    color: #495057;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-item span {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

/* News Location */
.news-location {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-location strong {
    color: #495057;
    font-size: 0.875rem;
}

.news-location span {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

/* News Tags */
.news-tags {
    margin-bottom: 1rem;
}

.news-tags strong {
    color: #495057;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.news-tags div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news-tags span {
    background: #007bff;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-tags span:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

/* News Summary */
.news-summary {
    background: white;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.news-summary:hover {
    border-color: #007bff;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.1);
}

.news-summary strong {
    color: #495057;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.news-summary p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-rich-content {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .news-meta {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .news-item {
        padding: 0.5rem;
    }
    
    .news-header h3 {
        font-size: 1.1rem;
    }
    
    .news-icon {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .news-rich-content {
        padding: 0.75rem;
        margin-top: 1rem;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .news-meta {
        gap: 0.5rem;
    }
    
    .news-item {
        padding: 0.5rem;
    }
    
    .news-tags div {
        gap: 0.25rem;
    }
    
    .news-tags span {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .news-rich-content {
        background: #2d3748;
        border-left-color: #4299e1;
    }
    
    .news-item {
        background: #4a5568;
        border-color: #718096;
    }
    
    .news-item:hover {
        background: #2d3748;
        border-color: #4299e1;
    }
    
    .news-item strong {
        color: #e2e8f0;
    }
    
    .news-item span {
        color: #a0aec0;
    }
    
    .news-location {
        background: #4a5568;
    }
    
    .news-location strong {
        color: #e2e8f0;
    }
    
    .news-location span {
        color: #a0aec0;
    }
    
    .news-tags strong {
        color: #e2e8f0;
    }
    
    .news-summary {
        background: #4a5568;
        border-color: #718096;
    }
    
    .news-summary:hover {
        border-color: #4299e1;
    }
    
    .news-summary strong {
        color: #e2e8f0;
    }
    
    .news-summary p {
        color: #a0aec0;
    }
    
    .news-header h3 {
        color: #4299e1;
    }
}

/* Print Styles */
@media print {
    .news-rich-content {
        background: white !important;
        border: 1px solid #000 !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }
    
    .news-item {
        background: white !important;
        border: 1px solid #000 !important;
    }
    
    .news-summary {
        background: white !important;
        border: 1px solid #000 !important;
    }
}
