/* TRACER BULLET TEST SUCCESSFUL */
/*
Theme Name:   GeneratePress Child
Theme URI:    https://generatepress.com
Description:  GeneratePress Child Theme with Gold Master Layout Engine and Premium Skin
Author:       Dr. Alex Apex
Author URI:   https://hava-durumlari.tr
Template:     generatepress
Version:      10.0
*/

/* =========================================
   1. GLOBAL VARIABLES & PALETTE
   ========================================= */
:root {
    --bg-body: #F0F4F8;          /* Ice Blue Background */
    --text-primary: #0f172a;     /* Navy Black (Headings) */
    --text-body: #334155;        /* Slate 700 (Readability) */
    --text-meta: #64748b;        /* Slate 500 (Dates/Authors) */
    --accent-blue: #3b82f6;      /* Royal Blue (Links/Buttons) */
    --card-bg: #ffffff;          /* Pure White */
    --border-light: #e2e8f0;     /* Subtle Borders */
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Merriweather', Georgia, serif; /* Premium Editorial Feel */
}

body {
    background-color: var(--bg-body) !important;
    background-image: 
        radial-gradient(at 0% 0%, hsla(217,91%,93%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(186,100%,94%,1) 0, transparent 50%);
    background-attachment: fixed;
    color: var(--text-body);
}

/* =========================================
   2. THE LAYOUT ENGINE (Do Not Touch)
   ========================================= */
/* Force 1280px Width */
body.single-post .site.grid-container, 
body.page .site.grid-container {
    max-width: 1280px !important;
    width: 100% !important;
}

/* Force Flexbox (Side-by-Side) */
body.single-post .site-content, 
body.page .site-content {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !import
<truncated 2600 bytes>
tent li::marker { color: var(--accent-blue); font-weight: bold; }

/* Links */
.entry-content a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}
.entry-content a:hover { border-bottom-color: var(--accent-blue); }

/* =========================================
   5. SPECIAL ELEMENTS (Hero, Meta, Ads)
   ========================================= */

/* Glass Hero Card (Frosted Effect) */
.glass-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Breadcrumbs (Inside Glass Hero) */
.glass-card .rank-math-breadcrumb, 
.glass-card .rank-math-breadcrumb a {
    display: block !important;
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 10px;
    text-align: center;
}

/* Meta Data (Date/Author) */
.entry-meta {
    font-size: 13px;
    color: var(--text-meta);
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
}

/* In-Content Ad Box */
.sinan-content-ad {
    margin: 45px 0;
    text-align: center;
    clear: both;
}

/* =========================================
   6. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    /* Stack Layout */
    body.single-post .site-content, 
    body.page .site-content {
        flex-direction: column !important;
    }
    
    /* Full Width Columns */
    body.single-post #primary, 
    body.single-post #right-sidebar {
        width: 100% !important;
        margin-bottom: 40px;
    }

    /* Reduce Padding */
    .entry-content { padding: 30px 25px !important; }
    
    /* Adjust Hero */
    .gb-container.glass-card { width: 92% !important; padding: 25px !important; }
}
