﻿.blog-masonry-active {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.blog-masonry-item {
    display: flex;
    flex: 1 1 calc(50% - 30px); /* Her satırda iki item olacak şekilde ayarlama */
    box-sizing: border-box;
}

.blogitem {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blogitem-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list-group-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

    .list-group-item img {
        width: 40%;
        height: auto;
        border-radius: 5px;
        margin-right: 20px;
    }

    .list-group-item .content {
        width: 60%;
    }

    .list-group-item h5 {
        margin-top: 0;
    }

    .list-group-item p {
        margin-bottom: 10px;
    }

.buttondocuments {
    margin-bottom: 20px;
    margin-top: 20px;
}


.image-with-shadow {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px; /* İsteğe bağlı: Köşeleri yuvarlatır */
}

.light-border {
    border: 1px solid #649dad; /* Light border color */
    border-radius: 8px; /* Köşeleri yuvarlamak için */
    padding: 10px; /* İç boşluk eklemek için */
}

