.single-container {
    width: 70%;
    /* max-width: 800px; */
    margin: 0 auto;
    padding: clamp(50px, 3.9vw, 90px) 0 0;
}

.single-post {
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.single-post__header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.single-post__title {
    font-size: clamp(28px, 2.1vw, 40px);
    margin-bottom: 0.5rem;
}

.single-post__date {
    font-size: clamp(15px, 1.17vw, 28px);
    color: #666;
}

.single-post__content {
    line-height: 1.8;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
    margin-top: 2.5em;
    margin-bottom: 1em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #eee;
}

.single-post__content p {
    margin-bottom: 1.5em;
}

.single-post__content a {
    color: #007bff;
    text-decoration: underline;
}

.single-post__content a:hover {
    color: #0056b3;
}

.single-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.single-navigation a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.single-navigation a:hover {
    color: #007bff;
}

@media (max-width: 480px) {
    .single-post__title {
        font-size: 18px;
        margin-bottom: 0.5rem;
    }
    .single-container {
        width: 85%;
        /* max-width: 800px; */
        /* margin: 0 0 0 auto; */
        /* margin-left: 50px; */
        padding: 20px 16px 0 50px;
        margin-bottom: 150px;
    }
    .single-post__content p {
        font-size: clamp(15px, 1.17vw, 28px);
    }
}