/* Desktop Version (Default) */
.desktop {
    background-color: #ffb607;
    color: black;
    text-decoration: none;
    font-family: Verdana, sans-serif;
    display: inline-flex;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    line-height: 16px;
    width: fit-content;
    border: 2px solid black; /* Ensure border is present */
    box-shadow: none;
    letter-spacing: 1px;
    box-sizing: border-box; /* Make sure border is included in size */
}

/* Mobile Version */
.mobile {
    background-color: red;
    color: white;
    text-decoration: none;
    font-family: Verdana, sans-serif;
    display: inline-flex;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    line-height: 16px;
    width: fit-content;
    box-shadow: none;
    display: none; /* Hide by default */
    letter-spacing: 0.5px;
    box-sizing: border-box; /* Make sure border is included in size */
}

/* Media Query to Display Mobile Version on Small Screens */
@media (max-width: 768px) {
    .desktop {
        display: none; /* Hide desktop version on mobile */
    }

    .mobile {
        display: inline-flex; /* Show mobile version */
    }
}

/* Media Query to Display Desktop Version on Larger Screens */
@media (min-width: 769px) {
    .mobile {
        display: none; /* Hide mobile version on desktop */
    }

    .desktop {
        display: inline-flex; /* Show desktop version */
    }
}

h2.title56.component56 a {
    text-decoration: none !important;
}


#menu-main > li:first-child, #menu-main li:last-child {
	border-radius: 3px;
	margin-top: 5px;
}

#menu-main > li:first-child span, #menu-main li:last-child span {
	line-height: 20px;
	padding: 5px 0px 5px 0px;
}

#menu-main > li:first-child {
	background-color: red;
}

#menu-main > li:first-child span {
	color: white;
}

#menu-main > li:last-child {
		background-color: #ffb607;

}

#menu-main > li:last-child span {
	color: black;
}

/* Custom CTA in stories */

aside.custom-cta {
	text-align: center;
	border: 1px dotted grey;
	padding: 20px 20px 0 20px;
	margin-bottom: 20px;
	border-radius: 5px;
}


aside.custom-cta a {
	background-color: #ffb607;
	color: black;
	padding: 10px 25px 10px 25px;
	display: inline-block;
	border-radius: 5px;
	text-decoration: none !important;
}