/**
 * Custom Elementor Widgets Styles
 * Version: 1.0.0
 */

.page-title-widget {
    display: block;
    transition: all 0.3s ease;
    word-wrap: break-word;
}

.page-title-widget a {
    text-decoration: inherit;
    color: inherit;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.page-title-widget a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Hover effects */
.page-title-widget.hover-effect {
    transition: transform 0.3s ease;
}

.page-title-widget.hover-effect:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title-widget {
        word-break: break-word;
    }
}

/* Print styles */
@media print {
    .page-title-widget {
        color: #000 !important;
        background: transparent !important;
    }
    
    .page-title-widget a {
        text-decoration: none !important;
        color: #000 !important;
    }
}