

/* Start:/local/components/new.site/uslugi/templates/.default/style.css?17637398813150*/
/* === Изолированный стиль для компонента === */

.custom-blocks-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    max-width: 60%; /* по умолчанию */
    margin: 0 auto;
    font-family: 'HeliosExtC', Arial, sans-serif;
}

/* От 1201px и выше — max-width: 60% */
@media (min-width: 1401px) {
    .custom-blocks-container {
        max-width: 60%;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .custom-blocks-container {
        max-width: 90%;
    }
}

/* От 979px до 1200px — max-width: 80% */
@media (min-width: 979px) and (max-width: 1200px) {
    .custom-blocks-container {
        max-width: 80%;
    }
}

/* От 577px до 978px — max-width: 90% */
@media (min-width: 577px) and (max-width: 978px) {
    .custom-blocks-container {
        max-width: 90%;
    }
}

/* До 576px — max-width: 100% */
@media (max-width: 576px) {
    .custom-blocks-container {
        max-width: 100%;
        padding: 15px;
    }
}

.custom-block-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: calc(33.333% - 20px); /* по умолчанию — 3 в ряд */
}

.custom-block-card {
    background: #fff;
    border: 1px solid #ddd; /* Бордер */
    border-radius: 12px; /* Border-radius */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Затемнение (тень) */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-block-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15); /* Более сильная тень при наведении */
}

.custom-block-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #eee;
}

.custom-block-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-block-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.custom-block-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.custom-block-link {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    gap: 5px;
    margin-top: auto; /* Кнопка прижата к низу */
}

.custom-block-link:hover {
    text-decoration: underline;
}

.custom-block-link::after {
    content: ">";
    font-size: 12px;
    margin-left: 5px;
}

/* Адаптив для количества блоков */

/* От 979px — 3 в ряд */
@media (min-width: 979px) {
    .custom-block-card-link {
        width: calc(33.333% - 20px);
    }
}

/* От 577px до 978px — 2 в ряд */
@media (min-width: 577px) and (max-width: 978px) {
    .custom-block-card-link {
        width: calc(50% - 20px);
    }
}

/* До 576px — 1 в ряд */
@media (max-width: 576px) {
    .custom-block-card-link {
        width: 100%;
    }
}
/* End */
/* /local/components/new.site/uslugi/templates/.default/style.css?17637398813150 */
