/* --- Related Posts Styling --- */
.related-posts {
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff; 
    border-top: 3px solid #2980b9; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.related-posts h3 {
    color: #2980b9;
    margin-top: 0;
    padding-bottom: 10px;
    font-size: 1.5em;
    border-bottom: 1px solid #ecf0f1;
}

.related-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts li {
    margin-bottom: 8px;
}

.related-posts li a {
    display: block;
    padding: 10px 0;
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed #ecf0f1;
    transition: color 0.3s, padding-left 0.3s;
}

.related-posts li:last-child a {
    border-bottom: none;
}

.related-posts li a:before {
    content: "➤"; /* Right-pointing arrowhead marker */
    color: #3498db;
    margin-right: 10px;
    font-size: 0.8em;
}

.related-posts li a:hover {
    color: #e74c3c;
    padding-left: 5px;
}
