.post-header {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
}
.post-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.post-breadcrumb a {
    color: rgba(255,255,255,0.8);
    transition: color .3s ease;
}
.post-breadcrumb a:hover {
    color: #fff;
}
.post-header h1 {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    max-width: 800px;
    margin-inline: auto;
}
.post-meta {
    margin-top: 15px;
    font-weight: 500;
    opacity: 0.9;
}
.post-body-wrapper {
    padding: 80px 0;
}
.post-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.post-content {
    font-size: 1.1rem;
    line-height: 1.9;
}
.post-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}
.post-content ul {
    list-style: none;
    padding-left: 0;
}
.post-content li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}
.post-content li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 5px;
}
.post-sidebar {
    position: sticky;
    top: 120px;
}
.sidebar-widget {
    background-color: var(--surface);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 30px;
}
.sidebar-widget h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.share-buttons a, .share-buttons button {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--beige);
    color: var(--primary);
    font-size: 1.1rem;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
}
.share-buttons a:hover, .share-buttons button:hover {
    background-color: var(--primary);
    color: #fff;
    transform: scale(1.1);
}
.recent-posts-list {
    list-style: none;
    display: grid;
    gap: 15px;
}
.recent-posts-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}
.recent-posts-list a:hover {
    color: var(--accent);
}
.recent-posts-list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
    .post-sidebar {
        position: static;
        margin-top: 50px;
    }
}