/* Правый блок «Главные новости» — точь-в-точь макет, адаптив */
.pw-main-news{
  background-color: var(--gray-light, #F5F5F5);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow, 0 4px 12px rgba(0,0,0,.1));
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.pw-news-header{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:15px;padding-bottom:10px;border-bottom:1px solid var(--gray-medium,#E0E0E0)
}
.pw-news-title{margin:0;font-size:20px;font-weight:700;color:var(--primary-dark,#0A8D2D)}
.pw-news-badge{background:var(--primary,#40AC5D);color:#fff;padding:4px 8px;border-radius:4px;font-size:12px;font-weight:700}

.pw-news-list{flex:1;overflow-y:auto;-webkit-overflow-scrolling:touch}
.pw-news-item{padding:12px 0;border-bottom:1px solid var(--gray-medium,#E0E0E0)}
.pw-news-item:last-child{border-bottom:0}
.pw-news-time{font-size:12px;color:var(--gray-dark,#757575);margin-bottom:5px}
.pw-news-text{font-size:15px;line-height:1.4;font-weight:600;color:var(--black,#121212);margin-bottom:8px}

.pw-news-link{color:var(--accent-blue,#3E6EB4);font-size:14px;text-decoration:none;display:inline-flex;align-items:center;gap:6px}
.pw-news-link:hover{text-decoration:underline}
.pw-news-link .fa-arrow-right{display:none}
.pw-news-link::after{content:'';display:inline-block;width:10px;height:10px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(-45deg);margin-left:5px}


html.bx-core.bx-win.bx-no-touch.bx-no-retina.bx-firefox body div.content section.pw-hero-section div.pw-hero-container div.pw-main-news div.pw-news-header span:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);}

/* Тёмная тема */
[data-theme="dark"] .pw-main-news{background-color: var(--gray-light,#2D2D2D);box-shadow:none}
[data-theme="dark"] .pw-news-text{color: var(--text-dark,#E0E0E0)}
[data-theme="dark"] .pw-news-header{border-bottom-color: var(--border-dark,#333333)}

/* Адаптив правого блока */
@media (max-width:768px){
  .pw-news-title{font-size:18px}
  .pw-news-text{font-size:14px}
  .pw-news-item{padding:10px 0}
}

