/* Equipo Single Blog Post Style */
.full-single-blog {
  padding: 40px 0;
}

.single-featured-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.single-featured-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 10/6;
  object-fit: cover;
  display: block;
}

.tag-new {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff6b00;
  color: #fff;
  padding: 8px 15px;
  font-weight: bold;
  border-radius: 4px;
  font-size: 14px;
  z-index: 2;
}

.post-date-overlay {
  color: #ffb700;
  border-radius: 6px;
  font-size: 16px;
  z-index: 2;
  margin: 10px 0 5px;
}

.single-post-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.single-post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}
.post-meta-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 15px;
}
.post-tags a {
  color: #555;
}
.box_share {
  display: flex;
  align-items: center;
  gap: 5px;
}
.fb_iframe_widget {
  display: flex;
  align-items: center;
}
.comment-respond a {
  color: #999;
}
.comment-form-comment {
  display: flex;
  flex-direction: column;
}
.comment-respond .form-submit input[type="submit"] {
  padding: 10px;
  background-color: #ffb700 !important;
  color: #000 !important;
  border: none !important;
  outline: none;
  display: inline-block;
  margin-top: 20px;
  border-radius: 3px;
}
/* Related Posts */
.related-posts-blog {
  margin: 20px 0;
}
.related-posts-blog .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-post-item h3 {
  font-size: 20px;
  margin: 15px 0;
  color: #000;
}
.related-post-item {
  border: 1px solid #ddd;
  border-radius: 3px;
}
.related-post-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.related-post-content {
  padding: 15px;
}
.related-post-item h3 a {
  color: #000;
}
.related-post-item .read-more {
  color: #ffb700;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .single-post-title {
    font-size: 32px;
  }

  .single-post-content {
    font-size: 16px;
  }
  .related-posts-blog .row {
    grid-template-columns: 1fr;
  }
}
