/* Article Details Layout */
.detay-header {
    margin-bottom: 30px;
}

.detay-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.detay-main-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-bottom: 30px;
    position: relative;
}

.detay-main-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 550px;
    object-fit: cover;
}

.detay-article {
    background: var(--bg-card);
    padding: 45px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.8;
    box-shadow: var(--shadow-sm);
}

.detay-ozet {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 4px solid var(--brand-accent);
    color: var(--brand-primary);
    line-height: 1.6;
}

/* Article Rich Text Formatting */
.detay-article p, .detay-article div.editor-p {
    margin-bottom: 20px;
}

.detay-article h1, .detay-article h2, .detay-article h3, .detay-article h4, .detay-article h5, .detay-article h6 {
    color: var(--brand-primary);
    margin: 40px 0 15px 0;
    font-weight: 800;
    line-height: 1.4;
}

.detay-article h1 { font-size: 32px; }
.detay-article h2 { font-size: 28px; }
.detay-article h3 { font-size: 24px; }
.detay-article h4 { font-size: 20px; }
.detay-article h5 { font-size: 18px; }

.detay-article ul, .detay-article ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.detay-article li {
    margin-bottom: 10px;
}

.detay-article a {
    color: var(--brand-accent);
    font-weight: 600;
    text-decoration: underline;
}

.detay-article a:hover {
    color: var(--brand-primary);
}

.detay-article img {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    margin: 25px auto;
    display: block;
    border: 1px solid var(--border);
}

.detay-article blockquote {
    border-left: 4px solid var(--brand-accent);
    margin: 25px 0;
    font-style: italic;
    color: var(--text-gray);
    background: var(--bg-body);
    padding: 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.detay-article b, .detay-article strong {
    font-weight: 700;
}

/* Sidebar Styling */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.company-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detay-title {
    color: var(--brand-primary);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .detay-article {
        padding: 30px 20px;
        font-size: 16px;
    }
    .detay-title {
        font-size: 28px;
    }
}
