.news-details {
    padding: 1rem 0;
}

.details-header {
    margin-bottom: 2.5rem;
}

.details-header h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1rem 0;
}

.meta {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.main-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.main-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 75% 25%;
    gap: 3rem;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.short-description {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.description {
    font-size: 1.15rem;
    color: #334155;
    line-height: 1.8;
}

.description p {
    margin-bottom: 1.5rem;
}

.description h1,
.description h2,
.description h3,
.description h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.description ul,
.description ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.description li {
    margin-bottom: 0.5rem;
}

.description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.related-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.related-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    width: fit-content;
}

.related-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.related-card {
    display: block;
    padding: .5rem;
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: .1rem;
    border: 1px solid var(--border-color);
}

.related-card:hover {
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.related-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .details-header h1 {
        font-size: 2.2rem;
    }
}