.featured-news-widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Элегантный дизайн для заголовков виджетов */
.featured-news-widget .widget-title,
.featured-news-widget h2,
.gambling-featured-news .gambling-widget-title {
  font-size: 1.2rem;
  font-family: 'Noto Sans', var(--font-main);
  font-weight: 900;
  margin: 0 0 1.5rem 0;
  color: var(--color-text);
  text-align: left;
  position: relative;
  padding: 0.8rem 0 40px 1.5rem;
  background: transparent;
  letter-spacing: -0.01em;
}

.gambling-featured-news .gambling-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 1) 50%, rgba(255, 215, 0, 0) 100%);
}

.featured-news-widget .widget-title::after,
.featured-news-widget h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 1) 50%, rgba(255, 215, 0, 0) 100%);
}

.featured-news-widget .widget-title::before,
.featured-news-widget h2::before,
.gambling-featured-news .gambling-widget-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.2rem;
  background: #FFC107;
  border-radius: 2px;
}

.widget-title {
  font-size: 1.2rem;
  font-family: 'Noto Sans', var(--font-main);
  font-weight: 900;
  margin: 0 0 1.5rem 0;
  color: var(--color-text);
  text-align: left;
  position: relative;
  padding: 0.8rem 0 40px 1.5rem;
  background: transparent;
  letter-spacing: -0.01em;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 1) 50%, rgba(255, 215, 0, 0) 100%);
}

.widget-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.2rem;
  background: #FFC107;
  border-radius: 2px;
}

/* Адаптивность для заголовков виджетов */
@media (max-width: 768px) {
  .widget-title,
  .featured-news-widget .widget-title,
  .featured-news-widget h2,
  .gambling-featured-news .gambling-widget-title {
    font-size: 1.1rem;
    padding: 0.6rem 0 0.6rem 1.2rem;
    margin: 0 0 1.2rem 0;
  }
  
  .widget-title::before,
  .featured-news-widget .widget-title::before,
  .featured-news-widget h2::before,
  .gambling-featured-news .gambling-widget-title::before {
    width: 3px;
    height: 1rem;
  }
}

.featured-news-widget .gambling-featured-news {
  display: none;
}

/* Стили для нового featured-news-widget */
.featured-news-widget .widget-content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.featured-news-widget .news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.featured-news-widget .news-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(90deg, var(--color-bg-light) 0%, var(--color-bg-light) 100%);
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.featured-news-widget .news-item:hover {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.15) 100%);
  transform: translateX(4px);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.featured-news-widget .news-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.featured-news-widget .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-news-widget .news-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.featured-news-widget .news-title {
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-family: 'Noto Sans', var(--font-main);
  font-weight: 900;
  line-height: 1.3;
}

.featured-news-widget .news-title a {
  color: var(--color-text);
  text-decoration: none;
}

.featured-news-widget .news-title a:hover {
  color: #FFC107;
}

.featured-news-widget .news-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Специально для сайдбара */
.site-sidebar .featured-news-widget .news-item {
  flex-direction: column;
  text-align: center;
  padding: 16px;
}

.site-sidebar .featured-news-widget .news-thumb {
  width: 100%;
  height: 80px;
  margin-bottom: 12px;
}

.site-sidebar .featured-news-widget .news-title {
  font-size: 0.85rem;
  font-family: 'Noto Sans', var(--font-main);
  font-weight: 900;
  -webkit-line-clamp: unset;
  overflow: visible;
  text-overflow: unset;
  display: block;
  -webkit-box-orient: unset;
}

/* Кнопка "Все новости" */
.featured-news-widget .widget-footer {
  margin-top: 16px;
  text-align: center;
}

.featured-news-widget .view-all-btn {
  display: block !important;
  background: linear-gradient(90deg, #FFD700 0%, #FFC107 100%) !important;
  color: var(--color-text) !important;
  padding: 0.75rem 2rem !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.35) !important;
  position: relative !important;
  overflow: hidden !important;
  text-align: center !important;
}

.featured-news-widget .view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.featured-news-widget .view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 215, 0, 0.45);
  background: linear-gradient(90deg, #FFD700 0%, #FFC107 100%) !important;
  color: var(--color-text);
  text-decoration: none;
}

.featured-news-widget .view-all-btn:hover::before {
  left: 100%;
}

/* Для основного контента - полная ширина */
.main-column .featured-news-widget .view-all-btn,
.content-grid .main-column .featured-news-widget .view-all-btn,
div.main-column .featured-news-widget .view-all-btn {
  width: 100% !important;
  padding: 0.75rem 2rem !important;
  font-size: 1rem !important;
}

/* Специально для сайдбара */
.site-sidebar .featured-news-widget .view-all-btn {
  padding: 10px 16px !important;
  font-size: 0.85rem !important;
  border-radius: 20px !important;
  box-shadow: 0 2px 8px rgba(0, 115, 170, 0.25) !important;
}

/* Адаптивность для кнопки */
@media (max-width: 768px) {
  .featured-news-widget .view-all-btn {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 20px !important;
  }
  
  .site-sidebar .featured-news-widget .view-all-btn {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
  }
}

.gambling-featured-news {
  background: rgba(14, 18, 27, 0.95);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.gambling-featured-news .gambling-widget-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

.gambling-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.gambling-news-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gambling-news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.3);
}

.gambling-news-item .news-thumb,
.gambling-news-item .news-thumb a {
  display: block;
}

.gambling-news-item .news-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.gambling-news-item .news-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gambling-news-item .news-title {
  margin: 0;
  font-size: 1.1rem;
  font-family: 'Noto Sans', var(--font-main);
  font-weight: 900;
  line-height: 1.4;
}

.gambling-news-item .news-title a {
  color: var(--color-text);
  text-decoration: none;
}

.gambling-news-item .news-title a:hover {
  color: var(--color-accent, #29ffc6);
}

.gambling-news-item time {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.gambling-news-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.gambling-featured-news__empty {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin: 0;
}

/* Sidebar variation */
.site-sidebar .gambling-featured-news {
  padding: 20px;
  border-radius: 20px;
}

.site-sidebar .gambling-news-grid {
  grid-template-columns: 1fr;
}

.site-sidebar .gambling-news-item .news-thumb img {
  height: 140px;
}

.site-sidebar .gambling-featured-news .gambling-widget-title {
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .gambling-featured-news {
    padding: 20px;
  }
}
