/* ✅ Read More button */
.rss-feed-container .hero-btn {
  display: inline-block;
  background: #0040ff; /* Blue background */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px; /* Rounded pill shape */
  text-decoration: none;
  transition: background 0.3s ease;
}

.rss-feed-container .hero-btn:hover {
  background: #002bcc; /* Darker blue on hover */
  text-decoration: none;
  color: #fff;
}

/* ✅ Navigation container */
.rss-feed-container .case_navigation {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

/* ✅ Navigation arrows */
.rss-feed-container .nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rss-feed-container .nav-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ✅ Counter text (e.g. 1/6) */
.rss-feed-container .case_navigation span {
  color: #ccc;
  font-size: 14px;
}

.rss-feed-container .news-head {
  font-size: 34px;
}

.rss-feed-container .news_head_wrap .author {
  font-size: 16px;
}

.rss-feed-container .rss-news-list {
  list-style: none;
  padding: 0;
}

.rss-feed-container .rss-news-item {
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.rss-feed-container .rss-news-item h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.rss-feed-container .rss-date {
  font-size: 14px;
  color: #999;
}

.rss-feed-container .rss-description {
  font-size: 16px;
  color: #333;
}

.rss-feed-container .blog-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.rss-feed-container .blog-card {
  display: flex;
  background-color: #11141a;
  border-radius: 8px;
  overflow: hidden;
  max-width: 1100px;
  width: 100%;
}

.rss-feed-container .blog-card .image-section {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  flex: 1;
}

.rss-feed-container .blog-card .image-section img {
  max-width: 250px;
  height: auto;
}

.rss-feed-container .blog-card .content-section {
  flex: 1;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rss-feed-container .blog-card .content-section h4, .rss-card .content-section h4 {
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
  margin: 0 0 10px;
}

.rss-card .content-section h4 {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #aaa;
  margin: 0 0 10px;
}

.rss-feed-container .blog-card .content-section h2, .rss-card .content-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.4;
}

.rss-feed-container .blog-card .content-section p, .rss-card .content-section p {
  font-size: 14px;
  color: #aaa;
  margin: 0 0 20px;
}

.rss-feed-container .blog-card .content-section .btn{
  align-self: flex-start;
  background: #0050ff;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-decoration: none;
}
