/* Blog sayfası için CSS stilleri */
.blog-area {
    padding: 100px 0;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.single-blog {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-blog:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.blog-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-image img.image-scale {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-meta {
    margin-bottom: 10px;
}

.blog-meta span {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-content h3 a:hover {
    color: #007bff;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.widget-area {
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.single-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories li {
    margin-bottom: 10px;
}

.categories li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.categories li a:hover {
    color: #007bff;
    padding-left: 5px;
} 