/* Blog Sayfaları için Özel Stiller */

.blog-detail {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-header-image {
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    height: 400px;
    object-fit: cover;
}

.blog-date {
    background: var(--primary-color);
    padding: 15px 25px;
    border-radius: 5px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.blog-date h3 {
    color: #fff;
    margin: 0;
    font-size: 24px;
}

.blog-date span {
    color: #fff;
    font-size: 14px;
}

.blog-title {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.blog-meta {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.blog-meta span {
    margin-right: 20px;
    color: var(--light-text);
    font-size: 14px;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.blog-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--light-text);
}


/* Sidebar Stilleri */

.blog-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-sidebar_heading h4 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.blog-sidebar_category li {
    margin-bottom: 12px;
}

.blog-sidebar_category a {
    color: var(--light-text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.blog-sidebar_category a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.blog-sidebar_category i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 12px;
}


/* Randevu Butonu Bölümü */

.blog-join_us {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg-img-3.jpg ') no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    color: #ffffff;
    /* Yazı rengini beyaz yapalım */
}

.blog-join_us h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-join_us p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.blog-join_us .btn {
    background: transparent;
    /* Yeşil */
    color: #fff;
    /* Yazı rengi beyaz */
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.blog-join_us .btn:hover {
    background: #098c18;
    color: var(--text-color);
    box-shadow: none;
    transform: none;
}