 .news-page-v2 {
     position: relative;
     overflow: hidden;
     margin-top: 8rem;
 }

 .news-page-v2:before {
     content: "";
     position: absolute;
     inset: 0;
     background:
         radial-gradient(closest-side, rgba(58, 176, 255, 0.16), transparent 70%) -220px -120px / 680px 680px no-repeat,
         radial-gradient(closest-side, rgba(12, 85, 164, 0.10), transparent 70%) calc(100% + 220px) -140px / 720px 720px no-repeat;
     pointer-events: none;
 }

 .news-page-v2 .container {
     position: relative;
     z-index: 1;
 }

 .news-page-v2 .head_title {
     text-align: center;
     margin-bottom: 22px;
 }

 .news-page-v2__grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 22px;
     justify-content: center;
 }

 .news-page-v2__card {
     border-radius: 22px;
     overflow: hidden;
     border: 1px solid rgba(12, 85, 164, 0.10);
     background: rgba(255, 255, 255, 0.92);
     transition: transform 0.18s ease;
 }

 .news-page-v2__card:hover {
     transform: translateY(-2px);
 }

 .news-page-v2__media {
     display: block;
     position: relative;
     padding-top: 58%;
     overflow: hidden;
     background: rgba(12, 85, 164, 0.04);
 }

 .news-page-v2__image {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .news-page-v2__content {
     padding: 16px 16px 18px;
 }

 .news-page-v2__title {
     margin: 0;
     font-size: 16px;
     line-height: 1.4;
     font-weight: 900;
 }

 .news-page-v2__title a {
     color: rgba(12, 85, 164, 0.92);
     text-decoration: none;
 }

 .news-page-v2__title a:hover {
     text-decoration: underline;
 }

 .news-page-v2__date {
     display: inline-block;
     margin-top: 10px;
     font-size: 12px;
     font-weight: 800;
     letter-spacing: 0.06em;
     color: rgba(12, 85, 164, 0.70);
 }

 .news-page-v2__desc {
     margin-top: 10px;
     font-size: 13px;
     line-height: 1.7;
     color: rgba(0, 0, 0, 0.76);
     display: -webkit-box;
     line-clamp: 4;
     -webkit-line-clamp: 4;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 @media only screen and (max-width: 991px) {
     .news-page-v2__grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
         gap: 16px;
     }
 }

 @media only screen and (max-width: 600px) {
     .news-page-v2__grid {
         grid-template-columns: 1fr;
     }
 }

 .news-page-v2 .news.news_list .modulecontent .item {
     width: auto !important;
     margin: 0 !important;
     float: none !important;
 }