/* --- Layout --- */
.dp-single-post-section {
    padding: 60px 20px;
    background-color: #fff;
}

.dp-single-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr; /* Основной контент шире сайдбара */
    gap: 60px;
}

/* --- Article Content --- */
.dp-article-main {
    padding-right: 20px;
}

.dp-article-header {
    margin-bottom: 30px;
}

.dp-article-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'PP Fraktion Sans', sans-serif;
    line-height: 1.2;
}

.dp-article-date {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.dp-article-date:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #000;
}

/* Featured Image */
.dp-article-hero {
    margin-bottom: 40px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.dp-article-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Typography (Body Text) */
.dp-article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.dp-article-body p {
    margin-bottom: 25px;
}

.dp-article-body strong {
    color: #000;
    font-weight: 600;
}

.dp-article-body a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

/* Back Link */
.dp-back-link {
    display: inline-flex;
    align-items: center;
    margin-top: 40px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.dp-back-link:hover {
    border-bottom-color: #000;
}

.dp-back-link svg {
    margin-right: 10px;
    width: 12px;
    height: 12px;
}

/* --- Sidebar --- */
.dp-single-sidebar {
    padding-left: 40px;
    border-left: 1px solid #eee;
}

.dp-sidebar-widget {
    margin-bottom: 50px;
}

.dp-widget-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 400;
    font-family: 'PP Fraktion Sans', sans-serif;
}

/* Social Share Buttons */
.dp-social-share {
    display: flex;
    gap: 15px;
}

.dp-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #000;
    transition: all 0.3s ease;
}

.dp-share-link:hover {
    background-color: #000;
    color: #fff;
}

.dp-share-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Sidebar Menu */
.dp-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dp-sidebar-menu li {
    margin-bottom: 12px;
}

.dp-sidebar-menu a {
    text-decoration: none;
    color: #555;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.dp-sidebar-menu a:hover,
.dp-sidebar-menu a.active {
    color: #000;
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .dp-single-container {
        grid-template-columns: 1fr; /* Одна колонка на планшете/мобилке */
        gap: 40px;
    }

    .dp-single-sidebar {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }
    
    .dp-article-title {
        font-size: 2rem;
    }
}