/* TOP CONTACT BAR */

.contact-inline {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    flex-wrap: wrap;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #1E3A5F;
    font-size: 14px;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.contact-item:hover {
    opacity: 0.75;
}

.contact-item img {
    width: 15px;
    height: 15px;
    display: block;
    object-fit: contain;
}

/* HERO / SLIDER SECTION */

.hero-text {
    text-align: center;
    padding: 160px 20px 140px;
    background: #F7F8F9;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    color: #163B66;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 22px;
    color: #5B6777;
    margin-bottom: 18px;
    line-height: 1.6;
}

.hero-text a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 34px;
    background: #163B66;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.hero-text a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* HEADER LOGO */

.logo-image {
    max-height: 58px;
}

/* TOP BAR */

#sp-top-bar {
    padding: 4px 0;
    font-size: 14px;
}

/* ARTICLE SPACING */

.article-details {
    padding-top: 30px;
    padding-bottom: 40px;
}

/* REMOVE SOCIAL SHARING */

.article-social-share,
.entry-social,
.icons {
    display: none !important;
}

/* FOOTER SECTION */

#sp-footer {
    padding: 0 !important;
    background: #0F2238;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* FOOTER MODULE */

.fbc-footer {
    text-align: center;
    padding: 26px 20px 22px;
    position: relative;
    overflow: hidden;
}

/* subtle anchor watermark */

.fbc-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/images/anchor-watermark.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
}

/* subtle divider */

.fbc-footer::before {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 0 auto 18px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 17px;
    letter-spacing: 4px;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.footer-coordinates {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.footer-location {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    position: relative;
    z-index: 2;
}
/* MOBILE */

@media (max-width: 768px) {

.contact-inline {
    justify-content: center;
    gap: 10px;
}

.contact-item {
    font-size: 12px;
    gap: 4px;
}

.contact-item img {
    width: 12px;
    height: 12px;
}

.hero-text {
    padding: 110px 20px 90px;
}

.hero-text h1 {
    font-size: 40px;
}

.hero-text p {
    font-size: 18px;
}

.hero-text a {
    padding: 12px 28px;
}

/* MOBILE FOOTER */

.fbc-footer {
    padding: 22px 15px 18px;
}

.fbc-footer::after {
    background-size: 70px;
    opacity: 0.08;
    z-index: 1;
}

.footer-logo {
    font-size: 15px;
    letter-spacing: 3px;
}

.footer-coordinates {
    font-size: 10px;
}

.footer-location {
    font-size: 12px;
}

}