
/* Apply to your section wrappers like Sports, World, Editorial */
.single_left_coloum_wrapper {
  display: flex;
  flex-wrap: wrap;         /* makes next items go to new line if not enough space */
  justify-content: space-between;
  gap: 20px;
}

/* Each article card inside */
.single_left_coloum {
  flex: 1 1 30%;           /* allows 3 items per row, adjusts on smaller screens */
  max-width: 30%;
  box-sizing: border-box;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

/* Ensure images keep same proportion */
.single_left_coloum img.thumb-image {
  width: 100%;
  height: 150px;
  object-fit: cover;        /* keeps image centered without stretching */
  border-radius: 4px;
}
/* ================================
   Varta.Space Custom Article Styles
   ================================ */

/* Article wrapper */
.article-wrapper {
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #222;
}

/* Article body spacing */
.article-body p {
  margin-bottom: 1.2em;
}
.article-body h2,
.article-body h3 {
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}
.article-body ul,
.article-body ol {
  margin: 1em 0 1.5em 2em;
}

/* Share section */
.share-section {
  margin-top: 30px;
}
.share-section strong { color: orange; }
.share-section a {
  margin-right: 8px;
  text-decoration: none;
  color: #0066cc;
}
.share-section a:hover { text-decoration: underline; }

/* Also Read */
.also-read-section {
  margin-top: 50px;
  padding-top: 15px;
  border-top: 2px solid #ddd;
}
.also-read-section .section-title {
  border-bottom: 2px solid red;
  display: inline-block;
  margin-bottom: 15px;
}
.also-read-section ul {
  list-style: none;
  padding: 0;
}
.also-read-section li {
  margin-bottom: 8px;
}
.also-read-section a {
  color: #333;
  text-decoration: none;
}
.also-read-section a:hover {
  text-decoration: underline;
}
.also-read-section .more-link {
  margin-top: 10px;
}
.also-read-section .more {
  font-weight: bold;
  color: red;
  text-decoration: none;
}
.also-read-section .more:hover {
  text-decoration: underline;
}

/* ==== Sports section horizontal layout ==== */
.right_coloum {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Each article block */
.right_coloum .single_left_coloum {
  flex: 1 1 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
  box-sizing: border-box;
}

/* Keep heading full width */
.right_coloum .single_left_coloum_wrapper {
  flex-basis: 100%;
}

/* Make sure images scale properly */
.right_coloum .thumb-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ==== Keep mobile stacked ==== */
@media (max-width: 768px) {
  .right_coloum {
    display: block;
  }
  .right_coloum .single_left_coloum {
    max-width: 100%;
    margin-bottom: 20px;
  }
}


