/* Blog/Post/responsive.css - Адаптивность Одного Поста */

@media (max-width: 768px) {
    main {
        padding: 10px;
    }

    #post-container {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .post-title {
        font-size: 2em;
    }

    .post-content {
        font-size: 1em;
    }

    .post-footer {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    #post-container {
        padding: 1rem;
    }

    .post-title {
        font-size: 1.8em;
    }

    .post-content {
        font-size: 0.95em;
    }

    .post-footer {
        font-size: 0.85em;
    }
}