:root {
  --accent: #c62828;
  --text: #111;
  --muted: #444;
  --light-bg: #f8f9fa;
  --border: #e9ecef;
  --max-width: 1100px;
  --transition: all 0.3s ease;
}

.rc-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
  font-family: 'SolaimanLipi', sans-serif;
}

.rc-section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  position: relative;
}

.rc-section-title:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--accent);
}

.rc-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rc-news-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.rc-news-item:last-child {
  border-bottom: none;
}

.rc-news-item:hover {
  background: var(--light-bg);
}

.rc-item-thumbnail {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: #f0f0f0;
}

.rc-item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.rc-news-item:hover .rc-item-thumbnail img {
  transform: scale(1.1);
}

.rc-item-content {
  flex: 1;
}

.rc-item-title {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 5px;
  font-weight: 600;
}

.rc-item-title a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.rc-item-title a:hover {
  color: var(--accent);
}

.rc-item-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: var(--muted);
}

.rc-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.rc-author:before {
  content: '•';
  color: var(--accent);
}

.rc-date {
  color: #666;
}

.rc-default-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .rc-news-item {
    padding: 12px 15px;
    gap: 12px;
  }
  
  .rc-item-thumbnail {
    width: 45px;
    height: 45px;
  }
  
  .rc-item-title {
    font-size: 15px;
  }
  
  .rc-item-meta {
    font-size: 12px;
    gap: 12px;
  }
  
  .rc-section-title {
    font-size: 20px;
  }
  
  .rc-default-thumbnail {
    font-size: 16px;
  }
}