/*
Theme Name: White Instruction Theme
Author: Liliia
Description: Ultra-minimalistic theme for text instructions on a white background.
Version: 1.0
*/

* {
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #222222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
}

/* Обмежуємо ширину тексту для зручного читання, як в Telegraph */
.instruction-container {
    max-width: 700px;
    margin: 0 auto;
}

.instruction-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.instruction-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}
/* Адаптивні відступи для мобільних пристроїв (екрани до 768px) */
@media screen and (max-width: 768px) {
    

    .instruction-container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%; 
        box-sizing: border-box; 
    }

    .instruction-content {
        padding-left: 5px;
        padding-right: 5px;
    }

    .instruction-title {
        font-size: 24px; 
        margin-left: 0;
        margin-right: 0;
        padding-left: 5px;
    }
    

    .instruction-content img, 
    .instruction-content pre, 
    .instruction-content blockquote {
        max-width: 100%;
        height: auto;
    }
}