/* Hero Block Custom Styles */

/* Hero description styling for WYSIWYG content */
.hero-description {
    color: white;
}

.hero-description strong,
.hero-description b {
    color: #F3D03E; /* yellow color from Tailwind config */
    font-weight: bold;
}

.hero-description a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.hero-description a:hover {
    color: #F3D03E; /* yellow color on hover */
}

.hero-description u {
    text-decoration: underline;
}

.hero-description em,
.hero-description i {
    font-style: italic;
}
