

/* Start:/local/templates/sora/components/bitrix/news/clients/style.css?1784789791777*/
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.client-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.client-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.client-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
}

.client-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-blue, #2F415E);
}
/* End */


/* Start:/local/templates/sora/components/bitrix/news.list/recommend/style.css?17847904941141*/
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.recommend-item {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.recommend-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.recommend-name {
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
    color: var(--color-primary-blue);
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    overflow: auto;
    padding: 40px;
}

.modal-content {
    display: block;
    max-width: 80%;
    max-height: 80vh;
    margin: 40px auto;
    border-radius: 8px;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
/* End */
/* /local/templates/sora/components/bitrix/news/clients/style.css?1784789791777 */
/* /local/templates/sora/components/bitrix/news.list/recommend/style.css?17847904941141 */
