.story-card {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
    transition: all .25s ease;
}

.story-image {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;

    position: relative;
}

.story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15);
    opacity: 0;
    transition: opacity .25s ease;
}


.story-card:hover {
    transform: translateY(-6px);
}

.story-card:hover .story-image::after {
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .12);
}

.story-card .card-body {
    padding: 1rem;
    padding-bottom: 2.25rem; /* alt nefes */
}

.story-content {
    max-height: 8em; /* ~3 satır */
    overflow: hidden;
    position: relative;
}

.story-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.5em;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

html[dir="rtl"] .btn-prev {
    flex-direction: row-reverse;
}

html[dir="rtl"] .btn-next {
    flex-direction: row-reverse;
}

body {
    font-family: "Rubik", sans-serif;
}

html[dir="rtl"] {
    body {
        font-family: "Noto Sans Arabic", sans-serif !important;
        letter-spacing: 0;
    }

    .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, p, a, span, li, div {
        font-family: "Noto Sans Arabic", sans-serif !important;
    }

    .faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title {
        font-family: "Noto Sans Arabic", sans-serif !important;
    }
    i{
        line-height: unset !important;
    }
}

/* Desktop */
.whatsapp-icon {
    width: 40px;
    height: 40px;
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }

    .custom-carousel-btn {
        width: 30px !important;
        height: 30px !important;
    }
}