/* Genel ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.blog-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

/* Sol kutu (Metin içeren) */
.blog-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Buton - a etiketi */
.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0f9d58;
    color: white;
    text-decoration: none !important;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.read-more-btn:hover {
    background-color: #0c7a45;
    color: #ddd;
}

/* Sağ kutu (Görsel içeren) */
.image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.blog-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 10px;
    object-fit: cover;
}


/* ----------------------------------------------------------------- */


.blog-boxs {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    height: 400px;
    width: auto;
}

.blog-boxs:hover {
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

/* Resim kapsayıcı */
.box-image {
    width: 100%;
    height: 200px; 
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
}

/* Resim stili */
.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Başlık ve metin */
.box-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.box-text {
    font-size: 1rem;
    color: #666;
}

.box-link{
    text-decoration: none !important;
}

/* Responsive ayarlar */
@media (min-width: 768px) {

    .blog-box, .image-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .box-title {
        font-size: 1.3rem;
    }
    .box-text {
        font-size: 0.9rem;
    }

    
}
