/* Şairlerin Zaman Tüneli - modern arayüz */
:root {
    --szt-bg: #f8fafc;
    --szt-surface: #ffffff;
    --szt-border: #e2e8f0;
    --szt-muted: #64748b;
    --szt-primary: #4f46e5;
    --szt-primary-dark: #4338ca;
    --szt-primary-soft: #eef2ff;
    --szt-radius-lg: 1.5rem;
    --szt-radius-md: 1rem;
    --szt-radius-sm: 0.75rem;
    --szt-shadow-sm: 0 8px 18px rgba(15, 23, 42, 0.08);
    --szt-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --szt-shadow-lg: 0 32px 60px rgba(15, 23, 42, 0.12);
    --szt-transition: all 0.3s ease;
    color-scheme: light;
}

body[data-page="sairlerin-zaman-tuneli"] {
    background: linear-gradient(180deg, rgba(79,70,229,0.08), transparent 35%) var(--szt-bg);
    min-height: 100vh;
}

.szt-page {
    max-width: 100%;
    margin: 0;
	margin-top: 5rem;

    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
    display: flex;
    flex-direction: column;
}

.szt-hero {
    background: radial-gradient(140% 120% at 50% 0%, rgba(79,70,229,0.18) 0%, rgba(79,70,229,0) 65%), var(--szt-surface);
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
	border-radius: var(--szt-radius-lg);
}

.szt-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(79,70,229,0.1), transparent 60%);
}

.szt-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.szt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: rgba(79,70,229,0.12);
    color: var(--szt-primary);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.szt-hero__title {
    margin: 1rem 0 0.75rem;
    font-size: clamp(2.4rem, 5vw, 3.3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.szt-hero__subtitle {
    color: var(--szt-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.szt-search {
    margin: 3rem auto 0;
    display: flex;
    align-items: center;
    background: var(--szt-surface);
    border: 1px solid rgba(79,70,229,0.18);
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    box-shadow: var(--szt-shadow-sm);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 600px;
    transform: translateY(50%);
    position: relative;
    z-index: 10;
}

.szt-search:focus-within {
    border-color: var(--szt-primary);
    box-shadow: 0 0 0 4px rgba(79,70,229,0.16);
}

.szt-search input {
    border: none;
    outline: none;
    flex: 1;
    padding: 0.4rem 0.75rem;
    font-size: 1rem;
    background: transparent;
    color: inherit;
}

.szt-search__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: rgba(79,70,229,0.12);
    color: var(--szt-primary);
    font-size: 1.1rem;
}

.szt-empty {
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px dashed var(--szt-border);
    border-radius: var(--szt-radius-md);
    background: var(--szt-primary-soft);
    color: var(--szt-muted);
    text-align: center;
}

.szt-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    padding: 0 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.szt-main-content {
    flex: 1;
    padding: 5rem 0 4rem;
    background: var(--szt-bg);
}

.szt-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.szt-card {
    position: relative;
    background: var(--szt-surface);
    border-radius: var(--szt-radius-md);
    overflow: hidden;
    box-shadow: var(--szt-shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transform: translateY(16px);
    opacity: 0;
    transition: transform var(--szt-transition), box-shadow var(--szt-transition), opacity var(--szt-transition);
}

.szt-card[data-szt-visible="true"] {
    transform: translateY(0);
    opacity: 1;
}

.szt-card:hover {
    box-shadow: 0 28px 48px rgba(15, 23, 42, 0.18);
}

.szt-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.szt-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.szt-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.szt-card__dates {
    font-size: 0.95rem;
    color: var(--szt-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.szt-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.szt-card__subtitle {
    color: var(--szt-muted);
    line-height: 1.6;
}

.szt-card__action {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--szt-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.szt-card__action::after {
    content: "→";
    font-size: 0.95rem;
    transition: transform var(--szt-transition);
}

.szt-card:hover .szt-card__action::after {
    transform: translateX(4px);
}

.szt-back {
    margin-bottom: 1.5rem;
}

.szt-back__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: rgba(79,70,229,0.12);
    color: var(--szt-primary);
    text-decoration: none;
    font-weight: 600;
    transition: background var(--szt-transition);
}

.szt-back__link:hover {
    background: rgba(79,70,229,0.18);
}

.szt-detail__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.szt-timeline {
    position: sticky;
    top: 1.5rem;
    align-self: start;
    background: var(--szt-surface);
    border-radius: var(--szt-radius-md);
    border: 1px solid var(--szt-border);
    padding: 1.5rem;
    box-shadow: var(--szt-shadow-sm);
}

.szt-timeline h3 {
    margin: 0 0 1.25rem;
    font-size: 1.1rem;
}

.szt-timeline ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.szt-timeline__link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: var(--szt-radius-sm);
    border: 1px solid transparent;
    background: rgba(79,70,229,0.05);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--szt-transition), background var(--szt-transition);
}

.szt-timeline__link:hover {
    border-color: rgba(79,70,229,0.3);
    background: rgba(79,70,229,0.08);
}

.szt-timeline__year {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    color: var(--szt-muted);
}

.szt-timeline__name {
    font-weight: 600;
}

.szt-timeline__empty {
    text-align: center;
    color: var(--szt-muted);
    padding: 1rem 0;
    font-style: italic;
}

.szt-detail {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    border: none;
}

.szt-detail__hero {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.5rem;
    padding: 3rem;
    background: linear-gradient(120deg, rgba(79,70,229,0.08), transparent 70%);
    border-radius: var(--szt-radius-md);
    margin-bottom: 2rem;
}

.szt-detail__image img {
    width: 100%;
    border-radius: var(--szt-radius-md);
    object-fit: cover;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.16);
}

.szt-detail__info {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.szt-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(79,70,229,0.14);
    color: var(--szt-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.szt-pill--ghost {
    background: rgba(15,23,42,0.08);
    color: #0f172a;
}

.szt-detail__title {
    font-size: 1.1rem;
    color: var(--szt-muted);
}

.szt-detail__meta {
    color: var(--szt-muted);
    font-size: 0.95rem;
}

.szt-section {
    padding: clamp(1.6rem, 3vw, 2.4rem);
    border-top: 1px solid rgba(15,23,42,0.06);
}

.szt-section:first-of-type {
    border-top: none;
}

.szt-section {
    padding: 2rem 2.5rem;
    border-radius: var(--szt-radius-md);
    background: var(--szt-surface);
    box-shadow: var(--szt-shadow-sm);
    margin-bottom: 1.5rem;
}

.szt-section h2 {
    color: var(--szt-primary);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.szt-section__content {
    line-height: 1.7;
}

.szt-section__content > *:first-child {
    margin-top: 0;
}

.szt-section__content > *:last-child {
    margin-bottom: 0;
}

.szt-detail__columns .szt-section {
    padding: 0;
    border-top: none;
}

.szt-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Similar Poets Section */
.szt-similar-poets {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--szt-border);
}

.szt-similar-poets h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--szt-primary);
    font-size: 1.75rem;
}

.szt-similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.szt-similar-card {
    background: var(--szt-surface);
    border-radius: var(--szt-radius-md);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--szt-border);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.szt-similar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    border-color: var(--szt-primary-soft);
}

.szt-similar-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.25rem;
    border: 3px solid var(--szt-primary-soft);
}

.szt-similar-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--szt-primary);
}

/* Similar Poets Section */
.szt-similar-poets {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--szt-border);
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.szt-similar-poets h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--szt-primary);
    font-size: 1.75rem;
}

.szt-similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.szt-similar-card {
    background: var(--szt-surface);
    border-radius: var(--szt-radius-md);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    border: 1px solid var(--szt-border);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.szt-similar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    border-color: var(--szt-primary-soft);
}

.szt-similar-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.25rem;
    border: 3px solid var(--szt-primary-soft);
}

.szt-similar-card p {
    margin: 0 0 1rem;
    color: var(--szt-muted);
    font-size: 0.95rem;
}

.szt-similar-card .szt-pill {
    margin-top: auto;
}

/* Featured Poets Section */
.szt-featured-poets {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(79,70,229,0.03) 0%, rgba(255,255,255,0) 100%);
    position: relative;
    overflow: hidden;
}

.szt-featured-poets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79,70,229,0.1), transparent);
}

.szt-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.szt-featured-card {
    background: var(--szt-surface);
    border-radius: var(--szt-radius-lg);
    overflow: hidden;
    box-shadow: var(--szt-shadow-sm);
    transition: var(--szt-transition);
    position: relative;
    border: 1px solid rgba(79,70,229,0.08);
}

.szt-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--szt-shadow-lg);
    border-color: rgba(79,70,229,0.2);
}

.szt-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--szt-primary), #818cf8);
}

.szt-featured-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.szt-featured-card__image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.szt-featured-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 1;
}

.szt-featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--szt-transition);
}

.szt-featured-card:hover .szt-featured-card__image img {
    transform: scale(1.05);
}

.szt-featured-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--szt-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    z-index: 2;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.szt-featured-card__content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.szt-featured-card__years {
    display: inline-block;
    background: var(--szt-primary-soft);
    color: var(--szt-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.szt-featured-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #0f172a;
    line-height: 1.3;
}

.szt-featured-card__subtitle {
    color: var(--szt-muted);
    font-size: 0.95rem;
    margin: 0 0 1.25rem;
    line-height: 1.6;
}

.szt-featured-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.szt-featured-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--szt-muted);
}

.szt-featured-card__meta i {
    font-size: 1.1em;
}

.szt-featured-card__cta {
    background: var(--szt-primary-soft);
    color: var(--szt-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    transition: var(--szt-transition);
}

.szt-featured-card:hover .szt-featured-card__cta {
    background: var(--szt-primary);
    color: white;
    transform: translateX(4px);
}

/* Timeline Navigation */
.szt-timeline-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.szt-timeline-nav__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.szt-timeline-nav__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.szt-timeline-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.szt-timeline-nav__item {
    background: var(--szt-surface);
    border-radius: var(--szt-radius-md);
    overflow: hidden;
    box-shadow: var(--szt-shadow-sm);
    transition: var(--szt-transition);
    border: 1px solid var(--szt-border);
}

.szt-timeline-nav__item:hover {
    transform: translateX(4px);
    border-color: var(--szt-primary);
}

.szt-timeline-nav__link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: inherit;
}

.szt-timeline-nav__year {
    background: var(--szt-primary-soft);
    color: var(--szt-primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    min-width: 60px;
    text-align: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.szt-timeline-nav__name {
    font-weight: 500;
    font-size: 0.95rem;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.szt-timeline-nav__arrow {
    margin-left: auto;
    color: var(--szt-muted);
    opacity: 0;
    transition: var(--szt-transition);
    transform: translateX(-4px);
}

.szt-timeline-nav__item:hover .szt-timeline-nav__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Detail Page Layout */
.szt-detail-container {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 2rem;
    position: relative;
}

.szt-detail-main {
    background: var(--szt-surface);
    border-radius: var(--szt-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--szt-shadow-sm);
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .szt-detail-container {
        grid-template-columns: 1fr;
    }
    
    .szt-timeline-nav {
        position: static;
        margin-bottom: 2rem;
    }
    
    .szt-timeline-nav--next {
        margin-top: 2rem;
    }
}

@media (max-width: 992px) {
    .szt-detail__hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .szt-detail__image {
        max-width: 220px;
        margin: 0 auto;
    }

    .szt-detail__info {
        align-items: center;
        text-align: center;
    }

    .szt-section {
        padding: 1.75rem 2rem;
    }
}

@media (max-width: 768px) {
    .szt-page {
        padding: 2rem 1rem 3rem;
    }

    .szt-hero {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .szt-hero__content {
        margin: 0 auto;
        text-align: center;
    }

    .szt-search {
        margin: 1.5rem auto 0;
    }

    .szt-section {
        padding: 1.5rem 1.25rem;
    }

    .szt-similar-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .szt-similar-card {
        padding: 1.5rem 1rem;
    }

    .szt-similar-card img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .szt-similar-grid {
        grid-template-columns: 1fr 1fr;
    }

    .szt-section h2 {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .szt-section h3 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.szt-animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Timeline Navigation */
.szt-timeline-wrapper {
    background: var(--szt-surface);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--szt-border);
}

.szt-timeline-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.szt-timeline-track {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: var(--szt-border);
    transform: translateY(-50%);
    z-index: 1;
}

.szt-timeline-progress {
    position: absolute;
    height: 100%;
    background: var(--szt-primary);
    transition: width 0.4s ease;
}

.szt-timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.szt-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 1rem;
    flex: 1;
    max-width: 200px;
}

.szt-timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--szt-border);
    margin-bottom: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--szt-surface);
    box-sizing: content-box;
}

.szt-timeline-item.active .szt-timeline-dot {
    background: var(--szt-primary);
    transform: scale(1.5);
    border-color: white;
    box-shadow: 0 0 0 2px var(--szt-primary);
}

.szt-timeline-content {
    text-align: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.szt-timeline-item.active .szt-timeline-content {
    opacity: 1;
}

.szt-timeline-name {
    display: block;
    font-weight: 600;
    color: var(--szt-primary);
    margin-bottom: 0.25rem;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.szt-timeline-year {
    display: block;
    font-size: 0.8rem;
    color: var(--szt-muted);
}

.szt-timeline-item.prev .szt-timeline-name {
    color: var(--szt-muted);
}

.szt-timeline-item.next .szt-timeline-name {
    color: var(--szt-muted);
}

.szt-timeline-item:hover .szt-timeline-name {
    color: var(--szt-primary-dark);
}

/* Poet Detail Page */
.szt-detail-main {
    background: var(--szt-surface);
    border-radius: var(--szt-radius-md);
    box-shadow: var(--szt-shadow-sm);
    overflow: hidden;
    margin-bottom: 2rem;
}

.szt-detail__header {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.szt-detail__image-container {
    position: relative;
    width: 150px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: var(--szt-radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.szt-detail__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.szt-detail__years {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
}

.szt-detail__info {
    text-align: center;
}

.szt-detail__name {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--szt-primary);
}

.szt-detail__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--szt-muted);
    font-size: 1.1rem;
}

.szt-detail__title {
    font-weight: 500;
    color: var(--szt-primary-dark);
}

.szt-detail__divider {
    opacity: 0.5;
}

.szt-section {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--szt-border);
}

.szt-section:last-child {
    border-bottom: none;
}

.szt-section__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    color: var(--szt-primary);
}

.szt-section__title i {
    font-size: 1.5rem;
}

.szt-section__content {
    line-height: 1.7;
}

.szt-biography p {
    margin: 0 0 1.25rem;
    line-height: 1.8;
}

.szt-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
}

.szt-works-grid li {
    background: var(--szt-bg);
    padding: 1rem;
    border-radius: var(--szt-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.szt-works-grid li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.szt-pill {
    display: inline-block;
    background: var(--szt-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Timeline Styles */
.szt-timeline {
    position: relative;
    padding-left: 2rem;
}

.szt-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--szt-border);
}

.szt-timeline__item {
    position: relative;
    padding-bottom: 2rem;
}

.szt-timeline__item:last-child {
    padding-bottom: 0;
}

.szt-timeline__icon {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--szt-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.szt-timeline__content h4 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    color: var(--szt-primary-dark);
}

.szt-timeline__content p {
    margin: 0;
    color: var(--szt-muted);
}

/* Social Sharing */
.szt-social-share {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.szt-social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--szt-bg);
    color: var(--szt-primary);
    transition: all 0.2s ease;
}

.szt-social-share a:hover {
    background: var(--szt-primary);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .szt-detail__header {
        flex-direction: row;
        text-align: left;
        padding: 3rem;
    }
    
    .szt-detail__image-container {
        margin: 0 2rem 0 0;
    }
    
    .szt-detail__info {
        text-align: left;
        flex: 1;
    }
    
    .szt-detail__meta {
        justify-content: flex-start;
    }
    
    .szt-social-share {
        justify-content: flex-start;
    }
}

/* 12-Column Grid System */
.szt-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
    width: calc(100% + 1.5rem);
}

.szt-col-2,
.szt-col-8 {
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.szt-col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.szt-col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

/* Poet Navigation */
.szt-prev-poets,
.szt-next-poets {
    position: sticky;
    top: 80px;
    background: var(--szt-surface);
    border-radius: var(--szt-radius-md);
    padding: 1.5rem;
    box-shadow: var(--szt-shadow-sm);
    margin-bottom: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.szt-prev-poets h3,
.szt-next-poets h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--szt-border);
    color: var(--szt-primary);
}

.szt-poet-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.szt-poet-nav li {
    margin-bottom: 0.75rem;
}

.szt-poet-nav a {
    display: block;
    padding: 0.5rem 0;
    color: var(--szt-muted);
    text-decoration: none;
    transition: var(--szt-transition);
    font-size: 0.95rem;
    line-height: 1.5;
}

.szt-poet-nav a:hover {
    color: var(--szt-primary);
    transform: translateX(4px);
}

.szt-poet-nav a span {
    display: block;
    font-size: 0.85em;
    color: #94a3b8;
    margin-top: 0.15rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .szt-col-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .szt-col-8 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 992px) {
    .szt-col-2 {
        flex: 0 0 100%;
        max-width: 100%;
        position: static;
        margin-bottom: 1.5rem;
    }
    
    .szt-col-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .szt-prev-poets,
    .szt-next-poets {
        position: relative;
        top: auto;
        max-height: none;
    }
    
    .szt-poet-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .szt-poet-nav li {
        flex: 1 0 calc(50% - 0.5rem);
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .szt-timeline-wrapper {
        padding: 1rem 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .szt-timeline-nav {
        min-width: 600px;
        padding: 0 1rem;
    }
    
    .szt-timeline-items {
        padding: 0 1rem;
    }
    
    .szt-timeline-item {
        padding: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .szt-poet-nav li {
        flex: 1 0 100%;
    }
}

/* Utility Classes */
.szt-mt-1 { margin-top: 0.5rem; }
.szt-mt-2 { margin-top: 1rem; }
.szt-mt-3 { margin-top: 1.5rem; }
.szt-mt-4 { margin-top: 2rem; }
.szt-mb-1 { margin-bottom: 0.5rem; }
.szt-mb-2 { margin-bottom: 1rem; }
.szt-mb-3 { margin-bottom: 1.5rem; }
.szt-mb-4 { margin-bottom: 2rem; }

.szt-similar-card p {
    margin: 0 0 1rem;
    color: var(--szt-muted);
    font-size: 0.95rem;
}

.szt-similar-card .szt-pill {
    margin-top: auto;
}

/* List Styles */
.szt-list li {
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.03);
    border-radius: var(--szt-radius-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid transparent;
}

.szt-list li:hover {
    background: rgba(79, 70, 229, 0.05);
    border-color: rgba(79, 70, 229, 0.1);
    transform: translateX(4px);
}

.szt-list--works li {
    justify-content: space-between;
}

.szt-list--works .szt-pill {
    flex-shrink: 0;
}

.szt-list--two-line li {
    flex-direction: column;
    align-items: flex-start;
}

.szt-list--two-line small {
    color: var(--szt-muted);
}

.szt-list--rich li p {
    margin: 0.5rem 0 0;
    color: var(--szt-muted);
}

.szt-empty-row {
    justify-content: center;
    color: var(--szt-muted);
    font-style: italic;
}

@media (max-width: 1024px) {
    .szt-detail__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .szt-timeline {
        position: static;
    }

    .szt-detail__hero {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .szt-page {
        padding: 2rem 1rem 3rem;
    }

    .szt-hero {
        padding: 2.3rem 1.6rem;
    }

    .szt-card__body {
        padding: 1.4rem 1.5rem;
    }

    .szt-section,
    .szt-detail__columns {
        padding: 1.6rem;
    }

    .szt-detail__columns {
        grid-template-columns: minmax(0, 1fr);
    }
}
