.post_contenta {
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Размеры заголовков */
.post_contenta h1 {
    font-size: 36px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.post_contenta h2 {
    font-size: 30px;
    margin-top: 35px;
    margin-bottom: 25px;
}

.post_contenta h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.post_contenta h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Скрытие отсутствующих изображений */
.post_contenta img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    display: block; /* Убираем "разрывы" при отсутствии изображения */
}

.post_contenta img[src=""], 
.post_contenta img:not([src]) {
    display: none; /* Скрываем изображения без src */
}

/* Остальные стили остаются без изменений */
.post_contenta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.post_contenta a {
    font-size: 18px;
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

.post_contenta a:hover {
    color: #FF6F61;
    border-bottom: 2px solid #FF6F61;
}

.post_contenta ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.post_contenta li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.post_contenta li::before {
    content: '•';
    color: #007BFF;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.post_contenta table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.post_contenta th,
.post_contenta td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-size: 16px;
}

.post_contenta th {
    background-color: #f4f4f4;
    font-weight: bold;
    font-size: 18px;
}

.post_contenta blockquote {
    font-size: 20px;
    font-style: italic;
    color: #555;
    border-left: 5px solid #ccc;
    padding-left: 20px;
    margin: 25px 0;
}