.author-page {
    background: #eee;
    padding: 28px 0 50px;
}

.author-page-shell {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 160px;
    gap: 22px;
    padding: 0 16px;
}

.author-side-ad {
    min-height: 600px;
}

.author-ad-box {
    width: 160px;
    min-height: 600px;
    background: #fff;
    border: 1px solid #cfcfcf;
    color: #bcbcbc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 38px 0;
    position: sticky;
    top: 90px;
}

.author-ad-box .ad-name {
    font-size: 18px;
    color: #d1d1d1;
}

.author-ad-box .ad-size {
    font-size: 42px;
    line-height: 1.25;
    font-weight: 900;
    color: #777;
    text-align: center;
}

.author-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.author-main-card {
    background: #fff;
    padding: 28px;
}

.author-profile-strip {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
}

.author-profile-strip img {
    width: 180px;
    height: 150px;
    object-fit: cover;
}

.author-profile-info {
    position: relative;
}

.author-profile-info h3 {
    margin: 0 0 8px;
    color: #d71920;
    font-size: 22px;
    font-weight: 800;
}

.author-profile-info p {
    margin: 0;
    color: #777;
    font-size: 15px;
}

.author-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.author-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #334155;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.author-all-posts-link {
    display: block;
    background: #334155;
    color: #fff;
    text-align: center;
    padding: 9px 15px;
    margin-bottom: 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.author-post-title {
    margin: 0 0 14px;
    color: #333;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .2px;
}

.author-post-meta {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
    margin-bottom: 22px;
}

.author-share-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: #f7f7f7;
    padding: 14px 0;
    margin-bottom: 28px;
}

.author-share-buttons {
    display: flex;
    gap: 8px;
}

.author-share-buttons a,
.author-font-buttons button {
    width: 42px;
    height: 36px;
    border: 0;
    background: #334155;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    cursor: pointer;
}

.author-font-buttons {
    display: flex;
    gap: 8px;
}

.author-post-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    margin-bottom: 24px;
}

.author-post-body {
    color: #111;
    font-size: 22px;
    line-height: 1.65;
}

.author-post-body p {
    margin: 0 0 24px;
}

.author-post-body strong {
    color: #d71920;
}

.author-divider {
    height: 1px;
    background: #ccc;
    margin: 36px 0;
    position: relative;
}

.author-divider::after {
    content: "";
    width: 46px;
    height: 5px;
    background: #e5e5e5;
    position: absolute;
    left: 50%;
    top: -2px;
    transform: translateX(-50%);
}

.related-author-post {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    background: #f5f5f5;
    border: 1px solid #ddd;
    margin-bottom: 26px;
    text-decoration: none;
    color: #111;
}

.related-author-post img {
    width: 260px;
    height: 120px;
    object-fit: cover;
}

.related-author-post div {
    padding: 22px;
}

.related-author-post span {
    display: block;
    color: #d71920;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 8px;
}

.related-author-post strong {
    display: block;
    font-size: 19px;
    line-height: 1.3;
}

.author-section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 34px 0 18px;
}

.author-section-title h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    color: #333;
    white-space: nowrap;
}

.author-section-title::after {
    content: "";
    height: 1px;
    background: #ccc;
    flex: 1;
}

.author-other-posts {
    border-top: 1px solid #e0e0e0;
}

.author-other-row {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) 120px;
    gap: 10px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #111;
    text-decoration: none;
}

.author-other-row .dot {
    width: 16px;
    height: 16px;
    background: #d71920;
    border-radius: 50%;
}

.author-other-row strong {
    font-size: 18px;
}

.author-other-row small {
    text-align: right;
    color: #888;
}

/* Sidebar */
.author-sidebar-block {
    background: #fff;
    margin-bottom: 22px;
    border: 1px solid #d8d8d8;
}

.author-sidebar-head {
    height: 58px;
    background: #d5d5d5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-left: 4px solid #d71920;
}

.author-sidebar-head h3 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 900;
}

.author-sidebar-head a {
    background: #666;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 800;
}

.author-sidebar-list {
    max-height: 470px;
    overflow: hidden;
}

.author-sidebar-person {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid #eee;
    color: #111;
    text-decoration: none;
}

.author-sidebar-person img,
.author-sidebar-person .avatar-placeholder {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #eee;
}

.author-sidebar-person strong {
    display: block;
    color: #d71920;
    margin-bottom: 5px;
    font-size: 16px;
}

.author-sidebar-person span {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    color: #111;
}

.avatar-placeholder {
    background: #d71920;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.sidebar-news-list {
    padding: 12px 18px 16px;
}

.sidebar-news-item {
    display: block;
    color: #111;
    text-decoration: none;
    padding: 11px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    line-height: 1.35;
}

.sidebar-news-item::before {
    content: "›";
    color: #d71920;
    font-size: 28px;
    line-height: 0;
    margin-right: 6px;
    vertical-align: -3px;
}

.sidebar-news-item:hover {
    color: #d71920;
}

/* Yazar liste sayfası */
.authors-index-card {
    background: #fff;
    padding: 30px;
}

.authors-page-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.authors-page-title h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 900;
}

.authors-page-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.author-list-card {
    background: #f7f7f7;
    border: 1px solid #e1e1e1;
    padding: 20px;
    text-decoration: none;
    color: #111;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    transition: .2s ease;
}

.author-list-card:hover {
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.author-list-card img,
.author-list-placeholder {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #eee;
}

.author-list-card h3 {
    margin: 0 0 6px;
    color: #d71920;
    font-size: 20px;
    font-weight: 900;
}

.author-list-card span {
    display: block;
    color: #111;
    font-size: 15px;
    line-height: 1.35;
}

.author-list-placeholder {
    background: #d71920;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
}

/* Profil sayfası */
.author-profile-page-head {
    background: #fff;
    padding: 28px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 22px;
}

.author-profile-page-head img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
}

.author-profile-page-head h1 {
    margin: 0 0 10px;
    font-size: 36px;
    color: #d71920;
}

.author-profile-page-head p {
    margin: 0 0 12px;
    font-size: 18px;
    color: #555;
}

.author-post-card-list {
    background: #fff;
    padding: 28px;
}

.author-post-card-row {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    color: #111;
    text-decoration: none;
}

.author-post-card-row img {
    width: 160px;
    height: 100px;
    object-fit: cover;
}

.author-post-card-row h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #111;
}

.author-post-card-row:hover h3 {
    color: #d71920;
}

.author-post-card-row small {
    color: #888;
}

@media (max-width: 1250px) {
    .author-page-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .author-side-ad {
        display: none;
    }
}

@media (max-width: 992px) {
    .author-content-layout {
        grid-template-columns: 1fr;
    }

    .authors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .author-main-card {
        padding: 18px;
    }

    .author-profile-strip,
    .author-profile-page-head,
    .related-author-post,
    .author-post-card-row {
        grid-template-columns: 1fr;
    }

    .author-profile-strip img,
    .author-profile-page-head img,
    .related-author-post img,
    .author-post-card-row img {
        width: 100%;
        height: auto;
        max-height: 260px;
        border-radius: 0;
    }

    .author-post-title {
        font-size: 28px;
    }

    .author-post-body {
        font-size: 19px;
    }

    .authors-grid {
        grid-template-columns: 1fr;
    }

    .author-share-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Yazar detay sayfası genişlik düzeltmesi */
.author-page {
    width: 99vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #eee;
    padding: 28px 0 50px;
}

.author-page-shell {
    max-width: 1520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 160px;
    gap: 22px;
    padding: 0 16px;
}

.author-content-layout {
    display: grid;
    grid-template-columns: minmax(680px, 1fr) 340px;
    gap: 22px;
    align-items: start;
}

.author-main-card {
    background: #fff;
    padding: 34px;
    width: 100%;
    min-width: 0;
}

.author-sidebar {
    width: 340px;
}

.author-profile-strip {
    grid-template-columns: 190px minmax(0, 1fr);
}

.author-profile-strip img {
    width: 190px;
    height: 155px;
    object-fit: cover;
}

.author-post-cover {
    width: 100%;
    height: 380px;
    max-height: 380px;
    object-fit: cover;
    display: block;
    margin-bottom: 26px;
}

.author-post-title {
    font-size: 36px;
    line-height: 1.22;
    margin-bottom: 14px;
}

.author-post-body {
    width: 100%;
    max-width: none;
    color: #111;
    font-size: 20px;
    line-height: 1.78;
    letter-spacing: 0;
}

.author-post-body p {
    margin: 0 0 24px;
}

.author-share-row {
    padding: 14px 0;
    margin-bottom: 28px;
}

/* Sağ sidebar biraz daha kompakt */
.author-sidebar-head {
    height: 54px;
}

.author-sidebar-head h3 {
    font-size: 24px;
}

.author-sidebar-person {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 16px;
}

.author-sidebar-person img,
.author-sidebar-person .avatar-placeholder {
    width: 62px;
    height: 62px;
}

.author-sidebar-person strong {
    font-size: 15px;
}

.author-sidebar-person span {
    font-size: 14px;
}

/* Ekran daralınca reklamları kaldır, içerik rahatlasın */
@media (max-width: 1350px) {
    .author-page-shell {
        grid-template-columns: minmax(0, 1fr);
        max-width: 1180px;
    }

    .author-side-ad {
        display: none;
    }

    .author-content-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .author-sidebar {
        width: 330px;
    }
}

@media (max-width: 992px) {
    .author-content-layout {
        grid-template-columns: 1fr;
    }

    .author-sidebar {
        width: 100%;
    }

    .author-post-cover {
        height: auto;
        max-height: none;
    }
}

@media (max-width: 700px) {
    .author-main-card {
        padding: 20px;
    }

    .author-profile-strip {
        grid-template-columns: 1fr;
    }

    .author-profile-strip img {
        width: 100%;
        height: auto;
        max-height: 260px;
    }

    .author-post-title {
        font-size: 28px;
    }

    .author-post-body {
        font-size: 18px;
        line-height: 1.7;
    }
}