

/* Featured içerik bölümü */
.featured-section {
    padding: 40px;
    background-color: #f4f4f4;
    margin-bottom: 30px;
    border-radius: 8px;
}

.featured-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.featured-section .recent-posts {
    list-style: none;
    padding: 0;
}

.featured-section .recent-posts li {
    margin-bottom: 15px;
}

.featured-section .recent-posts li a {
    font-size: 20px;
    text-decoration: none;
    color: #333;
}

.featured-section .recent-posts li a:hover {
    text-decoration: underline;
}

.featured-section .post-thumbnail {
    margin-top: 10px;
}

.featured-section .post-thumbnail img {
    max-width: 100%;
    border-radius: 5px;
}






/* Son gönderiler için ızgara düzeni */
.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Kartlar için responsive ızgara */
    gap: 20px;
    margin-top: 20px;
}

.recent-posts-grid{
    margin:auto;
    max-width:1000px;
}
/* Her bir kartın stilini belirleyin */
.recent-post-card {
    background-color: #fff;
    /*border: 1px solid #ddd;*/
    /*border-radius: 8px;*/
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Kart üzerine geldiğinde efekt */
.recent-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Öne çıkan görsel (featured image) stilini belirleyin */
.recent-post-card .posts-thumbnail img {
    width: 100%;
    height: 307px;
    border-bottom: 1px solid #ddd;
    object-fit: cover;
}
 
/* Başlık stilini belirleyin */
.recent-post-card .post-details {
    padding: 15px;
}

.recent-post-card .post-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #333;
    transition: color 0.3s ease;
    text-align: center;
}


    .container {
        max-width: 1000px;
    }

    body.blog .site-content, body.home .site-content {
        /* padding: 120px 0 0; */
        padding: 20px 0px;
        padding-bottom: 75px;
    }
    #button-wrapper{
            text-align: center;
    margin: 20px;
    
    }
    .pagetext{
        font-family:"Gochi Hand", sans-serif;
            text-align: center;
    margin: 25px !important;
    }
    
.recent-post-card .post-title a {
    text-decoration: none;
    color: inherit; /* Başlık rengini miras al */
    font-size: 26px;
     font-weight: 400;
     font-family: 'Cormorant',sans-serif;
}

.recent-post-card .post-title a:hover {
    color: #0073e6; /* Başlık üzerine gelince renk değişir */
}
