.hnp2-navigation {
display: inline-flex;
align-items: center;
justify-content: flex-start;
align-self: flex-start;
flex-wrap: nowrap;
gap: 5px;
width: auto;
max-width: 100%;
margin: 0 0 6px 0;
padding: 0;
}
.hnp2-link {
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
gap: 4px;
min-height: 28px;
padding: 2px 9px;
border: 1px solid #547dc1;
border-radius: 5px;
background: #547dc1;
color: #ffffff;
font-size: 12px;
font-weight: 500;
line-height: 1.15;
text-decoration: none;
white-space: nowrap;
box-shadow: none;
transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.hnp2-link:hover,
.hnp2-link:focus {
background: #f9f6ef;
border-color: #f9f6ef;
color: #222;
text-decoration: none;
}
.hnp2-link:focus-visible {
outline: 2px solid currentColor;
outline-offset: 2px;
}
.hnp2-icon {
display: block;
width: 14px;
height: 14px;
flex: 0 0 14px;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}
.hnp2-navigation-mobile {
display: none;
}
@media (max-width: 767.98px) {
.hnp2-navigation-desktop {
display: none;
}
.hnp2-navigation-mobile {
display: inline-flex;
gap: 4px;
margin-bottom: 5px;
}
.hnp2-link {
min-height: 30px;
padding: 2px 8px;
border-radius: 5px;
font-size: 11.5px;
}
.hnp2-icon {
width: 13px;
height: 13px;
flex-basis: 13px;
}
}
@media (min-width: 768px) {
.hnp2-navigation-desktop {
display: inline-flex;
}
.hnp2-navigation-mobile {
display: none;
}
}