/* Fixes for specific headline underlines */

/* Fix for 'Overview' headline in Bassliner page */
.product-text h2:after {
    bottom: -40px; /* Move the line down to avoid overlapping with text */
}

/* Fix for 'The Story' headline in About page */
.about-text h2:after {
    bottom: -40px; /* Move the line down to avoid overlapping with text */
}

/* Fix for 'Latest Releases' headline in Music page which needs to be centered */
.music-intro h2:after {
    left: 50%;
    transform: translateX(-50%);
}