/* ========== Product technologies block (Figma 1273:132) ========== */
.sz-tech {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0 0 100px;
}

.sz-tech__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 19px 14px;
    background: #fff;
    border: 1px solid #E1DDDD;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sz-tech__card[href]:hover {
    border-color: #243F69;
    box-shadow: 0 4px 18px rgba(36, 63, 105, 0.08);
}

.sz-tech__logo {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sz-tech__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sz-tech__logo-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #9aa3b2;
    font-size: 12px;
    background: #f4f5f7;
}

.sz-tech__logo-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px dashed #C9D6E5;
    color: #7A8CA0;
    font-family: 'Noto Sans Armenian', sans-serif;
    font-size: 13px;
}

.sz-tech__body {
    flex: 1 1 auto;
    min-width: 0;
}

.sz-tech__title {
    margin: 0 0 39px;
    font-family: 'Noto Sans Armenian', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    color: #000;
}

.sz-tech__text {
    margin: 0;
    font-family: 'Noto Sans Armenian', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #060606;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 140px;
}

@media (max-width: 1199.98px) {
    .sz-tech__logo {
        flex-basis: 110px;
        width: 110px;
        height: 110px;
    }

    .sz-tech__title {
        margin-bottom: 24px;
        font-size: 18px;
    }

    .sz-tech__text {
        font-size: 16px;
        line-height: 26px;
        max-height: 130px;
    }
}

@media (max-width: 991.98px) {
    .sz-tech {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin-bottom: 70px;
    }
}

@media (max-width: 575.98px) {
    .sz-tech {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        margin-bottom: 50px;
    }

    .sz-tech__card {
        gap: 12px;
    }

    .sz-tech__logo {
        flex-basis: 90px;
        width: 90px;
        height: 90px;
    }

    .sz-tech__title {
        margin-bottom: 16px;
    }
}
/* ========== End product technologies block ========== */
