* {
    box-sizing: border-box;
}

.kose-yazisi-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px !important;
}
.kose-main-content nav, .kose-yazisi-single nav {
    margin: 0 !important;
    margin-bottom: 20px !important;
}
.kose-main-content{
    width: 686px !important;
}

.kose-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.kose-breadcrumb a {
    color: #e81f09;
    text-decoration: none;
}

.kose-breadcrumb .separator {
    margin: 0 8px;
}

.kose-yazar-info {
    display: flex;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.yazar-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.yazar-details {
    flex: 1;
}

.yazar-label {
    font-size: 12px;
    color: #e81f09;
    font-weight: 600;
    text-transform: uppercase;
}

.yazar-name {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0;
}

.yazar-unvan {
    font-size: 14px;
    color: #666;
}

.yazar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.yazar-all-posts {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #e81f09;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #e81f09;
    border-radius: 4px;
}

.yazar-all-posts:hover {
    background: #e81f09;
    color: #fff;
}

.yazar-divider {
    width: 100%;
    height: 1px;
    background: #ddd;
}

.yazar-social {
    display: flex;
    gap: 8px;
}

.yazar-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #666;
}

.yazar-social a:hover {
    background: #e81f09;
    color: #fff;
}

.entry-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.entry-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.entry-content {
    line-height: 2.2;
    margin-bottom: 30px;
}

.entry-content p {
    margin-bottom: 20px;
}

[data-type="other-articles"] {
    display: none;
}

.social-share {
    display: flex;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.share-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
}

.share-link:hover {
    background: #e81f09;
    color: #fff;
}

/* Yazarın Diğer Yazıları */
.author-other-posts {
    padding-top: 30px;
    margin-top: 30px;
}

.author-other-posts .section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.author-other-posts .other-posts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kose-other-posts {
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.other-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.other-post-item {
    padding: 15px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 4px;
}

.other-post-item a {
    text-decoration: none;
    color: #333;
}

.other-post-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.other-post-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.other-post-item:hover .other-post-title {
    color: #e81f09;
}

.other-post-date {
    font-size: 13px;
    color: #999;
}

/* Author Archive Styles */
.kose-posts-list {
    margin-top: 30px;
}

.kose-post-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.kose-post-item:last-child {
    border-bottom: none;
}

.kose-post-item .post-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.kose-post-item .post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.kose-post-item .post-title a:hover {
    color: #e81f09;
}

.kose-post-item .post-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.kose-post-item .post-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.kose-post-item .read-more {
    display: inline-block;
    color: #e81f09;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.kose-post-item .read-more:hover {
    text-decoration: underline;
}

.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.pagination a:hover {
    background: #e81f09;
    color: #fff;
    border-color: #e81f09;
}

.pagination .current {
    background: #e81f09;
    color: #fff;
    border-color: #e81f09;
}

.sidebar-kose-yazisi {
    width: 100% !important;
    max-width: 320px;
    padding: 0 0 0 20px;
    padding-left: 0px !important;
}

.authors-list-widget {
    background: transparent;
}

.authors-list-widget .widget-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.authors-list-widget .the-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.the-subtitle{
    padding-left: 15px !important;
}

#authors-list-widget .the-global-title::before{
    top: 11px !important;
}

.authors-list-widget .the-global-title{
    padding-left: 0 !important;
}

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

.authors-wrap > li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.authors-wrap > li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-author-2 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-author-2 .author-avatar {
    flex-shrink: 0;
}

.about-author-2 .author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.about-author-2 .author-info {
    flex: 1;
}

.about-author-2 .author-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.about-author-2 .author-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.about-author-2 .author-name a:hover {
    color: #0066cc;
}

.about-author-2 .author-bio {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.about-author-2 .author-bio a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.about-author-2 .author-bio a:hover {
    color: #0066cc;
}

.about-author-2 .social-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-author-2 .social-icons-item {
    margin: 0;
}

.about-author-2 .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.about-author-2 .social-link:hover {
    background: #333;
    color: #fff;
}

.about-author-2 .social-link span[class^="tie-icon-"] {
    font-size: 14px;
}

.about-author-2 .screen-reader-text {
    position: absolute;
    left: -9999px;
}

@media (max-width: 768px) {
    .kose-yazisi-container {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .kose-main-content{
        width: 100% !important;
    }

    .sidebar-kose-yazisi {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    /* Breadcrumb - Mobil */
    .kose-breadcrumb {
        font-size: 12px;
        margin-bottom: 15px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    /* Yazar Info Alanı - Mobil */
    .kose-yazar-info {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .yazar-avatar {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .yazar-avatar img {
        width: 80px;
        height: 80px;
    }

    .yazar-details {
        width: 100%;
        text-align: center;
    }

    .yazar-label {
        font-size: 11px;
    }

    .yazar-name {
        font-size: 20px;
        margin: 8px 0;
    }

    .yazar-unvan {
        font-size: 14px;
        margin: 5px 0 0 0;
    }

    .yazar-actions {
        width: 100%;
        align-items: center;
        flex-direction: column;
        gap: 12px;
    }

    .yazar-all-posts {
        width: auto;
        padding: 8px 20px;
        font-size: 14px;
    }

    .yazar-divider {
        width: 60%;
        height: 1px;
        background: #ddd;
    }

    .yazar-social {
        justify-content: center;
        gap: 12px;
    }

    .yazar-social a {
        width: 36px;
        height: 36px;
    }

    /* Başlık */
    .entry-title {
        font-size: 24px;
        line-height: 1.3;
    }

    /* İçerik */
    .entry-content {
        font-size: 16px;
        line-height: 1.8;
    }

    /* Paylaş Butonları */
    .social-share {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .share-link {
        width: 36px;
        height: 36px;
    }

    /* Yazarın Diğer Yazıları - Mobil */
    .author-other-posts {
        padding-top: 20px;
        margin-top: 20px;
    }

    .author-other-posts .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .author-other-posts .other-post-item {
        padding: 12px;
    }

    .author-other-posts .other-post-title {
        font-size: 15px;
    }

    .author-other-posts .other-post-date {
        font-size: 12px;
    }

    /* Diğer Yazılar */
    .other-post-item {
        padding: 12px;
    }

    .other-posts-title {
        font-size: 18px;
    }

    /* Archive Yazı Listesi */
    .kose-posts-list {
        margin-top: 20px;
    }

    .kose-post-item {
        padding: 15px 0;
    }

    .kose-post-item .post-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .kose-post-item .post-excerpt {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Pagination */
    .pagination {
        margin-top: 30px;
    }

    .pagination a,
    .pagination span {
        padding: 6px 12px;
        font-size: 14px;
    }

    /* Sidebar Yazarlar */
    .authors-list-widget .widget-title {
        margin-bottom: 15px;
    }

    .authors-wrap > li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .about-author-2 {
        gap: 10px;
    }

    .about-author-2 .author-avatar img {
        width: 50px;
        height: 50px;
    }

    .about-author-2 .author-name {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .about-author-2 .author-bio {
        font-size: 12px;
    }
}
