.typography-block {
    .block-wrapper {
        .block-text {
            .block-title {
                margin-bottom: 40px;

                br {
                    @media (max-width: 992px) {
                        display: none;
                    }
                }
            }
        }
        .block-fonts {
            display: flex;
            flex-direction: column;
            gap: 60px;

            .item {
                display: flex;
                flex-direction: column;
                gap: 40px;

                @media (max-width: 768px) {
                    gap: 20px;
                }

                .font-info {
                    display: flex;
                    flex-direction: column;
                    gap: 25px;

                    .font-img {
                        max-width: 100%;
                        width: fit-content;
                    }

                    .desc {
                        color: var(--text-muted);
                        font-size: 15px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 135%;

                        br {
                            @media (max-width: 992px) {
                                display: none;
                            }
                        }
                    }
                }
            }
        }
    }
}