.tht-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.tht-related-post-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    padding: 10px;
    transition: transform 0.3s ease;
}
.tht-related-post-card a{
    text-decoration: none;
}
.tht-related-post-card:hover {
    transform: translateY(-5px);
}

.tht-post-thumbnail {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.tht-post-title {
    font-size: 1.1rem;
    margin: 0 0 5px;
}

.tht-post-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 5px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.tht-post-meta img {
    border-radius:100%;
}

.tht-post-excerpt {
    font-size: 0.95rem;
    color: #444;
}
.hk-author-box-inner {
    display: flex;
    align-items: center;
}
.hk-author-box {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 520px;
    width: 100%;
}
.hk-author-avatar-wrapper {
    margin-right: 20px;
}
.hk-author-avatar {
    border-radius: 50%;
    max-width: 90px;
    max-height: 90px;
}
.hk-author-info {
    flex: 1;
}
.hk-author-name {
    margin: 0 0 3px;
    font-size: 1.1rem;
    text-transform: capitalize;
}
.hk-author-bio {
    margin: 0 0 5px;
    color: #555;
}
.hk-author-link {
    font-size: 0.9rem;
    color: #0073aa;
    text-decoration: none;
}
.hk-author-box-button a.hk-author-link {
    background: #eee;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    font-size: 12px;
}
.hk-post-meta {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}
.hk-post-meta a {
    color: #0073aa;
    text-decoration: none;
}
.hk-post-meta a:hover {
    text-decoration: underline;
}
.aiops-breadcrumbs {
    font-size: 18px;
}
.aiops-breadcrumbs a {
    text-decoration: none;
}

p.tht-post-excerpt {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top:10px;
  margin-bottom: 10px;
}

h4.tht-post-title {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 10px;
}

@media (max-width: 768px) {
    .tht-post-thumbnail {
        height: 150px;
    }
}

