/* hide post navigation links 30392322-hc tdl */ .post-navigation { display: none; }
/* Replace "Featured" tag text in homepage slider to custom text | 30843478-hc | SV */
.site-banner-header span.banner-featured {
	font-size: 0px;
}
.site-banner-header span.banner-featured::after {
	content: "Helping Massachusetts Exporters";
	font-size: 23px;
	text-transform: capitalize;
	color: #ffffff;
}
/*  move featured slider text | 4534900-zd bk */
.site-banner-header .banner-featured {
    top: 0;
}

/*  move featured slider text line | 4534900-zd bk */
.site-banner-header:before {
    top: 20px;
}

/*  position of featured slider banner  | 4534900-zd bk */
.site-banner-header {
    bottom: 1rem;
}

/* Welcome Message Styles */
#welcome-message {
    text-align: center !important;
    margin: 0px auto !important;
    padding-top: 3%;
    max-width: 75%;
    padding-left: 10px;
    padding-right: 10px;
}

#welcome-message h1 {
    font-size: 1.8em !important;
    margin-bottom: 20px !important;
    font-weight: 700;
}

#welcome-message p {
    font-size: 1.1em !important;
    margin-top: 20px !important;
    line-height: 1.8 !important;
    font-weight: 400;
}

/* Modern Button Styles */
#welcome-message .welcome-button {
    display: inline-block;
    margin-top: 10px;
		margin-bottom: 10px;
    padding: 14px 35px;
    font-size: 1em;
    font-weight: bold;
    color: #000; /* Black text */
    background-color: transparent; /* Transparent background */
    border: 3px solid #000; /* Black border */
    border-radius: 0; /* Rectangular button */
    text-decoration: none;
    box-shadow: none; /* No shadow */
    transition: none; /* Disable hover effects */
}

#welcome-message .welcome-button:hover {
    background-color: transparent; /* No background color change */
    color: #000; /* Keep text color black */
    box-shadow: none; /* No shadow effect */
    transform: none; /* No transform effect */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #welcome-message {
        margin: 50px auto !important;
        max-width: 80%;
        padding-top: 60px;
    }

    #welcome-message h1 {
        font-size: 1.6em !important;
    }

    #welcome-message p {
        font-size: 1em !important;
    }

    #welcome-message .welcome-button {
        font-size: 0.9em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    #welcome-message {
        margin: 20px auto !important;
        padding-top: 10px;
    }

    #welcome-message h1 {
        font-size: 1.4em !important;
    }

    #welcome-message p {
        font-size: 0.9em !important;
    }

    #welcome-message .welcome-button {
        font-size: 0.8em;
        padding: 10px 20px;
    }
}