/* RESET */
*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

/* BODY */
body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#111;
    line-height:1.6;
    overflow-x:hidden;
}

/* WRAPPER */
#wrapper{
    max-width:900px;
    margin:0 auto;
    padding:15px;
}

/* HEADER */
#header{
    background:#fff;
    border-radius:14px;
    padding:20px;
    margin-bottom:20px;
    text-align:center;
    border:1px solid #e5e7eb;
    box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

/* ANA BAŞLIK */
.site-title{
    font-size:28px;
    margin-bottom:10px;
    background:linear-gradient(135deg,#f1f5f9,#e2e8f0);
    padding:14px 16px;
    border-radius:12px;
    border:1px solid #dbe3ea;
    box-shadow:0 2px 6px rgba(0,0,0,0.04);
}

.site-title a{
    text-decoration:none;
    color:#111;
    display:block;
}

/* ALT AÇIKLAMA */
.site-description{
    color:#222;
    font-size:14px;
    background:#f8fafc;
    padding:12px 14px;
    border-radius:10px;
    border:1px solid #e5e7eb;
}

/* POST CARD */
.content-excerpt{
    background:#fff;
    border-radius:14px;
    padding:18px;
    margin-bottom:18px;
    border:1px solid #e5e7eb;
    transition:0.2s;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.content-excerpt:hover{
    transform:translateY(-2px);
}

/* TITLE */
.entry-title{
    font-size:22px;
    margin-bottom:12px;
    background:linear-gradient(135deg,#f1f5f9,#e2e8f0);
    padding:12px 14px;
    border-radius:10px;
    border:1px solid #dbe3ea;
    box-shadow:0 2px 6px rgba(0,0,0,0.04);
}

.entry-title a{
    color:#111;
    text-decoration:none;
    display:block;
}

.entry-title a:hover{
    color:#0b57d0;
}

/* META */
.postmeta{
    font-size:13px;
    color:#666;
    margin-bottom:10px;
}

/* IMAGE */
.wp-post-image{
    width:100%;
    height:auto;
    border-radius:10px;
    margin-bottom:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

/* TEXT */
.entry p{
    margin-bottom:10px;
    color:#222;
}

/* READ MORE */
.more-link{
    display:inline-block;
    color:#0b57d0;
    font-weight:bold;
    text-decoration:none;
}

/* CATEGORY */
.postinfo{
    margin-top:10px;
    font-size:13px;
    color:#555;
}

/* SIDEBAR */
#sidebar{
    margin-top:20px;
}

.widget{
    background:#fff;
    padding:15px;
    border-radius:14px;
    margin-bottom:15px;
    border:1px solid #e5e7eb;
    box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

.widget h3{
    margin-bottom:10px;
    font-size:16px;
    background:#f8fafc;
    padding:10px 12px;
    border-radius:8px;
    border:1px solid #e5e7eb;
}

.widget ul{
    padding-left:18px;
}

.widget li{
    margin-bottom:6px;
}

/* MEDIA FIX */
img, iframe, video{
    max-width:100%;
}

/* TABLE FIX (MOBİL KAYMA ÇÖZÜMÜ) */
table{
    width:100%;
    display:block;
    overflow-x:auto;
}

/* RESPONSIVE */
@media(max-width:768px){
    .site-title{
        font-size:22px;
        padding:12px;
    }

    .site-description{
        font-size:13px;
        padding:10px 12px;
    }

    .entry-title{
        font-size:18px;
        padding:10px 12px;
    }
}

/* SINGLE PAGE */
.single .content-excerpt{
    padding:0;
    border:none;
    background:none;
    box-shadow:none;
}

.single .entry{
    background:#fff;
    padding:20px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

.single img{
    max-height:none;
    object-fit:contain;
}

/* RELATED LINKS */
.related-links{
    background:#fff;
    padding:18px;
    border-radius:14px;
    margin-top:24px;
    border:1px solid #e5e7eb;
    box-shadow:0 2px 10px rgba(0,0,0,0.04);
}

.related-links h3{
    margin-bottom:14px;
    font-size:18px;
    color:#111;
    background:#f8fafc;
    padding:10px 12px;
    border-radius:10px;
    border:1px solid #e5e7eb;
}

.related-link-item{
    padding:12px 0;
    border-bottom:1px solid #eef2f7;
}

.related-link-item:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.related-link-title{
    display:block;
    font-size:16px;
    font-weight:600;
    color:#0b57d0;
    text-decoration:none;
    margin-bottom:4px;
}

.related-link-title:hover{
    text-decoration:underline;
}

.related-link-desc{
    font-size:14px;
    color:#555;
    line-height:1.5;
}
