/* Course title overlay styles */
.sc_blogger_item_lay_portfolio_style_16 .post_featured {
    position: relative;
}

.sc_blogger_item_lay_portfolio_style_16 .course-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    width: 90%;
    line-height: 1.3;
    pointer-events: none;
    padding: 10px;
    transition: opacity 0.3s ease;
}

/* Hide overlay on hover to show the white box */
.sc_blogger_item_lay_portfolio_style_16 .post_featured:hover .course-title-overlay {
    opacity: 0;
    visibility: hidden;
}

/* Ensure the white info box appears above the overlay on hover */
.sc_blogger_item_lay_portfolio_style_16 .post_featured:hover .post_info_bl {
    z-index: 20;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sc_blogger_item_lay_portfolio_style_16 .course-title-overlay {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .sc_blogger_item_lay_portfolio_style_16 .course-title-overlay {
        font-size: 18px;
    }
}

/* Made with Bob */
