.blogmain {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.blogmain .catlist {
    width: 24%;
    display: flex;
    flex-direction: column;
    height: fit-content;
    border: 1px solid #ddd;
    border-radius: .5rem;
    display: none;
}

.blogmain .catlist ul {
}

.blogmain .catlist ul li {
    height: 50px;
    display: flex;
    align-items: center;
    padding: .5rem;
    padding-right: 3rem;
    position: relative;
    overflow: hidden;
    transition: all .5s ease;
}

.blogmain .catlist ul li + li {
    border-top: 1px solid #eee;
}

.blogmain .catlist ul li a {
    color: #444444;
    font-size: 14px;
    line-height: 1.4;
}

.blogmain .catlist ul li a:after {
    content: '\eb9f';
    font-family: unicons-line;
    font-style: normal;
    font-weight: 400;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 0;
    font-size: 30px;
    color: #444444;
    border-left: 1px solid #eee;
    padding: .5rem .4rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

.blogmain .catlist ul li:hover a,.blogmain .catlist ul li:hover a:after {
    color: #fa1818;
}

.blogmain .bloglist {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.blogmain .bloglist .item {
    display: flex;
    width: calc(24% - 10px);
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 18px;
    position: relative;
}

.blogmain .bloglist .item.bigitem {
    display: flex;
    width: 100%;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: .5rem;
    position: relative;
}

.blogmain .bloglist .item .left {
    display: flex;
    width: 25%;
    align-content: flex-start;
    align-items: flex-start;
    position: absolute;
    right: 5px;
    top: 5px;
}

.blogmain .bloglist .item .left img {
    width: auto;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 25px;
    max-width: 100%;
}

.blogmain .bloglist .item .right {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.blogmain .bloglist .item .right a {
}

.blogmain .bloglist .item .right a h3 {
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding-bottom: 24px;
    height: 63px;
    color: #000;
    line-height: 22px;
    width: 62%;
}

.blogmain .bloglist .item .right a h1 {
    font-weight: 500;
    font-size: 22px;
    display: block;
    padding-bottom: 24px;
    height: 75px;
    color: #000;
    line-height: 28px;
}

.blogmain .bloglist .item .right p {
    line-height: 22px;
    font-size: 0.95em;
    font-weight: 400;
    color: #1a1a1a;
}

.blogmain .bloglist .item .right ul {
}

.blogmain .bloglist .item .right ul li {
    list-style: circle;
    font-size: 15px;
    margin-left: 25px;
    margin-bottom: 15px;
    line-height: 22px;
    font-size: 0.95em;
    font-weight: 400;
    color: #15226c;
}

.blogicerik {
    max-width: 840px;
    margin-bottom: 25px;
}

.blogicerik img {
    max-width: 100%;
    height: auto;
}

.blogicerik iframe {
    max-width: 100%;
}

.blogicerik h3,h2,h4,h5,h6 {
    font-weight: 500;
    font-size: 20px;
    display: block;
    color: #000;
    padding-bottom: 12px;
}

@media(max-width: 991px) {
    .blogmain {
        flex-wrap:wrap-reverse;
    }

    .blogmain .catlist {
        width: 100%;
        margin: 1rem 0 0 0;
    }

    .blogmain .bloglist {
        width: 100%;
    }

    .blogmain .bloglist .item {
        width: 100%;
    }
}
