.related-worksheets-wrapper {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.related-title {
    text-align: center;
    color: #0073aa;
    font-size: 20px;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: #e0f0ff; /* 🔵 Light blue background */
    border-radius: 5px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.related-post-box {
    border: 3px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
    transition: transform 0.2s ease;
}

.related-post-box:hover {
    transform: scale(1.02);
}

.related-post-box img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.related-post-title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.related-post-title a {
    color: #333;
    text-decoration: none;
}

.related-post-title a:hover {
    color: #0073aa;
    text-decoration: underline;
}
