
.tipography-content h2 {
    font-size: 32px;
    line-height: 1.2;
}
.tipography-content hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #e3e3e3;
    margin: 1em 0;
    padding: 0;
}

.tipography-content > p:first-child {
    margin-top: 0px;
}
.tipography-content > p:last-child {
    margin-bottom: 0px;
}
.tipography-content > h3:first-child {
    margin-top: 0px;
}
.tipography-content > h2:first-child {
    margin-top: 0px;
}


.tipography-content ul {
    margin-top: 20px;
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0px;
}
.tipography-content ul li {
    position: relative;
    padding-bottom: 5px;
    padding-left: 30px;
}

.tipography-content ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 8px;
    width: 6px;
    height: 6px;
    text-align: left;
    background-color: var(--color-red);
    display: block;
    border-radius: 50%;
}
.tipography-content a {
    color: var(--color-red);
    border-bottom: 1px solid rgba(228, 61, 66, .35);
    transition: all .2s ease-out;
}
.tipography-content a:hover {
    border-color: transparent;
}
/* Для телефонных ссылок */
.tipography-content a[href^="tel:"] {
    white-space: nowrap;
}
/* Для email ссылок */
.tipography-content a[href^="mailto:"] {
    white-space: nowrap;
}



/* Под скрипт */
.tipography-content picture {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.tipography-content picture img {
    transition: transform .3s ease-in-out;
    pointer-events: none;
    object-position: center;
    height: 50px;
    width: 50px;
}
.tipography-content picture img.bx-lazyload-success {
    width: 100%;
    height: auto;
}
.tipography-content picture:has(img:not(.bx-lazyload-success)) {
    aspect-ratio: 16 / 9;
    background-color: #f7f9f9;
}



.tipography-content h2 {
    font-size: 30px;
    line-height: 1.2;
    text-transform: none;
}

.tipography-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    border: 1px solid #e6e6e6;
}



.tipography-content table td {
    padding: 10px 15px;
    border: 1px solid #e6e6e6;
}

.tipography-content table tr:first-child td {
    padding: 15px 15px;
    text-align: left;
    font-weight: 600;
    background: #f7f7f7;
}

.tipography-content table tbody tr:hover {
    background: #f8f9fa;
}

/* Адаптивность */
@media (max-width: 768px) {
    .tipography-content table {
        display: block;
        overflow-x: auto;
    }
} 
