.logo img,.single-thumbnail img {
    height:auto;
    width:100%
}
.meta,footer {
    color:#888;
    font-size:.9rem
}
#submit,.menu-toggle {
    cursor:pointer;
    font-weight:700;
    transition:.3s
}
#submit,.comment-body,.menu-toggle,.post-card,.related-item {
    transition:.3s
}
.main-menu a,.post-content h2 a,.related-item a {
    text-decoration:none
}
.post-thumbnail img,.related-thumb img {
    object-fit:cover;
    object-fit:cover
}
.diyomki-title1,.slogan-text {
    font-style:italic
}
* {
    box-sizing:border-box;
    margin:0;
    padding:0
}
body {
    background-color:#dad6bc!important;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    line-height:1.6;
    color:#333
}
.container {
    max-width:1000px;
    width:90%;
    margin:0 auto;
    padding:5px 0
}
.logo {
    margin-bottom:5px
}
/* Mevcut header ve logo kısmını bulun ve şu şekilde güncelleyin */
header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:10px 0;
    position:relative;
}

.logo{
    display:flex;
    align-items:flex-start;
}

.logo img{
    display:block;
    max-width:180px;
    height:auto;
}


.post-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:30px
}
.post-card {
    background:#eeeee0;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #eee
}
.post-card:hover {
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,.1)
}
.post-content {
    padding:7px
}
.post-content h2 a {
    color:#222
}
.single-post {
    background:#dad6bc;
    padding:40px;
    border-radius:12px;
    border:1px solid #eee
}
.single-post h1 {
    font-size:2rem;
    margin-bottom:10px;
    line-height:1.2
}
.meta {
    padding-bottom:10px
}
.single-thumbnail img {
    border-radius:8px
}
.entry-content {
    font-size:1.15rem;
    color:#333
}
.entry-content p {
    margin-bottom:20px
}
footer {
    margin-top:60px;
    padding:20px;
    text-align:center
}
.entry-content img {
    width:100%!important;
    max-width:100%!important;
    height:auto!important;
    display:block;
    margin:20px 0;
    border-radius:8px
}
@media screen and (max-width:767px) {
    .single-post {
        padding:20px 10px;
        border-radius:0;
        border-left:none;
        border-right:none;
        padding-left:0!important;
        padding-right:0!important
    }
}
@media screen and (min-width:768px) {
    .container {
        max-width:800px;
        padding:5px
    }
    .single-post {
        padding:5px;
        box-shadow:0 4px 15px rgba(0,0,0,.05);
        border:1px solid #e1e1e1
    }
    .single-thumbnail img {
        border-radius:12px
    }
    .entry-content {
        font-size:1.25rem;
        line-height:1.8
    }
}
.entry-content hr {
    border:none;
    border-top:2px solid #ddd;
    width:100%;
    margin:35px auto
}
.main-article {
    background-color:#eeeee0;
    max-width:800px;
    margin:15px auto;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1)
}
@media screen and (max-width:767px) {
    .main-article {
        margin:0;
        border-radius:0;
        padding:10px
    }
}
.main-article h1 {
    font-size:2rem;
    margin-bottom:20px
}
.main-article .entry-content {
    font-size:1.15rem;
    line-height:1.8
}
.main-article .entry-content img {
    width:100%;
    border-radius:8px;
    margin:5px 0
}
.comments-wrapper {
    margin-top:40px;
    padding-top:30px;
    border-top:2px solid #e1e1e1
}
.comment-list {
    list-style:none;
    padding:0
}
.comment-body {
    background:#fdfdfd;
    border:1px solid #eee;
    padding:20px;
    border-radius:12px;
    margin-bottom:20px
}
.comment-body:hover {
    border-color:#d1ceb2
}
#commentform {
    display:flex;
    flex-direction:column;
    gap:15px
}
#commentform input[type=email],#commentform input[type=text],#commentform textarea {
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    width:100%
}
#submit {
    background:#222;
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:8px
}
#submit:hover {
    background:#444
}
.comment-date,.comment-meta,.comment-metadata {
    color:#a8a8a8!important;
    font-size:.8rem!important
}
/*==========================
HEADER
==========================*/

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    position:relative;
}

.logo img{
    width:180px;
    display:block;
}


/*==========================
HAMBURGER
==========================*/

.menu-toggle{
    width:48px;
    height:48px;
    border:none;
    border-radius:12px;
    background:#c4c0a0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    cursor:pointer;
    z-index:1101;
}

.menu-toggle span{
    width:24px;
    height:2px;
    background:#333;
    transition:.30s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}


/*==========================
OVERLAY
==========================*/

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.30s;
    z-index:1098;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}


/*==========================
MENU
==========================*/

.main-menu{

    position:fixed;

    top:0;

    right:-320px;

    width:300px;

    height:100vh;

    background:#DBD6B8;

    transition:right .35s ease;

    box-shadow:-10px 0 30px rgba(0,0,0,.15);

    z-index:1100;

    display:flex;

    flex-direction:column;

}

.main-menu.active{

    right:0;

}


/*==========================
MENU HEADER
==========================*/

.menu-header{

    padding:25px;

    border-bottom:1px solid #c4c0a0;

    text-align:left;

}

.menu-logo img{

    width:135px;

    margin:auto;

}


/*==========================
MENU CONTENT
==========================*/

.menu-content{

    flex:1;

    overflow-y:auto;

}

.main-menu .menu{

    margin:0;

    padding:0;

    list-style:none;

}

.main-menu .menu li{

    border-bottom:1px solid #ddd;

}

.main-menu .menu li:last-child{

    border-bottom:none;

}

.main-menu .menu li a{

    display:block;

    padding:18px 22px;

    color:#333;

    font-size:17px;

    font-weight:600;

    text-decoration:none;

    transition:.25s;

}

.main-menu .menu li a:hover{

    background:#d8d2b4;

    padding-left:30px;

}

body.menu-open{

    overflow:hidden;

}

.archive-header1 {
    position:relative;
    background:#eeeee0;
    padding:20px;
    text-align:center;
    border-radius:20px;
    border:1px solid #d1ceb2;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    margin:20px 0;
}


/* Balon kuyruğu */
.archive-header1::after {
    content:"";
    position:absolute;
    bottom:-12px;
    left:40px;
    width:22px;
    height:22px;
    background:#eeeee0;
    border-right:1px solid #d1ceb2;
    border-bottom:1px solid #d1ceb2;
    transform:rotate(45deg);
}
.archive-title1 {
    font-size:1.5rem;
    color:#333;
    margin-bottom:10px;
	text-align:left;
    text-transform:capitalize
}
.archive-description1 {
    font-size:1.1rem;
    color:#666;
    max-width:600px;
	text-align:left;
    margin:0 auto
}
.diyomki-title1 {
    color:#999;
    text-transform:capitalize
}
.related-posts-wrapper {
    margin-top:40px;
    padding-top:20px;
    border-top:2px solid #ddd
}
.related-title {
    margin-bottom:20px;
    font-size:1.5rem;
    color:#333
}
.related-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:15px
}
.related-item {
    background:#fff;
    padding:10px;
    border-radius:8px
}
.related-item:hover {
    transform:translateY(-5px);
    box-shadow:0 5px 15px rgba(0,0,0,.1)
}
.related-thumb img {
    width:100%;
    height:120px;
    border-radius:5px;
    margin-bottom:8px
}
.related-item h4 {
    font-size:.9rem;
    line-height:1.3;
    color:#222
}
.diyomki-title1,.post-content h2,.slogan-text {
    font-size:1.2rem;
    margin:0
}
.post-card .post-content {
    padding:15px 10px 5px;
    background:#eeeee0
}
.post-content h2 {
    display:flex;
    align-items:center
}
.post-content h2::before {
    content:"💬";
    margin-right:10px;
    font-size:1.4rem
}
.post-thumbnail img {
    width:100%;
    height:150px;
    display:block;
    border:5px solid #d1cdae;
    border-radius:15px 5px;
    box-shadow:inset 0 0 10px rgba(0,0,0,.2),2px 2px 5px rgba(0,0,0,.3);
    filter:sepia(20%)
}

.slogan-text  {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    margin-top: -2px;
    line-height: 1.3;
}
@media (max-width: 768px)  {
    .slogan-text  {
        font-size: 15px;
    }
}
h1  {
    font-size: 20px !important;
    /* Buradaki değeri istediğiniz gibi değiştirebilirsiniz */
}
#daha-fazla-yukle  {
    background: #c4c0a0 !important;
    color: #333 !important;
    transition: 0.3s;
    text-transform: uppercase;
}
#daha-fazla-yukle:hover  {
    background: #d1ceb2 !important;
    transform: translateY(-2px);
}
#icerik-alani  {
    display: contents;
    /* Bu, div'in kendisini yok sayıp içindekileri doğrudan grid'e dahil eder */
}
blockquote  {
    font-size: 0.9em;
    /* Yazıyı biraz küçültür (normalin %90'ı) */
    color: #666666;
    /* Yazıyı griye/soluk hale getirir */
    font-style: italic;
    /* İstersen eğik (italik) yapabilirsin */
    border-left: 3px solid #ccc;
    /* Kenara ince bir çizgi ekleyerek vurgular */
    padding-left: 15px;
    /* İç boşluğu ayarlar */
}
.site-footer  {
    text-align: center;
    padding: 20px;
    font-size: 0.85em;
    /* Footer yazıları genelde daha küçük olur */
    color: #888;
}
.footer-links a  {
    margin: 0 10px;
    /* Linklerin arasını açar */
    text-decoration: none;
    color: #555;
    /* Hafif soluk bir renk */
}
.footer-links a:hover  {
    color: #000;
    /* Üzerine gelince belirginleşir */
}

/* Başlık ve slogan eski ortalı görünüm */

.header-inner {
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    flex-direction:column;
}


.diyomki-title1,
.slogan-text {
    text-align:center;
    width:100%;
}


.hero-content {
    text-align:center;
}


.hero-content h1{

    text-align:center;
}

/* Kategori başlık alanı düzenleme */

.archive-header1 {
    display:block !important;
    text-align:center;
}


.archive-header1 h1 {
    display:block;
    width:100%;
    margin-bottom:10px;
}


.archive-header1 p {
    display:block;
    width:100%;
}

.container{
    padding-top:0 !important;
}