﻿
.breadcrumb-wrap.bg-f.br-1 {
    background-image: url('assets/img/team/team.jpg');
    background-position: center;
    background-size: cover;
}

.blog-info .name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 1px;
}

.blog-info .title {
    font-size: 11px;
    color: #a47355;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.blog-info .experience {
    font-size: 12px;
    color: #526077;
    display: flex;
    align-items: center;
}

    .blog-info .experience i {
        color: #4a0de0;
        margin-right: 8px;
        font-size: 16px;
    }

.blog-info .specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin-top: 4px;
}

    .blog-info .specialties span {
        border: none;
        background: none;
        padding: 0;
        color: #4a0de0;
        font-size: 10px;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

        .blog-info .specialties span:before {
            content: "✦ ";
            color: #4a0de0;
            font-size: 10px;
        }

        .blog-info .specialties span:hover {
            color: #cc2379;
        }

.appointment-info {
    padding: 20px;
}

@media (max-width: 991px) {
    .appointment-info {
        padding: 0;
    }
}

/* Search styles */
.search-section {
    margin-top: 40px;
}

.search-wrapper {
    border-radius: 12px;
}

.search-input {
    position: relative;
}

    .search-input input {
        height: 42px;
        border: 1px solid #eee;
        border-radius: 8px;
        padding-left: 45px;
        padding-right: 20px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .search-input input:focus {
            border-color: #a47355;
            box-shadow: none;
        }

    .search-input i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #4a0de0;
        font-size: 18px;
    }

.filter-btn, .sort-btn {
    height: 42px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .filter-btn:hover, .sort-btn:hover {
        background: #cc2379;
        border-color: #cc2379;
        color: #fff;
    }

    .filter-btn i, .sort-btn i {
        font-size: 16px;
    }

.dropdown-menu {
    padding: 0;
    border: 1px solid #eee;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.dropdown-item {
    padding: 4px 16px;
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #cc2379;
    }

.dropdown-divider {
    margin: 0;
    border-color: #eee;
}

.filter-menu {
    padding: 0;
}

.filter-section {
    padding: 12px 16px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.filter-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.clear-section {
    background: none;
    border: none;
    padding: 0;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

    .clear-section:hover {
        opacity: 1;
        color: #666;
    }

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
}

    .filter-option span {
        font-size: 14px;
        color: #666;
    }

    .filter-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
        border: 1px solid #ddd;
        border-radius: 3px;
        cursor: pointer;
        accent-color: #cc2379;
    }

        .filter-option input[type="checkbox"]:checked {
            background-color: #a47355;
            border-color: #a47355;
        }

        .filter-option input[type="checkbox"]:hover {
            border-color: #a47355;
        }

.filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid #eee;
}

    .filter-actions .btn {
        min-width: 80px;
        padding: 6px 12px;
    }

@media (max-width: 767px) {
    .search-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

.next-slot {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .next-slot i {
        font-size: 20px;
        color: #4a0de0;
        margin-right: 10px;
    }

.slot-text span {
    font-size: 11px;
    color: #666;
    display: block;
    margin-bottom: 0;
}

.slot-text h5 {
    font-size: 11px;
    color: #333;
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}


.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

    .action-buttons .btn {
        flex: 1;
        padding: 6px;
        text-align: center;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

/* Mobil için butonları yan yana ve ortala */
@media (max-width: 767px) {
    .action-buttons {
        justify-content: center;
    }

        .action-buttons .btn {
            flex: none;
            width: calc(30% - 6px);
        }
}

     /*   .action-buttons .btn.style1 {
            background: #a47355;
            color: #fff;
            border: none;
        }*/

        .action-buttons .btn.style2 {
           border-radius:100px;
        }

       /* .action-buttons .btn.style1:hover {
            background: #444;
        }*/

    /*    .action-buttons .btn.style2:hover {
            background: #a47355;
            color: #fff;
        }*/


.view-all-btn{
    color:#4a0de0;
}


.view-all-btn:hover {
    color: #cc2379;
}

.blog-info .specialties {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    .blog-info .specialties::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }

.blog-card.style3 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

    .blog-card.style3 .blog-img {
        width: 200px;
        height: 240px;
        margin-right: 30px;
        flex-shrink: 0;
    }

.blog-card.style3 {
    height: 240px;
    overflow: hidden;
}

    .blog-card.style3 .blog-info {
        flex: 1;
        padding: 20px 0;
    }

/* ====== TABLETTEKİ RESPONSIVE SORUNUNU ÇÖZMEK İÇİN DEĞİŞTİRİLMİŞTİR - BAŞLANGIÇ ====== */
/* Tablet için (768px - 991px arası) */
@media (min-width: 768px) and (max-width: 991px) {
    .blog-card.style3 {
        flex-direction: row;
        height: 240px;
        max-width: 800px;
        margin: 0 auto 30px;
    }

        .blog-card.style3 .blog-img {
            width: 200px;
            height: 240px;
            margin-right: 30px;
            margin-bottom: 0;
        }

        .blog-card.style3 .blog-info {
            padding: 20px 20px 20px 0; /* Üst 20px, Sağ 20px, Alt 20px, Sol 0 */
        }

        .blog-card.style3 .row {
            margin: 0;
        }

        .blog-card.style3 .col-md-7,
        .blog-card.style3 .col-md-5 {
            padding: 0;
        }

        /* Uzmanlık alanları için tablet görünümü */
        .blog-card.style3 .specialties {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 12px; /* Dikey 4px, yatay 12px boşluk */
            margin-top: 4px;
        }

            .blog-card.style3 .specialties span {
                white-space: nowrap; /* Yazıların alt satıra geçmesini engellemek için */
            }

            .blog-card.style3 .specialties span {
                border: none;
                background: none;
                padding: 0;
                color: #a47355;
                font-size: 10px;
                transition: all 0.3s ease;
            }

                .blog-card.style3 .specialties span:before {
                    content: "✦ ";
                    color: #a47355;
                    font-size: 10px;
                }

                .blog-card.style3 .specialties span:after {
                    content: "";
                }

                .blog-card.style3 .specialties span:last-child:after {
                    content: "";
                }

                .blog-card.style3 .specialties span:hover {
                    color: #444;
                }
}

/* Mobil için (768px altı) */
@media (max-width: 767px) {
    .blog-card.style3 {
        flex-direction: column;
        height: auto;
    }

        .blog-card.style3 .blog-img {
            max-width: 280px;
            margin: 20px auto;
        }

            .blog-card.style3 .blog-img img {
                width: 100%;
                height: auto;
            }

        .blog-card.style3 .blog-info {
            padding: 0 20px 20px 20px;
            text-align: center;
        }

    .blog-info .specialties {
        justify-content: center;
    }

    /* Diğer bilgiler için */
    .blog-card.style3 .experience {
        justify-content: center;
    }

    /* Randevu ve ücret bilgileri için */
    .blog-card.style3 .next-slot {
        display: inline-block;
        margin: 0 10px;
        text-align: center;
    }
}

