/* about-polish.css — About page visual polish */

/* Gallery hover effects */
.page-about .work-gallery img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.page-about .work-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* Ensure CTA text is visible on dark background */
.page-about .section-cta h2 {
    color: white !important;
}

.page-about .section-cta p,
.page-about .section-cta .cta-text {
    color: rgba(255, 255, 255, 0.85) !important;
}
