/* ===== БЛОК ДОКУМЕНТАЦИИ ===== */
.docs {
    background-color: #ffffff;
    padding: 60px 0;
    font-family: 'Roboto', Arial, sans-serif;
}

.docs__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.docs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.docs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.docs__image-link {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 20px;
    transition: opacity 0.2s ease;
}

.docs__image-link:hover {
    opacity: 0.8;
}

.docs__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.docs__title {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 12px;
}

.docs__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.docs__title a:hover {
    color: #7ba6db;
}

.docs__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #545454;
    line-height: 1.6;
}

.docs__meta-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.docs__meta-text {
    font-weight: 500;
}

.docs__meta a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.docs__meta a:hover {
    color: #7ba6db;
}

/* Адаптивность */
@media screen and (max-width: 960px) {
    .docs__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (max-width: 640px) {
    .docs {
        padding: 40px 0;
    }
    
    .docs__grid {
        gap: 30px;
    }
    
    .docs__image-link {
        max-width: 180px;
    }
}

@media screen and (max-width: 480px) {
    .docs__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .docs__image-link {
        max-width: 200px;
    }
}