.blog-pages .blog-page-heading {
  height: 200px;
  background: linear-gradient(135deg, #800000 0%, #c1121f 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.blog-pages .blog-page-heading h1 {
  /* text-align: center; */
  font-size: 60px;
}

.container-blog {
  width: 90%;
  /* max-width: 1200px; */
  margin: auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
  padding: 20px 0;
}

.container-blog .editors-pick .page-btn {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.container-blog .editors-pick .page-btn i, .container-blog .editors-pick .page-btn .pages .page-number{
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #800000;
  color: #333;
  border-radius: 50%;
  transition: all 0.5s;
}

.container-blog .editors-pick .page-btn i:hover, .container-blog .editors-pick .page-btn .pages .page-number:hover {
  border: 2px solid white;
  background-color: #c1121f;
  box-shadow: 0 0 10px #800000;
  cursor: pointer;
  color: white;
}
.container-blog .editors-pick .page-btn .pages {
  display: flex;
  align-items: center;
  gap: 10px;
}

.container-blog .editors-pick .page-btn .pages ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.container-blog .editors-pick .page-btn .pages ul li a {
  color: #333;
}

/* Editor's Pick */
.editors-pick h2 {
  margin-bottom: 15px;
}

.editor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.editor-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.animated-underline {
  text-decoration: none;
  transition: all 0.5s;
}

.animated-underline:hover {
  text-decoration: underline;
  color: #c1121f;
}


.editor-card img {
  width: 100%;
  border-radius: 6px;
}

.tag {
  display: inline-block;
  background: #ff7f50;
  color: #fff;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 5px;
  margin: 10px 0;
}

.editor-card a h3,
.top-picks .top-grid .top-card a h4 {
  font-size: 18px;
  margin: 8px 0;
  color: #333;
}

.author {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.author img {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

/* Sidebar */
.sidebar h3 {
  margin-bottom: 10px;
}

.sidebar .topics ul {
  list-style: none;
}

.sidebar .topics li {
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
}

.sponsors img {
  width: 100%;
  margin-top: 10px;
}

.advertise button {
  background: #007bff;
  border: none;
  color: #fff;
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

/* Top Picks */
.top-picks {
  grid-column: 1 / -1;
  margin-top: 30px;
  overflow: hidden;
}

.top-picks .heading-picks {
  display: flex;
  align-items: center;
  /* border: 1px solid red; */
  justify-content: space-between;
}
.top-picks .heading-picks .top-picks-btn{
  display: flex;
  gap: 10px;
  padding: 5px;
}
.top-picks .heading-picks .top-picks-btn #prevPickBtn, .top-picks .heading-picks .top-picks-btn #nextPickBtn{
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #800000;
  color: #333;
  border-radius: 50%;
  transition: all 0.5s;
}
.top-picks .heading-picks .top-picks-btn #prevPickBtn:hover, .top-picks .heading-picks .top-picks-btn #nextPickBtn:hover {
  border: 2px solid white;
  background-color: #c1121f;
  box-shadow: 0 0 10px #800000;
  cursor: pointer;
  color: white;
}

.top-grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  padding: 10px 0px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.top-grid::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.top-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
  /* Prevent cards from shrinking */
  width: 250px;
  /* Card width */
  scroll-snap-align: start;
  /* Snap card into place */
  transition: all 0.5s;
  border: 2px solid transparent;
}

.top-card:hover {
  border: 2px solid #800000;
  box-shadow: 0 0 10px #c1121f;
}

.top-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.top-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}


/* Responsive */
@media (max-width: 900px) {
  .container-blog {
    grid-template-columns: 1fr;
  }

  .editor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .top-grid {
    grid-template-columns: 1fr;
  }
}