.entire-page {
  display: flex;
  gap: 2%;
  margin: 1rem auto;
}

.col1 {
  width: 70%
}

.col2 {
  width: 30%
}

article.post {
  background-color: var(--white-color);
  padding: 10px;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
}

.post-meta {
  padding: 10px 0;
}

.post-categories {
  padding: 20px 0;
}

.post-navigation {
  padding: 20px 0;
}

.nav-previous,
.nav-next {
  padding: 10px 15px;
  background: antiquewhite;
}

.wp-post-image {
  height: auto;
}


/* Related post starts */

/* ===============================
   Featured Posts List (Flexbox)
================================ */

.featured-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 0.5rem;
  width: 100%;
}

/* Card wrapper */
.featured-post-item {
  display: flex;
  width: 100%;
  background: var(--white-color);
  border: 1px solid #e5e5e5;
  overflow: hidden;
  align-items: stretch;
  transition: all 0.3s ease-in-out;
}

.featured-post-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

/* ===============================
   Left Image Column (30%)
================================ */

.featured-post-thumb {
  flex: 0 0 30%;
  max-width: 30%;
  overflow: hidden;
  display: flex;
  align-self: stretch;
}

.featured-post-thumb a {
  display: flex;
  width: 100%;
  height: 100%;
}

.featured-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===============================
   Right Content Column (70%)
================================ */

.featured-post-content {
  flex: 0 0 70%;
  max-width: 70%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}

/* Title */
.featured-post-title {
  font-size: 0.8rem;
  padding: 0;
}

.featured-post-title a {
  color: inherit;
  text-decoration: none;
}

/* Meta / Date */
.featured-post-meta {
  font-size: 0.7rem;
  color: #2a2a2a;
  margin-bottom: 0;
}

/* ===============================
   Social share buttons
================================ */
.cricma-share-wrap {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cricma-share-wrap .share-label {
  font-weight: 600;
  font-size: 14px;
  margin-right: 6px;
}

.share-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}

.share-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.share-icon.facebook {
  background: #1877f2;
}

.share-icon.twitter {
  background: #000;
}

.share-icon.whatsapp {
  background: #25d366;
}

.share-icon:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.cricma-like-wrap {
  display: flex;
  gap: 10px;
  margin-left: 12px;
}

.cricma-like-btn {
  background: none;
  border: 1px solid #ddd;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.cricma-like-btn:hover {
  background: #f5f5f5;
}
.cricma-like-btn.voted {
  opacity: 0.6;
  cursor: not-allowed;
}


/* ===============================
   Mobile Layout
================================ */

@media (max-width: 768px) {
  .featured-post-item {
    flex-direction: column;
    height: fit-content;
  }

  .featured-post-thumb,
  .featured-post-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .featured-post-thumb {
    height: auto;
  }

  .entire-page {
    display: flex;
    flex-direction: column;
  }

  .col {
    width: 100%;
  }

  .ad-wrapper,
  .ad-image {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .featured-post-item {
    flex-direction: row;
  }

  .featured-post-thumb {
    flex: 0 0 30%;
    max-width: 30%;
    height: auto;
    overflow: hidden;
    display: flex;
  }

  .featured-post-content {
    flex: 0 0 70%;
    max-width: 70%;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
  }
}