/* --- SECTION: "Смотрите также" --- */

.related-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 70%, #eef3ff 100%);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.related-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0d0d0d;
}

.related-sub {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 36px;
}

.related-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5eaf3;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: pointer;
    text-decoration: none;
}

.related-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.related-icon {
    font-size: 22px;
    width: 32px;
    height: 32px;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f8bff, #2663ff);
    color: #fff;
}

.related-text {
    font-size: 17px;
    color: #374151;
}


/* --- FOOTER --- */

.site-footer {
    margin-top: 80px;
    padding: 50px 0 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    background: #fafbff;
}

.footer-year {
    font-size: 14px;
    color: #7b8090;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    padding: 0 20px;
}

.footer-link {
    font-size: 15px;
    color: #4b5563;
    text-decoration: none;
    transition: color .15s ease;
}

.footer-link:hover {
    color: #2663ff;
}
