<?
require($_SERVER["DOCUMENT_ROOT"]."/bitrix/header.php");
$APPLICATION->SetTitle("style.css");
?>.news-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.news-image {
    flex: 1;
    max-width: 40%;
}

.news-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.news-text {
    flex: 1.3;
}

.news-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
}

.btn-more {
    display: inline-block;
    margin-top: 10px;
    color: #0056b3;
    text-decoration: underline;
    font-weight: 600;
}


@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        text-align: center;
    }

    .news-image, .news-text {
        max-width: 100%;
    }
}
<?require($_SERVER["DOCUMENT_ROOT"]."/bitrix/footer.php");?>