.blog-detail-wrapper {
  padding: 80px 0;
  background: radial-gradient(circle, #f9faf6, #eef3ec);
}

.blog-detail-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 0 20px;
}

.blog-title {
  font-size: 38px;
  font-weight: 700;
  color: #0a3b4a;
}

.blog-excerpt {
  max-width: 680px;
  margin: 20px 0;
  color: #5c6b73;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #7d8d96;
  margin-bottom: 15px;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-main .blog-meta{
    margin-bottom: 0;
}
.blog-tags{
    text-align: right;
}
.blog-tags span {
  margin-right: 10px;
  font-size: 13px;
  color: #7a8b93;
}

.blog-featured-image img {
    width: 100%;
    border-radius: 14px;
    margin: 30px 0 10px;
    max-height: 422px;
    object-fit: cover;
}
.blog-fullwidth {
  grid-column: 1 / -1;
}

.image-description {
  font-size: 14px;
  color: #4f5d64;
  margin-top: 8px;
}

.blog-featured-image figcaption {
  font-size: 13px;
  color: #8b98a0;
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-socials {
  display: flex;
  gap: 8px;
}

.author-socials svg {
  width: 16px;
  height: 16px;
  fill: #000;
  transition: opacity .2s;
}


.author-socials a:hover svg {
  opacity: .7;
}

.blog-content {
  margin-top: 30px;
  line-height: 1.8;
  color: #2e3e45;
}

/* SIDEBAR */
.blog-sidebar h3 {
  font-size: 22px;
  color: #18a999;
  margin-bottom: 25px;
}

.trending-item {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
  transition: transform .2s ease;
}

.trending-item:hover {
  transform: translateY(-4px);
}

.trending-item img,
.no-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: #ddd;
  object-fit: cover;
}

.trending-item h4 {
  font-size: 14px;
  color: #102a33;
  margin-bottom: 5px;
}

.trending-item .meta {
  font-size: 12px;
  color: #8b9aa2;
}

/* MOBILE */
@media (max-width: 992px) {
  .blog-detail-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {

    .info-icon-block{
        /*background-size:cover!important;*/
        background-size: unset !important;
        align-items: center !important;
        background-position: center;
    }
    .info-icon-icon, .info-icon-block.layout-reverse .info-icon-icon{
        position:static!important;
    }
}

.author-box {
    padding: 50px 20px;
    /* background: radial-gradient(circle at top left, #f2f6f3, #e6efe9); */
    /*margin: auto;*/
}

.author-box-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    background: #bfbfbf;
}

.author-content {
    max-width: 750px;
}

.author-name {
    font-size: 24px;
    font-weight: 700;
    color: #0b3c6d;
    margin-bottom: 8px;
}

.author-socials {
    display: flex;
    gap: 14px;
    /*margin-bottom: 14px;*/
}

.author-socials a svg {
    width: 18px;
    height: 18px;
    fill: #0b3c6d;
    transition: opacity 0.2s ease;
}

.author-socials a:hover svg {
    opacity: 0.7;
}

.author-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #5b6b6b;
}

@media (max-width: 768px) {
    .author-box-inner {
        flex-direction: column;
        text-align: center;
    }

    .author-socials {
        justify-content: center;
    }
    .blog-title {
        font-size: 25px;
        font-weight: 700;
        color: #0a3b4a;
    }
}
