/* Страница "Эссе" */
.essay-content {
    line-height: 1.8;
    text-align: justify;
}

.essay-content p {
    text-indent: 1.5em;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.essay-content h2, .essay-content h3 {
    margin-top: 1.5rem;
}

/* Стили для эпиграфа */
.epigraph {
    text-align: right;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1rem;
    color: #555;
    border-right: 3px solid #3498db;
    padding-right: 1rem;
    text-indent: 0;
}

.epigraph-author {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
}

blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0 5px 5px 0;
    text-align: justify;
}

/* Кнопка полноэкранного режима */
.fullscreen-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Адаптивность для эссе */
@media (max-width: 768px) {
    .essay-content p {
        text-align: left;
        text-indent: 1em;
        font-size: 1rem;
    }
    
    .essay-content {
        text-align: left;
        font-size: 1rem;
    }
    
    .epigraph {
        text-align: center;
        border-right: none;
        border-bottom: 2px solid #3498db;
        padding-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    
    blockquote {
        margin: 1rem 0;
        padding: 0.8rem;
    }
    
    .fullscreen-toggle {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .essay-content p {
        text-indent: 0.8em;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .epigraph {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    blockquote {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
    
    .fullscreen-toggle {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}