


.featured-section {
  position: relative;
  width: 100%;
}

.post-header {
  position: relative;
}

.post-thumbnail img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
}

.meta-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  z-index: 2;
}

.post-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.post-meta {
  font-size: 0.9rem;
  opacity: 0.9;
}
.auther-url{
  color: var(--white-color);
}
.auther-url:hover{
  color: wheat;
  text-decoration: underline;
}

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

.bookmark-btn{
  padding: 5px;
}
.col1 {
  width: 70%;
  padding: 10px;
}

.col2 {
  width: 30%;
  padding: 10px;
}

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

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

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

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

.wp-post-image {
  height: auto;
  max-height: 50vh;
  object-fit: cover;
  object-position: center center;
}


/* 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%;
  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%)
================================ */
.block-title {
  margin: 10px 0 20px 0;
  margin-top: 0px;
}

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

/* Title */
.featured-post-title {
  font-size: 1rem;
  padding: 0;
  font-weight: 500;
  font-family: 'Baloo Bhai 2';
  line-height: 1;
}

.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;
}


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

@media (max-width: 1024px) {
  .entire-page {
    width: 96%;
  }
}

@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;
  }
}

.toc-wrapper {
  background: #f7f7f767;
  padding: 16px;
  margin-bottom: 24px;
}

.toc-title {
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 500;
}

.toc-list {
  list-style: none;
  padding-left: 0;
}

.toc-list li {
  margin: 6px 0;
}

.toc-level-2 {
  padding-left: 10px;
}

.toc-list a {
  text-decoration: none;
  color: var(--black-color);
}

.toc-list a:hover {
  text-decoration: underline;
  color: var(--blue-color);
}