/* =========================================
   AUTHOR PAGE LAYOUT
   ========================================= */
.author-page-layout {
    padding-top: 4rem;
    padding-bottom: 6rem;
    max-width: 900px; /* İçeriği merkeze odaklamak için biraz daha dar */
    margin: 0 auto;
}

/* =========================================
   1. YAZAR PROFİL KARTI
   ========================================= */
.author-profile-card {
    text-align: center;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--clr-border);
}

.author-profile-img-wrapper {
    margin-bottom: 1.5rem;
}

.author-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.author-profile-name {
    font-size: 2.5rem;
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

/* Badges */
.author-profile-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.author-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 99px;
    background: var(--clr-surface);
    color: var(--clr-text-light);
    border: 1px solid var(--clr-border);
}

.author-badge:nth-child(1) { background: #eef2ff; color: var(--clr-third); border-color: transparent; }
.author-badge:nth-child(2) { background: var(--clr-primary-light); color: var(--clr-primary); border-color: transparent; }

.author-profile-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--clr-text);
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.author-profile-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.author-profile-socials a {
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.author-profile-socials a:hover {
    transform: translateY(-3px);
    opacity: 1;
}

/* =========================================
   2. TEXT-ONLY POST GRID
   ========================================= */
.author-section-title {
    font-size: 1.5rem;
    color: var(--clr-secondary);
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid var(--clr-primary);
}

.author-posts-grid {
    display: grid;
    grid-template-columns: 1fr; /* Alt alta liste görünümü */
    gap: 1.5rem;
}

/* Kart Tasarımı */
.text-only-card {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.text-only-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: var(--clr-primary-light);
}

/* Sol tarafta ince bir renk çubuğu */
.text-only-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--clr-border);
    transition: background 0.3s ease;
}

.text-only-card:hover::before {
    background: var(--clr-primary);
}

.card-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-third);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.card-title a {
    color: var(--clr-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.card-title a:hover {
    color: var(--clr-primary);
}

/* Keynote Alanı */
.card-keynote {
    background: #fffbf7; /* Çok hafif turuncu */
    border: 1px dashed rgba(255, 87, 34, 0.2);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.keynote-icon {
    font-size: 1.2rem;
}

.card-keynote p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--clr-text);
    font-style: italic;
    line-height: 1.5;
}

.card-excerpt p {
    font-size: 1rem;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

/* Footer Meta */
.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--clr-text-light);
    font-weight: 500;
    border-top: 1px solid var(--clr-surface);
    padding-top: 1rem;
}

.card-dot {
    margin: 0 8px;
    font-size: 0.6rem;
    color: #cbd5e1;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.nav-links {
    display: inline-flex;
    gap: 0.5rem;
}

.nav-links a, .nav-links span {
    padding: 10px 16px;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--clr-text);
    font-weight: 600;
    transition: all 0.2s;
}

.nav-links a:hover, .nav-links span.current {
    background: var(--clr-secondary);
    color: #fff;
    border-color: var(--clr-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .author-profile-name { font-size: 2rem; }
    .text-only-card { padding: 1.5rem; }
    .card-title { font-size: 1.25rem; }
}