

/* Start:/media/materials/css/media-materials.css?17527734864842*/
/* Основные стили */
.media-materials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Общие стили изображений */
.media-materials img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.media-materials img:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Стили для раздела с изображениями (1. Изображения для соцсетей) */
.image-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.image-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-group img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #fcfcfc;
    padding: 15px;
    box-sizing: border-box;
}

.image-size {
    margin: 15px 0 10px 0;
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* Стили для баннеров (3. Баннер на сайт) */
.banner-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 35px 0;
}

.banner-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-group img {
    width: 100%;
    height: 350px; /* Фиксированная высота */
    object-fit: contain;
    object-position: center;
    background: #fcfcfc;
    padding: 20px;
    box-sizing: border-box;
}

/* Стили для email-подписи (4. Приглашение в подписи) */
.logo-group {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
    margin: 35px 0;
    text-align: center;
}

.logo-group img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    background: #fcfcfc;
    padding: 20px;
    box-sizing: border-box;
}

/* Общие стили кнопок */
.download-btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 25px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00AEEF;
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 174, 239, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 220px;
}

.btn:hover {
    background: #008ECC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.4);
}

.btn svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: currentColor;
}

/* Стили для текстовых материалов (2. Текстовые материалы) */
.links-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.link-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.material-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.material-link:hover {
    border-color: #00AEEF;
    color: #00AEEF;
    box-shadow: 0 4px 10px rgba(0, 174, 239, 0.15);
}

.link-icon {
    margin-right: 10px;
    font-size: 18px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .image-group img {
        height: 350px;
    }
    
    .banner-group img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .image-group,
    .banner-group {
        grid-template-columns: 1fr;
    }
    
    .image-group img {
        height: 300px;
    }
    
    .banner-group img,
    .logo-group img {
        height: 250px;
    }
    
    .link-item {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .image-group img {
        height: 250px;
        padding: 10px;
    }
    
    .banner-group img {
        height: 200px;
    }
    
    .logo-group img {
        height: 180px;
    }
    
    .btn {
        padding: 10px 20px;
        min-width: 180px;
    }
    
    .material-link {
        padding: 12px 15px;
    }
}
/* End */
/* /media/materials/css/media-materials.css?17527734864842 */
