/* Anadolu Gündemi Köşe Yazarları */

/* Admin Alanları */
.agky-admin-field {
    margin-bottom: 16px;
}

.agky-admin-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.agky-admin-field input,
.agky-admin-field textarea,
.agky-admin-field select {
    width: 100%;
    max-width: 760px;
}

/* Yazarlar Liste Sayfası */
.agky-authors-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}

.agky-authors-section *,
.agky-authors-section *::before,
.agky-authors-section *::after {
    box-sizing: border-box;
}

.agky-authors-header {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
}

.agky-authors-mini-title {
    color: #c40000;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.agky-authors-main-title {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.agky-authors-total {
    flex: 0 0 auto;
    text-align: right;
    color: #999;
}

.agky-authors-total strong {
    display: block;
    color: #111;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 4px;
}

.agky-authors-total span {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    color: #8a8a8a;
}

.agky-authors-wrap {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

.agky-authors-wrap *,
.agky-single-wrap *,
.agky-article *,
.agky-profile-hero *,
.agky-profile-content * {
    font-family: inherit;
}

.agky-author-card {
    width: 100%;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .055);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.agky-author-card:hover {
    transform: translateY(-4px);
    border-color: #e1e1e1;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .095);
}

.agky-author-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 26px;
    text-decoration: none;
}

.agky-author-photo img,
.agky-author-photo-placeholder {
    width: 138px;
    height: 138px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.agky-author-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-size: 46px;
    font-weight: 800;
}

.agky-author-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    padding: 18px 22px 24px;
}

.agky-author-body h3 {
    font-size: 22px;
    line-height: 1.25;
    margin: 4px 0 5px;
    font-weight: 800;
}

.agky-author-body h3 a {
    color: #111;
    text-decoration: none;
}

.agky-author-title {
    min-height: 20px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: #b40000;
    margin-bottom: 16px;
}

.agky-author-latest {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 14px;
    margin: 0 0 10px;
    text-align: left;
}

.agky-author-latest span {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 1.2;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
}

.agky-author-latest a {
    display: block;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.agky-author-date {
    color: #888;
    font-size: 13px;
    line-height: 1.3;
    margin: 0 0 16px;
}

.agky-author-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: auto;
    min-width: 104px;
    min-height: 38px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}

.agky-author-profile-btn:hover {
    background: #b40000;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Tekil Sayfalar */
.agky-single-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 16px;
    font-family: inherit;
}

.agky-profile-hero {
    position: relative;
    background: linear-gradient(135deg, #111, #2b2b2b);
    border-radius: 24px;
    color: #fff;
    overflow: hidden;
    margin-bottom: 34px;
}

.agky-profile-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(180, 0, 0, .45), transparent 35%);
}

.agky-profile-inner {
    position: relative;
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 42px;
}

.agky-profile-photo {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, .9);
}

.agky-profile-inner h1 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 8px;
    color: #fff;
}

.agky-profile-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffdddd;
}

.agky-profile-expertise {
    margin-top: 4px;
    color: #ddd;
}

.agky-profile-inner p {
    font-size: 16px;
    line-height: 1.65;
    color: #f5f5f5;
}

.agky-socials a {
    display: inline-block;
    margin: 6px 8px 0 0;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    padding: 7px 12px;
    text-decoration: none;
}

.agky-profile-content h2 {
    font-size: 28px;
    line-height: 1.25;
    border-bottom: 2px solid #111;
    padding-bottom: 10px;
}

.agky-post-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.agky-post-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.agky-post-item h3 {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 8px;
}

.agky-post-item h3 a {
    text-decoration: none;
    color: #111;
}

.agky-post-date,
.agky-post-author {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.agky-article {
    background: #fff;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .06);
    font-family: inherit;
}

.agky-article-author {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    margin-bottom: 18px;
}

.agky-article-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.agky-article-author em {
    display: block;
    color: #777;
    font-style: normal;
    font-size: 13px;
}

.agky-article h1 {
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 10px;
    font-family: inherit;
}

.agky-article-meta {
    color: #777;
    margin-bottom: 18px;
}

.agky-article-spot {
    font-size: 16px;
    line-height: 1.55;
    color: #444;
    border-left: 4px solid #b40000;
    padding-left: 16px;
    margin: 18px 0;
    font-family: inherit;
}

.agky-featured img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 18px 0;
}

.agky-content {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.agky-content p {
    font-family: inherit;
    font-size: inherit;
    line-height: 1.75;
    margin-bottom: 20px;
}

.agky-content h2,
.agky-content h3,
.agky-content h4,
.agky-content h5,
.agky-content h6 {
    font-family: inherit;
}

.agky-content a {
    color: inherit;
    text-decoration: underline;
}

.agky-author-note {
    background: #fafafa;
    border-left: 4px solid #111;
    padding: 16px;
    margin-top: 24px;
    border-radius: 12px;
    font-family: inherit;
}

/* Ana Sayfa Yazarlarımız Slider */
.agky-slider {
    position: relative;
    margin: 12px 0 24px;
    padding: 0 48px;
    font-family: inherit;
}

.agky-slider * {
    box-sizing: border-box;
}

.agky-slider-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
}

.agky-slider-heading {
    margin: 0;
    margin-left:-40px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    color: #111;
    letter-spacing: 0;
    text-transform: none;
}

.agky-slider-heading::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 18px;
    background: #c40000;
    border-radius: 999px;
    margin-right: 9px;
    vertical-align: -3px;
}

.agky-slider-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #c40000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.agky-slider-all span {
    font-size: 20px;
    line-height: 1;
    margin-top: -1px;
}

.agky-slider-all:hover {
    color: #111;
    text-decoration: none;
}

.agky-slider-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0 6px;
}

.agky-slider-track::-webkit-scrollbar {
    display: none;
}

.agky-slider-card {
    flex: 0 0 calc((100% - 18px) / 2);
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 124px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 20px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.agky-slider-card:hover {
    transform: translateY(-3px);
    border-color: #e2e2e2;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.agky-slider-photo {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none;
    background: #f3f3f3;
}

.agky-slider-photo img {
    width: 100px;
    height: 100px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.agky-slider-photo-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
}

.agky-slider-body {
    min-width: 0;
    flex: 1;
}

.agky-slider-author {
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}

.agky-slider-author a {
    color: #c40000;
    text-decoration: none;
}

.agky-slider-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.32;
    font-weight: 700;
}

.agky-slider-title a {
    color: #111;
    text-decoration: none;
}

.agky-slider-title a:hover,
.agky-slider-author a:hover {
    text-decoration: none;
}

.agky-slider-nav {
    position: absolute;
    top: calc(50% + 22px);
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    background: #fff;
    color: #111;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    padding: 0;
}

.agky-slider-nav span {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-top: -2px;
}

.agky-slider-prev {
    left: 0;
}

.agky-slider-next {
    right: 0;
}

.agky-slider-nav:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.agky-slider-nav:disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
    .agky-authors-wrap,
    .agky-post-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agky-profile-inner {
        flex-direction: column;
        text-align: center;
    }

    .agky-article h1 {
        font-size: 34px;
    }

    .agky-slider {
        padding: 0 44px;
    }

    .agky-slider-card {
        flex-basis: calc((100% - 18px) / 2);
        gap: 16px;
        padding: 18px;
    }

    .agky-slider-photo,
    .agky-slider-photo img,
    .agky-slider-photo-placeholder {
        width: 74px;
        height: 74px;
        flex-basis: 74px;
    }

    .agky-slider-title {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .agky-authors-wrap,
    .agky-post-list {
        grid-template-columns: 1fr;
    }

    .agky-profile-inner {
        padding: 28px;
    }

    .agky-profile-inner h1 {
        font-size: 30px;
    }

    .agky-article {
        padding: 22px;
    }

    .agky-article h1 {
        font-size: 30px;
    }

    .agky-slider {
        padding: 0 38px;
        margin: 10px 0 20px;
    }

    .agky-slider-top {
        margin-bottom: 12px;
        padding-bottom: 9px;
    }

    .agky-slider-heading {
        font-size: 14px;
    }

    .agky-slider-heading::before {
        height: 17px;
    }

    .agky-slider-all {
        font-size: 12px;
    }

    .agky-slider-card {
        flex-basis: 100%;
        min-height: 104px;
        gap: 14px;
        padding: 16px;
        border-radius: 16px;
    }

    .agky-slider-photo,
    .agky-slider-photo img,
    .agky-slider-photo-placeholder {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }

    .agky-slider-author {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .agky-slider-title {
        font-size: 17px;
        line-height: 1.3;
    }

    .agky-slider-nav {
        width: 32px;
        height: 32px;
        top: calc(50% + 20px);
    }
}


/* Yazarlar Sayfası Tam Genişlik Responsive */
@media (max-width: 1024px) {
    .agky-authors-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .agky-author-body {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 768px) {
    .agky-authors-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
    }

    .agky-author-card {
        width: 100%;
    }

    .agky-authors-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 20px;
        padding-bottom: 14px;
    }

    .agky-authors-main-title {
        font-size: 20px;
        line-height: 1.1;
    }

    .agky-authors-total {
        text-align: left;
    }

    .agky-authors-total strong {
        font-size: 28px;
    }

    .agky-author-photo img,
    .agky-author-photo-placeholder {
        width: 118px;
        height: 118px;
    }

    .agky-author-body {
        padding: 16px 18px 22px;
    }

    .agky-author-body h3 {
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .agky-authors-main-title {
        font-size: 20px;
    }

    .agky-author-latest a {
        font-size: 15px;
    }
}


/* Kurumsal Yazar Profil Sayfası */
.agky-author-profile-page {
    max-width: 1120px;
}

.agky-author-profile-card {
    width: 100%;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 150px;
    gap: 28px;
    align-items: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 24px;
    padding: 34px;
    margin: 26px 0 36px;
    box-shadow: 0 14px 42px rgba(0, 0, 0, .06);
    position: relative;
    overflow: hidden;
}

.agky-author-profile-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #b40000;
}

.agky-author-profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 22px;
    overflow: hidden;
    background: #f3f3f3;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

.agky-author-profile-photo img,
.agky-author-profile-photo span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

.agky-author-profile-photo span {
    background: #111;
    color: #fff;
    font-size: 52px;
    font-weight: 800;
}

.agky-author-profile-info {
    min-width: 0;
}

.agky-author-profile-label {
    color: #b40000;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.agky-author-profile-info h1 {
    margin: 0 0 10px;
    color: #111;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.025em;
}

.agky-author-profile-title {
    color: #b40000;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 14px;
}

.agky-author-profile-expertise {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.agky-author-profile-expertise span {
    color: #888;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.agky-author-profile-expertise strong {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.agky-author-profile-count {
    justify-self: end;
    min-width: 130px;
    padding: 20px 18px;
    border-radius: 18px;
    background: #b40000;
    border: 1px solid #ededed;
    text-align: center;
}

.agky-author-profile-count strong {
    display: block;
    color: #b40000;
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 6px;
}

.agky-author-profile-count span {
    display: block;
    color: #FFF;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
}

.agky-author-posts-section {
    margin-bottom: 42px;
}

.agky-author-posts-heading {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
}

.agky-author-posts-heading span {
    display: block;
    color: #b40000;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.agky-author-posts-heading h2 {
    margin: 0;
    color: #111;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.02em;
}

.agky-author-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.agky-author-post-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .045);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.agky-author-post-card:hover {
    transform: translateY(-4px);
    border-color: #ddd;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .085);
}

.agky-author-post-date {
    color: #999;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 14px;
}

.agky-author-post-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -.02em;
}

.agky-author-post-card h3 a {
    color: #111;
    text-decoration: none;
}

.agky-author-post-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 22px;
}

.agky-author-post-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    text-decoration: none;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .02em;
    transition: background .2s ease, transform .2s ease;
}

.agky-author-post-read:hover {
    background: #b40000;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.agky-author-no-posts {
    padding: 24px;
    border-radius: 18px;
    background: #f7f7f7;
    color: #777;
}

@media (max-width: 1024px) {
    .agky-author-profile-card {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .agky-author-profile-count {
        grid-column: 2;
        justify-self: start;
    }

    .agky-author-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .agky-author-profile-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 26px;
    }

    .agky-author-profile-photo {
        width: 132px;
        height: 132px;
    }

    .agky-author-profile-info h1 {
        font-size: 34px;
    }

    .agky-author-profile-count {
        grid-column: auto;
        justify-self: stretch;
        text-align: left;
    }

    .agky-author-profile-count strong {
        font-size: 32px;
    }

    .agky-author-posts-heading h2 {
        font-size: 25px;
    }

    .agky-author-posts-grid {
        grid-template-columns: 1fr;
    }

    .agky-author-post-card h3 {
        font-size: 22px;
    }
}


/* Köşe Yazısı Detay - Yazarın Diğer Yazıları */
.agky-related-posts {
    margin: 38px 0 46px;
}

.agky-related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8e8e8;
}

.agky-related-heading span {
    display: block;
    color: #b40000;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .05em;
}

.agky-related-heading h2 {
    margin: 0;
    color: #111;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.02em;
}

.agky-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.agky-related-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 20px;
    padding: 22px;
    min-height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .045);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.agky-related-card:hover {
    transform: translateY(-4px);
    border-color: #ddd;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .085);
}

.agky-related-date {
    color: #999;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 12px;
}

.agky-related-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.02em;
}

.agky-related-card h3 a {
    color: #111;
    text-decoration: none;
}

.agky-related-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.agky-related-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 40px;
    padding: 0 18px;
    margin-top: auto;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .02em;
    transition: background .2s ease, transform .2s ease;
}

.agky-related-read:hover {
    background: #b40000;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .agky-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .agky-related-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .agky-related-heading h2 {
        font-size: 25px;
    }

    .agky-related-grid {
        grid-template-columns: 1fr;
    }

    .agky-related-card h3 {
        font-size: 21px;
    }
}


/* Final Refinements */
.agky-authors-total span{
    font-size:13px;
    color:#8a8a8a;
    font-weight:700;
}

.agky-author-posts-heading h2{
    margin:0;
    color:#B40000;
    font-size:16px;
    line-height:1.1;
    font-weight:800;
    letter-spacing:-.02em;
}

.agky-author-back-wrap{
    display:flex;
    justify-content:center;
    margin:38px 0 10px;
}

.agky-author-back-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 22px;
    border-radius:999px;
    background:#111;
    color:#fff !important;
    text-decoration:none;
    font-size:13px;
    line-height:1;
    font-weight:800;
    letter-spacing:.03em;
    transition:all .2s ease;
}

.agky-author-back-btn:hover{
    background:#b40000;
    color:#fff !important;
    text-decoration:none;
    transform:translateY(-1px);
}

.agky-share-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-top:28px;
    padding-top:22px;
    border-top:1px solid #ececec;
}

.agky-share-bar span{
    color:#111;
    font-size:14px;
    font-weight:800;
    letter-spacing:.04em;
}

.agky-share-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.agky-share-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 16px;
    border-radius:999px;
    background:#f4f4f5;
    color:#111;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    transition:all .2s ease;
}

.agky-share-links a:hover{
    background:#111;
    color:#fff;
    text-decoration:none;
}

@media(max-width:768px){

    .agky-author-profile-photo{
        margin:0 auto;
    }

    .agky-author-profile-info{
        width:100%;
    }

    .agky-author-profile-info h1{
        font-size:30px;
        line-height:1.12;
        word-break:break-word;
    }

    .agky-share-bar{
        flex-direction:column;
        align-items:flex-start;
    }

}


/* Tek Satır Değerli Kalem */
.agky-authors-total{
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.agky-authors-total span{
    display:inline-flex;
    align-items:center;
    min-height:40px;
    padding:0 16px;
    border-radius:999px;
    background:#f5f5f5;
    color:#666;
    font-size:13px;
    line-height:1;
    font-weight:700;
}


/* Yazı Özetleri - Kısa Spot */
.agky-author-latest-excerpt{
    margin-top:8px;
    color:#666;
    font-size:14px;
    line-height:1.55;
    font-weight:400;
}

.agky-author-post-excerpt{
    color:#555;
    font-size:15px;
    line-height:1.7;
    margin:0 0 22px;
}

.agky-related-excerpt{
    color:#555;
    font-size:15px;
    line-height:1.7;
    margin:0 0 20px;
}

/* Typography improvements */
.single-ag_kose_yazisi .agky-post-content,
.single-ag_yazar .agky-post-content,
.agky-post-content {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 1.85;
    font-weight: 400;
    color: #222;
}

.single-ag_kose_yazisi .agky-post-content p,
.single-ag_yazar .agky-post-content p,
.agky-post-content p {
    margin-bottom: 22px;
}

.single-ag_kose_yazisi .agky-post-title,
.single-ag_yazar .agky-post-title,
.agky-post-title,
.agky-author-name,
.agky-slider-heading {
    font-family: 'Roboto', sans-serif;
}

.single-ag_kose_yazisi .agky-post-title,
.single-ag_yazar .agky-post-title,
.agky-post-title {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
}

@media (max-width: 767px) {
    .single-ag_kose_yazisi .agky-post-content,
    .single-ag_yazar .agky-post-content,
    .agky-post-content {
        font-size: 16px;
        line-height: 1.8;
    }

    .single-ag_kose_yazisi .agky-post-title,
    .single-ag_yazar .agky-post-title,
    .agky-post-title {
        font-size: 28px;
    }
}
