/**
 * @file: author-note.css
 * @description: Стилі для блоку Author Note (Авторська нотатка)
 * @created: 2025-11-13
 */

/* ================================
   AUTHOR NOTE BLOCK
   ================================ */

.gotuimo-author-note-container {
    margin: 48px 0;
    padding: 0;
}

.gotuimo-author-note {
    background: transparent;
    border: none;
    padding: 32px 0;
    position: relative;
}

/* Header */
.gotuimo-author-note__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.gotuimo-author-note__icon {
    color: #FF6B35;
    flex-shrink: 0;
}

.gotuimo-author-note__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.gotuimo-author-note__title span {
    color: #FF6B35;
}

/* Content */
.gotuimo-author-note__content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    position: relative;
    z-index: 1;
}

.gotuimo-author-note__content p {
    margin: 0 0 16px 0;
}

.gotuimo-author-note__content p:last-child {
    margin-bottom: 0;
}

.gotuimo-author-note__content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.gotuimo-author-note__content em {
    font-style: italic;
    color: #555;
}

/* ================================
   MOBILE STYLES
   ================================ */

@media (max-width: 768px) {
    .gotuimo-author-note-container {
        margin: 32px 0;
    }
    
    .gotuimo-author-note {
        padding: 24px 0;
    }
    
    .gotuimo-author-note__header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .gotuimo-author-note__icon {
        width: 24px;
        height: 24px;
    }
    
    .gotuimo-author-note__title {
        font-size: 1.25rem;
    }
    
    .gotuimo-author-note__content {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ================================
   PRINT STYLES
   ================================ */

@media print {
    .gotuimo-author-note {
        background: transparent;
        border: none;
    }
    
    .gotuimo-author-note__icon {
        display: none;
    }
}

