/* Tags Section */
.post-tags {
    margin-top: 30px;
}

.post-tags h3 {
    font-size: 1.2rem;
    color: #004080; /* Primary color */
    margin-bottom: 10px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 8px 15px;
    font-size: 0.9rem;
    color: #004080;
    background-color: #e0e7ff;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.tag:hover {
    background-color: #004080;
    color: white;
}