.blog-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-detail-content {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.blog-detail-image {
    height: 400px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    padding: 40px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--acik-yazi);
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: var(--accent-renk);
}

.blog-detail-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--yazi-renk);
    line-height: 1.3;
    margin-bottom: 30px;
}

.blog-detail-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--acik-yazi);
}

.blog-detail-text p {
    margin-bottom: 20px;
}

.blog-detail-text h2,
.blog-detail-text h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--yazi-renk);
    margin: 30px 0 15px;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.blog-detail-tags a {
    padding: 8px 16px;
    background: #f1f5f9;
    color: var(--yazi-renk);
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    -webkit-transition: all 0.4s ease !important;
    -moz-transition: all 0.4s ease !important;
    transition: all 0.4s ease !important;
}

.blog-detail-tags a:hover {
    background: var(--accent-renk);
    color: #fff;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.blog-share span {
    font-weight: 600;
    color: var(--yazi-renk);
}

.blog-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--yazi-renk);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    -webkit-transition: all 0.4s ease !important;
    -moz-transition: all 0.4s ease !important;
    transition: all 0.4s ease !important;
}

.blog-share a:hover {
    background: var(--accent-renk);
    color: #fff;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.sidebar-widget h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--yazi-renk);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-search {
    display: flex;
    gap: 10px;
}

.sidebar-search input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
}

.sidebar-search button {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--ana-renk);
    color: #fff;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

.sidebar-search button:hover {
    background: var(--accent-renk);
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--yazi-renk);
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    -webkit-transition: color 0.3s ease !important;
    -moz-transition: color 0.3s ease !important;
    transition: color 0.3s ease !important;
}

.sidebar-categories a:last-child {
    border-bottom: none;
}

.sidebar-categories a:hover {
    color: var(--accent-renk);
}

.sidebar-categories span {
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.recent-post {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.recent-post:last-child {
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.recent-post-content h5 a {
    color: var(--yazi-renk);
    text-decoration: none;
    -webkit-transition: color 0.3s ease !important;
    -moz-transition: color 0.3s ease !important;
    transition: color 0.3s ease !important;
}

.recent-post-content h5 a:hover {
    color: var(--accent-renk);
}

.recent-post-content span {
    font-size: 13px;
    color: var(--acik-yazi);
}

@media (max-width: 1200px) {
    .blog-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-grid-page {
        grid-template-columns: 1fr;
    }
    
    .blog-detail-image {
        height: 250px;
    }
    
    .blog-detail-body {
        padding: 24px;
    }
}