/* =========================================
   Yayınlar Sayfaları (Makaleler, İçtihatlar, SSS)
   ========================================= */

/* --- Hero Section --- */
.publications-hero,
.faq-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.publications-hero h1,
.faq-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.publications-hero p,
.faq-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Content Section --- */
.publications-content,
.faq-content {
    padding: var(--space-3xl) 0;
    background: white;
}

/* --- Category Filter --- */
.category-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

.category-btn {
    padding: 0.5rem 1.25rem;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--color-accent);
    color: #1a1a1a;
    border-color: var(--color-accent);
}

/* --- Empty State --- */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-secondary);
}

.empty-state svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

/* --- Makaleler (Publications Grid) --- */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.publication-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    /* CRITICAL FIX for badge positioning */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.publication-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(200, 170, 110, 0.4);
}

.publication-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    position: relative;
    border-bottom: 2px solid rgba(200, 170, 110, 0.2);
}

.publication-card-image-fallback {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(200, 170, 110, 0.2);
}

/* Add a subtle elegant pattern to the fallback */
.publication-card-image-fallback::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(var(--color-accent) 1px, transparent 1px);
    background-size: 20px 20px;
}

.publication-card-image-fallback svg {
    width: 64px;
    height: 64px;
    color: rgba(200, 170, 110, 0.3);
    z-index: 1;
}

.publication-card-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.publication-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.publication-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.publication-meta svg {
    width: 14px;
    height: 14px;
}

.publication-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.publication-card-excerpt {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.publication-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.publication-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(200, 170, 110, 0.1);
    color: var(--color-accent);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.read-more {
    color: var(--color-accent);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
}

.read-more:hover {
    gap: 0.6rem;
}

.read-more svg {
    width: 16px;
    height: 16px;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(245, 158, 11, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- İçtihatlar (Decisions List) --- */
.decisions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.decision-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.decision-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent);
}

.decision-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.decision-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    flex: 1;
}

.decision-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    flex-wrap: wrap;
}

.decision-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.decision-meta svg {
    width: 14px;
    height: 14px;
}

.decision-excerpt {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.decision-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.decision-category {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(200, 170, 110, 0.1);
    color: var(--color-accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.decision-card .featured-badge {
    background: rgba(45, 212, 191, 0.15);
    color: var(--color-secondary);
    margin-left: 1rem;
    position: static;
    display: inline-block;
}

/* --- SSS (FAQ Accordion) --- */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(200, 170, 110, 0.3);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: rgba(200, 170, 110, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 12px 30px rgba(200, 170, 110, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.8rem;
    cursor: pointer;
    user-select: none;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text);
    font-size: 1.15rem;
    transition: color 0.4s ease, padding 0.4s ease;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-item.active .faq-question {
    color: var(--color-accent);
    padding-bottom: 1rem;
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.faq-item:hover .faq-icon {
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    padding: 0 1.8rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    padding-bottom: 1.8rem;
}

/* =========================================
   Detay Sayfaları (Makale & İçtihat Detay)
   ========================================= */

/* --- Hero Section --- */
.article-hero,
.decision-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8rem 0 3rem;
    color: white;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--color-accent);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

/* --- Header & Meta --- */
.article-header,
.decision-header {
    max-width: 900px;
}

.article-category-badge,
.decision-category-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(200, 170, 110, 0.2);
    color: var(--color-accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.decision-category-badge {
    background: rgba(45, 212, 191, 0.2);
    color: var(--color-secondary);
}

.article-title,
.decision-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.decision-title {
    color: var(--color-secondary);
}

.article-meta,
.decision-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.article-meta-item,
.decision-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta-item svg,
.decision-meta-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-accent);
}

.decision-meta-item svg {
    stroke: var(--color-secondary);
}

/* --- Content Wrapper --- */
.article-content-section,
.decision-content-section {
    background: white;
    padding: var(--space-3xl) 0;
}

.article-content-wrapper,
.decision-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-main-content,
.decision-main-content {
    max-width: 900px;
    /* Adjusted to match header max-width for consistency */
}

/* --- Content Elements --- */
.article-featured-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.article-excerpt,
.decision-excerpt {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-accent);
    margin-bottom: 3rem;
}

.decision-excerpt {
    font-style: normal;
    font-weight: 500;
    background: rgba(45, 212, 191, 0.05);
    border-left-color: var(--color-secondary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.article-body,
.decision-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
}

.article-body p,
.decision-body p {
    margin-bottom: 1.5rem;
}

.article-body h2,
.decision-body h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
    margin: 2.5rem 0 1.5rem;
}

.article-body h3,
.decision-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text);
    margin: 2rem 0 1rem;
}

/* --- Sidebar --- */
.article-sidebar,
.decision-sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.sidebar-card {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

/* --- Social Share --- */
.social-share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--color-text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    padding: 0;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.share-btn.linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.share-btn.twitter:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.share-btn.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.share-btn.copy-link:hover,
.share-btn.copied {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

/* --- Tags --- */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.4rem 0.9rem;
    background: white;
    border: 1px solid rgba(200, 170, 110, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.decision-sidebar .tag {
    border-color: rgba(45, 212, 191, 0.3);
}

/* --- Related Items --- */
.related-item {
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.related-item:hover {
    border-color: var(--color-accent);
    background: white;
}

.decision-sidebar .related-item:hover {
    border-color: var(--color-secondary);
}

.related-item-title {
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.related-item-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- Responsive --- */
@media (max-width: 968px) {

    .article-content-wrapper,
    .decision-content-wrapper {
        grid-template-columns: 1fr;
    }

    .article-sidebar,
    .decision-sidebar {
        position: static;
    }
}

/* =========================================
   Detay Sayfaları (Makale) - Premium Tasarım
   ========================================= */

/* --- Hero Section --- */
.premium-article-hero {
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    padding: 8rem 0 6rem;
    color: white;
    text-align: center;
    position: relative;
}

/* Subtle background texture/pattern */
.premium-article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(200, 170, 110, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.premium-article-hero .container {
    position: relative;
    z-index: 2;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 3rem;
    font-size: 0.95rem;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.back-link:hover {
    color: var(--color-accent);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

/* --- Header Content --- */
.hero-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.premium-category-badge {
    display: inline-block;
    padding: 0.35rem 1.25rem;
    background: rgba(200, 170, 110, 0.15);
    color: var(--color-accent);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(200, 170, 110, 0.3);
}

.premium-article-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.25;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.premium-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1rem;
}

.author-name {
    font-weight: 500;
    color: white;
}

.meta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(200, 170, 110, 0.5);
}

/* --- Content Wrapper --- */
.premium-article-content-section {
    background: #fdfdfd;
    padding-bottom: var(--space-3xl);
    position: relative;
    z-index: 3;
}

.premium-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 5rem;
    max-width: 1240px;
    margin: 0 auto;
}

.premium-main-content {
    max-width: 850px;
    margin-top: -4rem;
    /* Bridge effect over the dark hero */
}

/* --- Featured Image Bridge --- */
.premium-featured-image-wrapper {
    margin-bottom: 3.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: white;
    /* fallback */
    border: 4px solid white;
}

.premium-featured-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 550px;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-featured-image-wrapper:hover .premium-featured-image {
    transform: scale(1.02);
}

/* --- Article Body --- */
.premium-article-body {
    padding: 0 1rem;
}

.premium-article-excerpt {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.premium-text-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2d3748;
}

/* Drop Cap Effect for the first paragraph */
.premium-text-content>p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 0.8;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-left: 0.2rem;
    color: var(--color-accent);
    font-weight: 600;
}

.premium-text-content p {
    margin-bottom: 1.8rem;
}

.premium-text-content h2,
.premium-text-content h3,
.premium-text-content h4 {
    font-family: var(--font-heading);
    color: #1a1a1a;
}

.premium-text-content h2 {
    font-size: 2rem;
    margin: 3.5rem 0 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.premium-text-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-accent);
}

.premium-text-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.25rem;
}

/* --- Sidebar --- */
.premium-article-sidebar {
    padding-top: 3rem;
    /* aligns loosely with content ignoring bridge */
}

.sticky-sidebar-inner {
    position: sticky;
    top: 6rem;
}

.premium-sidebar-widget {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.premium-sidebar-widget .widget-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.premium-sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

/* --- Related Items --- */
.premium-related-item {
    display: block;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.premium-related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.premium-related-item:first-of-type {
    padding-top: 0;
}

.premium-related-item .related-item-title {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.premium-related-item:hover .related-item-title {
    color: var(--color-accent);
}

.premium-related-item .related-item-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- Tags --- */
.premium-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.premium-tag {
    padding: 0.4rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    transition: all 0.2s ease;
}

.premium-tag:hover {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .premium-content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
}

@media (max-width: 868px) {
    .premium-content-wrapper {
        grid-template-columns: 1fr;
    }

    .premium-main-content {
        margin-top: -3rem;
    }

    .premium-article-hero {
        padding: 6rem 0 5rem;
    }

    .premium-article-sidebar {
        padding-top: 0;
    }

    .sticky-sidebar-inner {
        position: static;
    }
}

/* =========================================
   Yargıtay İçtihatları (Index) - Premium Liste
   ========================================= */

/* --- Hero Section --- */
.premium-decisions-hero {
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    padding: 8rem 0 5rem;
    color: white;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-decisions-hero::after {
    display: none;
    /* Removed grid pattern as requested */
}

.premium-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
    color: var(--color-accent);
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.premium-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Content Wrapper & Filters --- */
.premium-decisions-content {
    background: #fdfdfd;
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 3;
}

.premium-category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.premium-category-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.premium-category-btn::after {
    content: '';
    position: absolute;
    bottom: -0.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.premium-category-btn:hover {
    color: #1a1a1a;
}

.premium-category-btn.active {
    color: var(--color-accent);
}

.premium-category-btn.active::after {
    width: 60%;
}

/* --- Premium Decisions List (Dossier Format) --- */
.premium-decisions-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.premium-decision-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    display: flex;
    height: 220px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.premium-decision-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(200, 170, 110, 0.3);
    transition: background 0.3s ease;
}

.premium-decision-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
    border-color: rgba(200, 170, 110, 0.3);
}

.premium-decision-item:hover::before {
    background: var(--color-accent);
}

.premium-decision-image {
    width: 200px;
    /* Made smaller than before (was 250px) to be more subtle */
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    border-right: 1px dashed rgba(0, 0, 0, 0.08);
    background: #fdfdfd;
}

.premium-decision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(0.3) grayscale(0.2) contrast(1.1);
    transition: filter 0.4s ease, transform 0.6s ease;
    display: block;
}

.premium-decision-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 170, 110, 0.05) 0%, rgba(200, 170, 110, 0.1) 100%);
    color: rgba(200, 170, 110, 0.4);
}

.premium-decision-image-fallback svg {
    width: 48px;
    height: 48px;
    opacity: 0.7;
}

.premium-decision-item:hover .premium-decision-image img {
    filter: sepia(0) grayscale(0) contrast(1);
    transform: scale(1.05);
}

.premium-decision-main {
    flex: 1;
    padding: 2.5rem;
    padding-right: 3rem;
}

.premium-decision-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    transition: color 0.3s ease;
}

.premium-decision-item:hover .premium-decision-title {
    color: var(--color-accent);
}

.premium-featured-seal {
    font-family: var(--font-body);
    font-size: 0.75rem;
    background: #18181b;
    color: var(--color-accent);
    padding: 0.25rem 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 1px solid rgba(200, 170, 110, 0.4);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.premium-decision-excerpt {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Sidebar Meta Information */
.premium-decision-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #fcfcfc;
    border-left: 1px dashed rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-decision-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.premium-decision-category {
    color: var(--color-accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.premium-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.premium-read-more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.premium-decision-item:hover .premium-read-more {
    color: var(--color-accent);
}

.premium-decision-item:hover .premium-read-more svg {
    transform: translateX(4px);
}

/* --- Responsive Updates --- */
@media (max-width: 768px) {
    .premium-decision-item {
        flex-direction: column;
    }

    .premium-decision-image {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    }

    .premium-decision-sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px dashed rgba(0, 0, 0, 0.08);
        padding: 1.5rem 2.5rem;
        flex-direction: row;
        align-items: center;
    }

    .premium-decision-meta {
        margin-bottom: 0;
    }

    .premium-read-more {
        margin-top: 0;
    }

    .premium-category-filter {
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .premium-decision-sidebar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .premium-text-content>p:first-of-type::first-letter {
        font-size: 3.5rem;
    }
}

/* =========================================
   Yargıtay İçtihatları (Detay) - Premium Dossier View
   ========================================= */

/* --- Decision Detail Hero --- */
.premium-decision-detail-hero {
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    padding: 7rem 0 5rem;
    color: white;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-decision-detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
    pointer-events: none;
}

.premium-hero-top-nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.premium-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-back-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.premium-back-link:hover {
    color: white;
}

.premium-back-link:hover svg {
    transform: translateX(-4px);
}

.premium-hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.premium-hero-badge {
    background: rgba(200, 170, 110, 0.15);
    color: var(--color-accent);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(200, 170, 110, 0.3);
}

.premium-hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    color: white;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.premium-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.premium-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-meta-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

/* --- Decision Detail Content (Dossier Mode) --- */
.premium-decision-main-section {
    background: #f8f9fa;
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 3;
}

.premium-decision-dossier-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.premium-decision-dossier-body {
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.premium-decision-dossier-body::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    background: var(--color-accent);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.premium-dossier-top-image {
    width: 100%;
    height: 400px;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fdfdfd;
}

.premium-dossier-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(0.1) contrast(1.02);
}

.premium-dossier-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 170, 110, 0.05) 0%, rgba(200, 170, 110, 0.1) 100%);
    color: rgba(200, 170, 110, 0.4);
}

.premium-dossier-image-fallback svg {
    width: 64px;
    height: 64px;
    opacity: 0.7;
}

.premium-dossier-excerpt {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    border-left: 3px solid rgba(200, 170, 110, 0.4);
    padding-left: 1.5rem;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.premium-dossier-content {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
}

.premium-dossier-content p {
    margin-bottom: 1.5rem;
}

/* --- Dossier Sidebar --- */
.premium-decision-dossier-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.premium-sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.premium-widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
}

.premium-widget-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-right: 0.8rem;
}

.premium-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.premium-tag {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.premium-tag:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(200, 170, 110, 0.05);
}

.premium-related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.premium-related-decision {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-related-decision:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.premium-related-decision .related-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-related-decision:hover .related-title {
    color: var(--color-accent);
}

.premium-related-decision .related-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- Responsive Updates --- */
@media (max-width: 992px) {
    .premium-decision-dossier-wrapper {
        grid-template-columns: 1fr;
    }

    .premium-decision-dossier-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .premium-decision-main-section {
        padding: var(--space-2xl) 0;
    }

    .premium-decision-dossier-body {
        padding: 2rem;
    }

    .premium-dossier-excerpt {
        font-size: 1.1rem;
        padding-left: 1rem;
    }

    .premium-hero-main-title {
        font-size: 1.8rem;
    }
}

/* ===== Premium Rich Text Content Styling (Articles & Decisions) ===== */
.premium-text-content ul,
.premium-dossier-content ul {
    list-style-type: disc !important;
    margin-left: 2rem !important;
    margin-bottom: 1.8rem !important;
    padding-left: 0.5rem !important;
}

.premium-text-content ol,
.premium-dossier-content ol {
    list-style-type: decimal !important;
    margin-left: 2rem !important;
    margin-bottom: 1.8rem !important;
    padding-left: 0.5rem !important;
}

.premium-text-content li,
.premium-dossier-content li {
    margin-bottom: 0.5rem !important;
    line-height: 1.8 !important;
}

.premium-text-content blockquote,
.premium-dossier-content blockquote {
    border-left: 4px solid var(--color-accent, #9E9E9E) !important;
    padding: 1.25rem 2rem !important;
    margin: 2rem 0 !important;
    background: rgba(200, 170, 110, 0.05) !important;
    font-style: italic !important;
    color: #4a5568 !important;
    border-radius: 0 var(--radius-md, 8px) var(--radius-md, 8px) 0 !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
}

.premium-text-content a,
.premium-dossier-content a {
    color: var(--color-accent, #9E9E9E) !important;
    text-decoration: underline !important;
    transition: opacity var(--transition-fast, 0.2s) !important;
}

.premium-text-content a:hover,
.premium-dossier-content a:hover {
    opacity: 0.8 !important;
}