/* Виджеты */
.widgets-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.widget {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f7f0;
    padding: 10px 20px;
    border-radius: 60px;
    font-weight: 500;
    color: #156c28;
}

.widget-icon {
    font-size: 22px;
}

/* Блок автора */
.author-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 40px;
    padding: 25px;
    background: #f8fbf8;
    border-radius: 24px;
    border-left: 6px solid #38b350;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #156c28;
    margin-bottom: 0;
}

.author-text {
    width: 100%;
}

/* Изображения */
.content-image {
    float: right;
    max-width: 350px;
    margin: 0 0 20px 30px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(21,108,40,0.2);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.content-image:hover img {
    transform: scale(1.02);
}

/* Научный блок */
.science-block {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
}

.science-title {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #156c28;
}

/* Цитаты Лаван */
.lavan-quote {
    font-style: italic;
    color: #2d3a4a;
    background: #f8fbf8;
    padding: 20px;
    border-radius: 16px;
    border-left: 4px solid #38b350;
    margin: 20px 0 40px;
    line-height: 1.7;
}

/* Блок с правилами */
.rules-block {
    background: #f5f7fa;
    border-radius: 24px;
    padding: 30px;
    margin: 30px 0;
}

.rule-item {
    margin-bottom: 20px;
}

.rule-item:last-child {
    margin-bottom: 0;
}

.rule-title {
    color: #156c28;
    font-weight: 600;
}

/* Заключение */
.conclusion-block {
    background: #f8fbf8;
    border-radius: 24px;
    padding: 30px;
    margin: 30px 0;
}

/* Блок с источниками */
.sources-block {
    background: linear-gradient(145deg, #f3f9f3 0%, #e9f3e9 100%);
    border-radius: 32px;
    padding: 40px;
    margin: 50px 0;
    border: 1px solid #c8e0c8;
    box-shadow: 0 15px 25px -10px rgba(21,108,40,0.15);
}

.sources-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f2b1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.2;
}

.sources-title span {
    font-size: 36px;
}

.sources-sub {
    font-size: 18px;
    color: #156c28;
    font-weight: 500;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(56,179,80,0.4);
    padding-bottom: 15px;
}

.source-item {
    margin-bottom: 12px;
}

.source-item a {
    color: #156c28;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s;
}

.source-item a:hover {
    opacity: 0.8;
}

.source-note {
    margin-top: 25px;
    font-size: 15px;
    color: #5a6a7a;
}

/* Очистка обтекания */
.clear-both {
    clear: both;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .content-image {
        float: none !important;
        max-width: 100% !important;
        margin: 0 0 30px 0 !important;
    }
    
    .author-header {
        flex-direction: row;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .widgets-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .widget {
        width: 100%;
        justify-content: center;
    }
    
    .sources-block {
        padding: 25px;
    }
    
    .sources-title {
        font-size: 24px;
    }
    
    .sources-title span {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-block {
        padding: 20px;
    }
    
    .rules-block,
    .conclusion-block,
    .science-block {
        padding: 20px;
    }
    
    .lavan-quote {
        padding: 15px;
        margin: 15px 0 30px;
    }
}