/* Feature: Related Posts Styling */
.related-posts-section {
    margin: 40px 0;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}
.related-posts-section h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.related-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.related-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-bottom: 1px solid #2a2a2a;
}
.related-info {
    padding: 15px;
}
.related-info h4 {
    color: #e2e8f0;
    font-size: 15px;
    margin: 0 0 10px 0;
    line-height: 1.4;
}
.related-info span {
    color: #64748b;
    font-size: 12px;
}
.related-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.15);
    transform: translateY(-5px);
}
.related-card:hover h4 {
    color: #00d4ff;
}