/* Web (Cloaker) Görünüm CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.news-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.news-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.site-logo {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #3498db;
}

/* Main Content */
.news-main {
    padding: 40px 0;
}

/* Featured News */
.featured-news {
    margin-bottom: 40px;
}

.news-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card.featured:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 80px;
    opacity: 0.3;
}

.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-category {
    display: inline-block;
    padding: 5px 15px;
    background: #3498db;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.news-content h2,
.news-content h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.news-excerpt {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.8;
}

.news-date {
    color: #95a5a6;
    font-size: 14px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card .news-image {
    height: 200px;
    min-height: 200px;
}

.news-card .news-content {
    padding: 20px;
}

.news-card .news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Footer */
.news-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .news-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .news-card.featured {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

