﻿
/*----------------------------------------*/
/*  3.2.2 Blog css
/*----------------------------------------*/
.rs-blog-one .rs-blog-btn {
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 991px) {
    .rs-blog-one .rs-blog-btn {
        justify-content: start;
    }
}

.rs-blog-one .rs-blog-item {
    position: relative;
    height: 100%;
    z-index: 1;
}

    .rs-blog-one .rs-blog-item:hover .rs-blog-thumb img {
        transform: scale(1.1);
    }

@media only screen and (max-width: 991px) {
    .rs-blog-one .rs-blog-item.has-thumb-height {
        height: 450px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-blog-one .rs-blog-item.has-thumb-height {
        height: 400px;
    }
}

.rs-blog-one .rs-blog-item.has-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    height: 100%;
}

@media only screen and (max-width: 1600px) {
    .rs-blog-one .rs-blog-item.has-grid {
        grid-template-columns: 1fr 230px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rs-blog-one .rs-blog-item.has-grid {
        grid-template-columns: 1fr 170px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-blog-one .rs-blog-item.has-grid {
        grid-template-columns: 1fr 320px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-blog-one .rs-blog-item.has-grid {
        grid-template-columns: 1fr 200px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-blog-one .rs-blog-item.has-grid {
        grid-template-columns: 1fr;
    }
}

.rs-blog-one .rs-blog-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    inset-inline-start: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
}

    .rs-blog-one .rs-blog-bg-thumb.has-bg::before {
        position: absolute;
        opacity: 0.9;
        background: linear-gradient(transparent, #000000), linear-gradient(transparent, #000000);
        content: "";
        height: 100%;
        inset-inline-start: 0;
        top: 0;
        width: 100%;
        z-index: 1;
    }

    .rs-blog-one .rs-blog-bg-thumb.has-clip-path {
        clip-path: polygon(0% 0%, 92% 0, 100% 11%, 100% 100%, 0% 100%);
    }

.rs-blog-one .rs-blog-thumb {
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .rs-blog-one .rs-blog-thumb img {
        width: 100%;
        transition: all 0.5s ease;
        height: 100%;
        object-fit: cover;
    }

    .rs-blog-one .rs-blog-thumb.has-clip-path {
        clip-path: polygon(0% 0%, 92% 0, 100% 11%, 100% 100%, 0% 100%);
    }

.rs-blog-one .rs-blog-content.has-position {
    position: absolute;
    bottom: 0px;
    z-index: 2;
    padding: 40px 70px 40px 40px;
}

@media only screen and (max-width: 1600px) {
    .rs-blog-one .rs-blog-content.has-position {
        padding: 40px 40px 40px 40px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-blog-one .rs-blog-content.has-position {
        padding: 30px 30px 35px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-blog-one .rs-blog-content.has-position {
        padding: 20px 20px 25px 20px;
    }
}

.rs-blog-one .rs-blog-content.has-padding {
    padding: 25px 35px 25px 30px;
    background: var(--rs-bg-primary);
}

@media only screen and (max-width: 1600px) {
    .rs-blog-one .rs-blog-content.has-padding {
        padding: 25px 25px 25px 25px;
    }
}

.rs-blog-one .rs-blog-title {
    margin: 10px 0 10px;
}

    .rs-blog-one .rs-blog-title.has-white {
        color: var(--rs-white);
        margin: 15px 0 15px;
    }

    .rs-blog-one .rs-blog-title.has-big {
        font-size: 36px;
    }

@media only screen and (max-width: 1600px) {
    .rs-blog-one .rs-blog-title.has-big {
        font-size: 28px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-blog-one .rs-blog-title.has-big {
        font-size: 25px;
    }
}

.rs-blog-one .rs-blog-meta-item {
    position: relative;
    display: flex;
    align-items: center;
}

    .rs-blog-one .rs-blog-meta-item::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        inset-inline-start: -15px;
        top: 50%;
        background: #616161;
        transform: translate(-50%, -50%);
    }

    .rs-blog-one .rs-blog-meta-item.has-white::before {
        background: var(--rs-white);
    }

    .rs-blog-one .rs-blog-meta-item:not(:last-child)::before {
        content: none;
    }

    .rs-blog-one .rs-blog-meta-item span {
        font-size: 16px;
    }

    .rs-blog-one .rs-blog-meta-item.has-white span {
        color: var(--rs-white);
    }

.rs-blog-one .rs-blog-meta {
    display: flex;
    align-items: center;
    gap: 20px 30px;
}

.rs-blog-one .rs-blog-meta-author {
    font-weight: 700;
}

    .rs-blog-one .rs-blog-meta-author:hover {
        color: #407294;
    }

.rs-blog-one .rs-blog-description {
    margin-bottom: 28px;
}

    .rs-blog-one .rs-blog-description.has-white {
        color: var(--rs-white);
    }

.rs-blog-one .rs-blog-tag.has-white a:hover {
    background: var(--rs-white);
    color: var(--rs-black);
}

.rs-blog-one.has-theme-blue .rs-blog-meta-author:hover {
    color: var(--rs-theme-blue);
}

.rs-blog-one.has-theme-blue .rs-blog-bg-thumb.has-bg::before {
    background: linear-gradient(transparent, #005EB8), linear-gradient(transparent, #000000);
}

.rs-blog-one.has-theme-blue .rs-blog-thumb {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.rs-blog-one.has-theme-blue .rs-blog-title {
    color: #0C3C61;
}

    .rs-blog-one.has-theme-blue .rs-blog-title.has-white {
        color: var(--rs-white);
    }

.rs-blog-one.has-theme-light-blue .rs-blog-content.has-padding {
    padding: 80px 40px 80px 40px;
}

@media only screen and (max-width: 1600px) {
    .rs-blog-one.has-theme-light-blue .rs-blog-content.has-padding {
        padding: 30px 30px 30px 30px;
    }
}

.rs-blog-one.has-theme-light-blue .rs-blog-item.has-grid {
    grid-template-columns: 1fr 400px;
}

@media only screen and (max-width: 1600px) {
    .rs-blog-one.has-theme-light-blue .rs-blog-item.has-grid {
        grid-template-columns: 1fr 300px;
    }
}

@media only screen and (max-width: 1366px) {
    .rs-blog-one.has-theme-light-blue .rs-blog-item.has-grid {
        grid-template-columns: 1fr 250px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-blog-one.has-theme-light-blue .rs-blog-item.has-grid {
        grid-template-columns: 1fr 200px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-blog-one.has-theme-light-blue .rs-blog-item.has-grid {
        grid-template-columns: 1fr 260px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-blog-one.has-theme-light-blue .rs-blog-item.has-grid {
        grid-template-columns: 1fr;
    }
}

.rs-blog-one.has-theme-light-blue .rs-blog-btn {
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 991px) {
    .rs-blog-one.has-theme-light-blue .rs-blog-btn {
        justify-content: start;
    }
}

.rs-blog-one.has-theme-light-blue .rs-blog-meta-author:hover {
    color: var(--rs-theme-light-blue);
}

.rs-blog-one.has-theme-cyan .rs-blog-meta-author:hover {
    color: var(--rs-theme-cyan);
}

.rs-blog-one.has-theme-cyan .rs-blog-bg-thumb.has-bg::before {
    background: linear-gradient(transparent, #1455AA), linear-gradient(transparent, #000000);
}

.rs-blog-one.has-theme-cyan .rs-blog-thumb {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.rs-blog-one.has-theme-cyan .rs-blog-title {
    color: var(--rs-text-tertiary);
}

    .rs-blog-one.has-theme-cyan .rs-blog-title.has-white {
        color: var(--rs-white);
    }

.rs-blog-two .rs-blog-item {
    position: relative;
}

    .rs-blog-two .rs-blog-item:hover .rs-blog-thumb img {
        transform: scale(1.1);
    }

    .rs-blog-two .rs-blog-item:hover .rs-square-btn {
        background: #407294;
        color: #fff;
    }

.rs-blog-two .rs-blog-content {
    position: relative;
    background: #f4f4f4;
    padding: 30px 30px 30px 30px;
}

@media only screen and (max-width: 1199px) {
    .rs-blog-two .rs-blog-content {
        padding: 20px 20px 20px 20px;
    }
}

.rs-blog-two .rs-blog-thumb {
    position: relative;
    overflow: hidden;
}

    .rs-blog-two .rs-blog-thumb img {
        width: 100%;
        transition: all 0.5s ease;
    }

.rs-blog-two .rs-blog-title {
    margin: 5px 0 15px;
    min-height: 50px; /* Desktop için sabit yükseklik */
    align-items: center; /* Yazıyı dikey ortalar */
}

@media only screen and (max-width: 1199px) {
    .rs-blog-two .rs-blog-title {
        margin: 15px 0 15px;
        min-height: 110px; /* Tablet için biraz düşürdük */
    }
}

@media only screen and (max-width: 767px) {
    .rs-blog-two .rs-blog-title {
        min-height: auto; /* Mobilde sabit yükseklik kalksın */
    }
}

.rs-blog-two .rs-blog-meta-item {
    position: relative;
    display: flex;
    align-items: center;
}

    .rs-blog-two .rs-blog-meta-item::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        inset-inline-start: -15px;
        top: 50%;
        background: #616161;
        transform: translate(-50%, -50%);
    }

    .rs-blog-two .rs-blog-meta-item:not(:last-child) {
        padding-inline-end: 15px;
        margin-inline-end: 15px;
    }

        .rs-blog-two .rs-blog-meta-item:not(:last-child)::before {
            content: none;
        }

    .rs-blog-two .rs-blog-meta-item span {
        font-size: 16px;
    }

.rs-blog-two .rs-blog-meta {
    display: flex;
    align-items: center;
}

.rs-blog-two .rs-blog-meta-author {
    font-weight: 700;
}

    .rs-blog-two .rs-blog-meta-author:hover {
        color: #407294;
    }

.rs-blog-two .rs-blog-description {
    margin-bottom: 28px;
}

    .rs-blog-two .rs-blog-description.has-white {
        color: var(--rs-white);
    }

.rs-blog-two .rs-blog-tag {
    position: absolute;
    top: -15px;
}

.rs-blog-two .rs-blog-btn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 25px;
    margin-top: 30px;
}

.rs-blog-two.has-theme-yellow .rs-blog-item:hover .rs-square-btn {
    background: var(--rs-theme-yellow);
    color: var(--rs-black);
}

    .rs-blog-two.has-theme-yellow .rs-blog-item:hover .rs-square-btn .icon-box i {
        color: var(--rs-black);
    }

.rs-blog-two.has-theme-yellow .rs-blog-title {
    margin: 5px 0 15px;
}

@media only screen and (max-width: 1199px) {
    .rs-blog-two.has-theme-yellow .rs-blog-title {
        margin: 15px 0 15px;
    }
}

.rs-blog-two.has-theme-yellow .rs-blog-meta-author:hover {
    color: var(--rs-theme-yellow);
}

.rs-blog-two.has-theme-yellow .rs-blog-thumb img {
    height: 235px;
    object-fit: cover;
}

.rs-blog-two.has-theme-deep-blue .rs-blog-content {
    position: relative;
    background: transparent;
    padding: 0;
}

.rs-blog-two.has-theme-deep-blue .rs-blog-title {
    margin: 5px 0 15px;
}

.rs-blog-two.has-theme-deep-blue .rs-blog-tag {
    margin-inline-start: 30px;
    position: relative;
}

.rs-blog-two.has-theme-deep-blue .rs-blog-meta-author:hover {
    color: var(--rs-theme-deep-blue);
}

.rs-blog-two.has-theme-green .rs-blog-item:hover .rs-square-btn {
    background: var(--rs-theme-light-green);
}

.rs-blog-two.has-theme-green .rs-blog-title {
    color: var(--rs-theme-green);
}

    .rs-blog-two.has-theme-green .rs-blog-title a:hover {
        color: var(--rs-theme-light-green);
        text-decoration: none;
    }

.rs-blog-two.has-theme-green .rs-blog-meta-author:hover {
    color: var(--rs-theme-light-green);
}

.rs-blog-two.has-theme-orange {
    position: relative;
    z-index: 1;
}

    .rs-blog-two.has-theme-orange.has-pos-none::before {
        content: none;
    }

    .rs-blog-two.has-theme-orange::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 550px;
        background: var(--rs-bg-primary);
        z-index: -1;
        top: 0;
        inset-inline-start: 0;
    }

    .rs-blog-two.has-theme-orange .rs-blog-item:hover .rs-square-btn {
        background: #407294;
    }

    .rs-blog-two.has-theme-orange .rs-blog-meta-author:hover {
        color: #407294;
    }

.rs-blog-three .rs-blog-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rs-blog-three .rs-blog-item {
        grid-template-columns: 200px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .rs-blog-three .rs-blog-item {
        grid-template-columns: repeat(1, 1fr);
    }
}

.rs-blog-three .rs-blog-item:hover .rs-blog-thumb img {
    transform: scale(1.1);
}

.rs-blog-three .rs-blog-thumb {
    position: relative;
    overflow: hidden;
}

    .rs-blog-three .rs-blog-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .rs-blog-three .rs-blog-thumb .rs-blog-tag {
        position: absolute;
        top: 20px;
        inset-inline-start: 20px;
    }

.rs-blog-three .rs-blog-content {
    background: var(--rs-white);
    padding: 50px 30px 50px 30px;
}

@media only screen and (max-width: 1600px) {
    .rs-blog-three .rs-blog-content {
        padding: 40px 15px 40px 20px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-blog-three .rs-blog-content {
        padding: 40px 15px 40px 15px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-blog-three .rs-blog-content {
        padding: 20px 30px 30px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-blog-three .rs-blog-content {
        padding: 20px 20px 20px 20px;
    }
}

.rs-blog-three .rs-blog-meta {
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rs-blog-three .rs-blog-meta {
        flex-wrap: wrap;
        gap: 5px 0;
    }
}

.rs-blog-three .rs-blog-meta-item {
    position: relative;
}

    .rs-blog-three .rs-blog-meta-item::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        inset-inline-start: -15px;
        top: 50%;
        background: #616161;
        transform: translate(-50%, -50%);
    }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rs-blog-three .rs-blog-meta-item::before {
        content: none;
    }
}

.rs-blog-three .rs-blog-meta-item:not(:last-child) {
    padding-inline-end: 15px;
    margin-inline-end: 15px;
}

    .rs-blog-three .rs-blog-meta-item:not(:last-child)::before {
        content: none;
    }

.rs-blog-three .rs-blog-meta-item span {
    font-size: 16px;
}

.rs-blog-three .rs-blog-title {
    color: var(--rs-theme-green);
    margin-top: 15px;
}

    .rs-blog-three .rs-blog-title a:hover {
        color: var(--rs-theme-green);
    }

.rs-blog-three .rs-blog-btn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 20px;
    margin-top: 25px;
}

.rs-blog-three .rs-blog-meta-author {
    font-weight: 700;
}

    .rs-blog-three .rs-blog-meta-author:hover {
        color: var(--rs-theme-green);
    }

.rs-blog-three .rs-blog-btn {
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 991px) {
    .rs-blog-three .rs-blog-btn {
        justify-content: start;
    }
}

.rs-blog-four {
    position: relative;
    z-index: 1;
}

    .rs-blog-four .rs-blog-item {
        position: relative;
        z-index: 1;
    }

    .rs-blog-four .rs-blog-bg-thumb {
        position: absolute;
        width: 100%;
        height: calc(100% - 230px);
        top: 0;
        inset-inline-start: 0;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -1;
    }

    .rs-blog-four .rs-blog-thumb {
        position: relative;
    }

        .rs-blog-four .rs-blog-thumb img {
            width: 100%;
        }

[dir=rtl] .rs-blog-four .rs-blog-thumb img {
    transform: rotateY(-180deg);
}

.rs-blog-four .rs-blog-inner {
    background: var(--rs-bg-primary);
    border-radius: 15px 0px 15px 15px;
    padding: 20px 30px 25px 30px;
}

[dir=rtl] .rs-blog-four .rs-blog-inner {
    border-radius: 0px 15px 15px 15px;
}

@media only screen and (max-width: 1199px) {
    .rs-blog-four .rs-blog-inner {
        padding: 20px 20px 20px 20px;
    }
}

.rs-blog-four .rs-blog-content {
    position: absolute;
    bottom: 0;
    z-index: 1;
    margin-inline-start: 30px;
}

.rs-blog-four .rs-blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.rs-blog-four .rs-blog-meta-item {
    position: relative;
    display: flex;
    align-items: center;
}

    .rs-blog-four .rs-blog-meta-item::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        inset-inline-start: -15px;
        top: 50%;
        background: #616161;
        transform: translate(-50%, -50%);
    }

    .rs-blog-four .rs-blog-meta-item:not(:last-child)::before {
        content: none;
    }

    .rs-blog-four .rs-blog-meta-item span {
        font-size: 16px;
    }

.rs-blog-four .rs-blog-title {
    margin-bottom: 15px;
}

.rs-blog-four .rs-blog-tag {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
}

    .rs-blog-four .rs-blog-tag a {
        border-radius: 30px 30px 30px 30px;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        background: var(--rs-white);
        color: #407294;
    }

        .rs-blog-four .rs-blog-tag a:hover {
            background: #407294;
            color: var(--rs-white);
        }

.rs-blog-four .rs-blog-meta-author {
    font-weight: 700;
}

    .rs-blog-four .rs-blog-meta-author:hover {
        color: #407294;
    }

/*----------------------------------------*/
/*  3.2.1 Blog tag css
/*----------------------------------------*/
.rs-blog-tag a {
    color: #fff;
    font-size: 15px;
    padding: 6px 15px 6px 15px;
    border-radius: 2px;
    background: #407294;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

    .rs-blog-tag a:hover {
        background: var(--rs-black);
    }

.rs-blog-tag.has-theme-red a {
    background: #0000B3;
}

    .rs-blog-tag.has-theme-red a:hover {
        background: var(--rs-black);
    }

.rs-blog-tag.has-theme-blue a {
    background: var(--rs-theme-blue);
}

    .rs-blog-tag.has-theme-blue a:hover {
        background: var(--rs-black);
    }

.rs-blog-tag.has-theme-green a {
    background: var(--rs-theme-light-green);
}

    .rs-blog-tag.has-theme-green a:hover {
        background: var(--rs-theme-green);
    }

.rs-blog-tag.has-theme-yellow a {
    background: var(--rs-theme-yellow);
    color: var(--rs-black);
}

    .rs-blog-tag.has-theme-yellow a:hover {
        background: #EBB40E;
    }

.rs-blog-tag.has-theme-deep-blue a {
    background: var(--rs-theme-deep-blue);
    color: var(--rs-white);
}

    .rs-blog-tag.has-theme-deep-blue a:hover {
        background: #1F1CB9;
    }

.rs-blog-tag.has-theme-orange a {
    background: #407294;
    color: var(--rs-white);
}

    .rs-blog-tag.has-theme-orange a:hover {
        background: rgb(255, 92, 0);
    }

.rs-blog-tag.has-theme-cyan a {
    background: var(--rs-theme-cyan);
    color: var(--rs-white);
}

    .rs-blog-tag.has-theme-cyan a:hover {
        background: var(--rs-theme-medium-blue);
    }


/* RS BLOG – EŞİT KART YÜKSEKLİĞİ & RESPONSIVE */

.rs-blog-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}


.rs-blog-thumb {
    height: 300px;
    overflow: hidden;
}

    .rs-blog-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



/* RESPONSIVE */

@media (max-width: 991px) {
    .rs-blog-thumb {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .rs-blog-thumb {
        height: 180px;
    }
}

.rs-square-btn.has-light-grey {
    background: #E4E4E4;
    height: 40px;
    padding: 8px 10px;
}

    .rs-square-btn.has-light-grey .icon-box i {
        font-size: 20px;
    }

    .rs-square-btn.has-light-grey:hover {
        background: #7a1817;
    }

        .rs-square-btn.has-light-grey:hover .icon-box i {
            color: var(--rs-white);
        }
    .rs-square-btn.has-light-grey .icon-box i {
        font-size: 20px;
    }
.PaginationContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    padding-bottom:10px;
}
