/*!
Theme Name: Salvan
Author: Geeks360 (Anatoly)
Author URI: https://geeks360.net/
Description: The custom theme for Salvan
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: salvan
Tags: geeks360, custom theme, custom design
*/

*,
*::before,
*::after { box-sizing: border-box; }

img, picture, video, canvas, svg {
    display: block;
}

a{
    text-decoration: none;
}

input, button, textarea, select { font: inherit; }

html, body {
    font-size: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
}
.site-container {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Figma design tokens — Savlan Capital */
:root {
    /* Colors */
    --color-white: #ffffff;
    --color-black: #000000;

    --color-text-primary: #212121;
    --color-text-secondary: #656c76;
    --color-text-muted: #767676;
    --color-text-disabled: rgba(186, 186, 186, 0.6);

    --color-brand-navy: #102645;
    --color-brand-navy-60: rgba(16, 38, 69, 0.6);
    --color-brand-blue-deep: #03055e;

    --color-brand-gold: #c7b299;
    --color-brand-gold-strong: #b8965a;

    --color-bg-soft: #f1f1f1;
    --color-bg-light: #f8f8f8;
    --color-bg-cream: #fffcf9;
    --color-bg-warm: #efecea;

    --color-border-soft: #e8e2de;
    --color-border: #d9d9d9;

    --color-danger: #e8363d;
    --color-overlay-dark: rgba(0, 0, 0, 0.65);

    /* Typography */
    --font-family-base: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-family-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-family-accent: "Atyp Text", "Playfair Display", Georgia, serif;

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    --fs-12: 0.75rem;
    --fs-13: 0.8125rem;
    --fs-15: 0.9375rem;
    --fs-16: 1rem;
    --fs-18: 1.125rem;
    --fs-20: 1.25rem;
    --fs-26: 1.625rem;
    --fs-28: 1.75rem;
    --fs-34: 2.125rem;
    --fs-38: 2.375rem;
    --fs-68: 4.25rem;

    --lh-tight: 1.14;
    --lh-normal: 1.2;
    --lh-relaxed: 1.65;

    /* Spacing */
    --space-2: 2px;
    --space-4: 4px;
    --space-6: 6px;
    --space-8: 8px;
    --space-10: 10px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-48: 48px;
    --space-64: 64px;
    --space-80: 80px;
    --space-120: 120px;

    /* Radius */
    --radius-2: 2px;
    --radius-3: 3px;
    --radius-4: 4px;
    --radius-5: 5px;
    --radius-6: 6px;
    --radius-8: 8px;
    --radius-10: 10px;
    --radius-16: 16px;
    --radius-pill: 9999px;

    /* Shadows */
    --shadow-subtle: 0 4px 44px rgba(0, 0, 0, 0.03);
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-deep: 0 4px 84px rgba(0, 0, 0, 0.3);

    /* Layout */
    --page-max-width: 1920px;
    --container-max-width: 1550px;
    --content-max-width: 1340px;
    --header-height: 114px;

    /* Motion */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/* Savlan sticky header (based on Figma Sticky layer) */
body {
    font-family: var(--font-family-base);
    color: var(--color-text-primary);
    background: var(--color-white);
}

.sc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid rgba(16, 38, 69, 0.08);
    padding: 26px 0;
}

.sc-header__inner {
    max-width: var(--page-max-width);
    margin: 0 auto;
    height: var(--header-height);
    padding: 0 clamp(20px, 3.5vw, 50px);
    display: flex;
    align-items: center;
}

.sc-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: 198px;
}
.sc-logo img{
    width: 100%;
}

.sc-logo__placeholder {
    width: 198.52px;
    height: 44.05px;
    border: 1px dashed var(--color-border-soft);
    border-radius: var(--radius-4);
    background: linear-gradient(135deg, rgba(199, 178, 153, 0.12), rgba(16, 38, 69, 0.06));
}

.sc-header__nav--desktop {
    margin-left: auto;
}

.sc-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-menu--desktop {
    display: flex;
    align-items: center;
    gap: 58px;
}

.sc-menu li {
    margin: 0;
    padding: 0;
}

.sc-menu a {
    color: var(--color-text-primary);
    font-family: var(--font-family-ui);
    transition: color var(--transition-fast);
    text-transform: uppercase;
    position: relative;
}

.sc-menu--desktop a {
    font-size: var(--fs-18);
    font-weight: var(--font-weight-regular);
    line-height: 20.52px;
}

.sc-menu a:hover{
    color: var(--color-brand-gold-strong);
}

.sc-menu .current-menu-item > a:before,
.sc-menu .current_page_item > a:before,
.sc-menu .current-menu-ancestor > a:before{
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: #102645;
    position: absolute;
    left: 0;
    bottom: -46px;
}
body.page-id-16 .sc-menu .current-menu-item > a:before,
body.page-id-16 .sc-menu .current_page_item > a:before,
body.page-id-16 .sc-menu .current-menu-ancestor > a:before{
    background: #fff;
}

.sc-header__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.sc-header__contact--desktop {
    margin-left: 55px;
    width: 179px;
    height: 61px;
    border-radius: var(--radius-5);
    background: var(--color-brand-navy);
    color: var(--color-white);
    font-family: var(--font-family-base);
    font-size: var(--fs-18);
    font-weight: var(--font-weight-medium);
    line-height: 20.52px;
}

.sc-header__contact--desktop:hover {
    background: #255291;
    color: var(--color-white);
}

.sc-header__burger {
    display: none;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 0.7px solid var(--color-brand-navy);
    background: transparent;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2.5px;
}

.sc-header__burger span {
    display: block;
    width: 11px;
    height: 1px;
    background: var(--color-text-primary);
}

.sc-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: var(--color-bg-cream);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.sc-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: scroll;
}

.sc-mobile-menu__close-wrap {
    position: absolute;
    top: 28px;
    right: 22px;
    z-index: 2;
}

.sc-mobile-menu__close {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 0.7px solid var(--color-brand-navy);
    background: transparent;
    cursor: pointer;
    position: relative;
}

.sc-mobile-menu__close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 1px;
    background: var(--color-text-primary);
    transform-origin: center;
}

.sc-mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.sc-mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sc-mobile-menu__content {
    /*width: 260px;*/
    margin: 80px auto 0;
    text-align: center;
    padding-bottom: 40px;
}

.sc-logo--mobile {
    justify-content: center;
    width: 80%;
}

.sc-logo__placeholder--mobile {
    width: 137.44px;
    height: 84.93px;
    margin: 0 auto;
}

.sc-header__nav--mobile {
    margin-top: 40px;
}

.sc-menu--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.sc-menu--mobile a {
    display: block;
    width: fit-content;
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    line-height: 23px;
}
.sc-menu--mobile ul.sub-menu{
    background: #162B47;
    width: 90%;
    margin: 18px auto 0 auto;
}
.sc-menu--mobile ul.sub-menu li{
    width: 100%;
}
.sc-menu--mobile ul.sub-menu li a:after{
    display: none !important;
}
.sc-menu--mobile ul.sub-menu a{
    color: #fff;
    width: 100%;
    padding: 12px;
}
#menu-main-menu-1 li a{
    text-align: left;
}
#menu-main-menu-1 li.menu-item-has-children a:after{
    content: '▾';
    display: block;
    font-size: 30px;
    color: #162B47;
    position: absolute;
    right: -26px;
    top: -2px;
}
#menu-main-menu-1 ul.sub-menu {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

/* Опционально: поворот стрелки :after при открытии */
#menu-main-menu-1 li.menu-item-has-children > a::after {
    transition: transform 0.3s ease;
}

#menu-main-menu-1 li.menu-item-has-children.has-open-submenu > a::after {
    transform: rotate(180deg);
}

/*=========================== js styles ==================*/
/* Прячем старую стрелку из :after */
#menu-main-menu-1 li.menu-item-has-children > a::after {
    display: none !important;
}

/* Структура li как flex, чтобы ссылка и кнопка стояли рядом */
#menu-main-menu-1 li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#menu-main-menu-1 li.menu-item-has-children > a {
    flex: 1; /* Ссылка растягивается на всю доступную ширину */
}

/* Стилизация кнопки-тоггла под старую стрелку */
.submenu-toggle {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

/* Сама стрелка — рисуем псевдоэлементом на кнопке */
.submenu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -75%) rotate(45deg);
    transition: transform 0.3s ease;
}

/* Поворот стрелки при открытии */
.has-open-submenu > .submenu-toggle::before {
    transform: translate(-50%, -25%) rotate(-135deg);
}

/* Анимация подменю */
#menu-main-menu-1 ul.sub-menu {
    flex-basis: 100%; /* Подменю на всю ширину под ссылкой+кнопкой */
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
/*=========================== js styles ==================*/

.sc-menu--mobile ul.sub-menu a:hover{
    color: var(--color-brand-gold-strong);
}

.sc-header__contact--mobile {
    width: 179px;
    height: 61px;
    margin-top: 51px;
    border-radius: var(--radius-8);
    background: var(--color-brand-navy);
    color: var(--color-white);
    font-family: var(--font-family-ui);
    font-size: var(--fs-20);
    font-weight: var(--font-weight-medium);
    line-height: 23px;
}

.sc-header__contact--mobile:hover {
    color: var(--color-white);
    background: var(--color-brand-blue-deep);
}

body.mobile-menu-open {
    overflow: hidden;
}
.header-content-flex, .header-right-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*================= Sub menu ===================*/
#menu-main-menu li.menu-item-has-children{
    position: relative;
}
#menu-main-menu ul.sub-menu{
    list-style: none;
    display: block;
    padding: 53px 30px 26px 30px;
    margin: 0;
    min-width: 320px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -319px;
    background: transparent;
}
#menu-main-menu li#menu-item-102 ul.sub-menu,
#menu-main-menu li#menu-item-152 ul.sub-menu
{
    bottom: -271px;
}
#menu-main-menu li#menu-item-101 ul.sub-menu{
    min-width: 390px;
}
#menu-main-menu ul.sub-menu li{
    list-style: none;
    display: block;
    width: 100%;
    background: #102645;
    padding: 14px 30px;
}
#menu-main-menu ul.sub-menu li:first-child{
    padding-top: 40px;
}
#menu-main-menu ul.sub-menu li:last-child{
    padding-bottom: 40px;
}
#menu-main-menu ul.sub-menu li a{
    display: block;
    width: 100%;
    padding: 0;
    /*margin: 24px 0;*/
    text-align: center;
    color: #fff;
    font-size: 18px;
}
#menu-main-menu ul.sub-menu li a:before{
    display: none;
}
#menu-main-menu ul.sub-menu li a:hover{
    color: #C7B299;
}

#menu-main-menu li.menu-item-has-children ul.sub-menu {
    display: none;
}

#menu-main-menu li.menu-item-has-children ul.sub-menu.is-open {
    display: block;
}
/*================= Sub menu End ===================*/

/* About page blocks (Page Hero + Company Profile) */

/* Page Hero */
.page-hero {
    position: relative;
    height: 468px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: rgba(16, 38, 69, 0.6);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.home .page-hero{
    background-position: center 0;
}
.single-news .page-hero{
    height: 546px;
}

body.page-id-59 .page-hero{
    height: 660px;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 11, 9, 0.82) 0%, rgba(20, 11, 9, 0.46) 34%, rgba(20, 11, 9, 0.12) 58%, rgba(20, 11, 9, 0.05) 100%);
    pointer-events: none;
}

.page-hero .site-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-hero__content {
    /*max-width: 640px;*/
    padding: 0;
}
.page-id-59 .page-hero__content{
    padding: 0 0 108px;
}
.page-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(52px, 5vw, 76px);
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

/* Company Profile */
.company-profile {
    padding: 120px 0;
    background: #F8F8F8;
}

.company-profile__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
    gap: 72px;
    align-items: start;
}

.company-profile__content {
    max-width: 520px;
}

.company-profile__subtitle {
    margin-bottom: 18px;
    color: #6f7480;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.company-profile__title {
    margin: 0 0 34px;
    color: #1b2434;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.company-profile__text {
    color: #3a3f48;
    font-size: 17px;
    line-height: 1.76;
}

.company-profile__text p {
    margin: 0 0 24px;
}

.company-profile__text p:last-child {
    margin-bottom: 0;
}

.company-profile__media {
    width: 100%;
}

.company-profile__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
}

/* Investment Strategy */
.investment-strategy {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #F8F8F8 0%, #F8F8F8 50%, #E8E2DE 50%, #E8E2DE 100%);
}

.investment-strategy::after {
    content: "";
    position: absolute;
    top: 0;
    left: 46%;
    width: 14%;
    height: 100%;
    background: #E8E2DE;
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 15% 20%, 20% 0%);
    pointer-events: none;
}

.investment-strategy__container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 64px;
    min-height: 320px;
    padding-top: 42px;
    padding-bottom: 60px;
}

.investment-strategy__left {
    max-width: 46%;
}

.investment-strategy__subtitle {
    margin-bottom: 16px;
    color: #667085;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.investment-strategy__title {
    max-width: 630px;
    margin: 0;
    color: #182538;
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.investment-strategy__right {
    max-width: 46%;
}

.investment-strategy__logo-wrap {
    margin-bottom: 20px;
}

.investment-strategy__logo {
    display: block;
    max-width: 180px;
    width: auto;
    height: auto;
}

.investment-strategy__text {
    color: #313a46;
    font-size: 16px;
    line-height: 1.65;
}

.investment-strategy__text p {
    margin: 0 0 16px;
}

.investment-strategy__text p:last-child {
    margin-bottom: 0;
}

/* Investment Framework */
.investment-framework {
    padding: 96px 0 110px;
    background: #EFECEA;
}

.investment-framework__title {
    margin: 0 0 50px;
    color: #182538;
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 0.96;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.investment-framework__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.investment-framework__card {
    display: flex;
    flex-direction: column;
}

.investment-framework__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    background: #ddd6cf;
}

.investment-framework__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investment-framework__icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    padding: 5px;
}

.investment-framework__rule {
    width: 100%;
    height: 1px;
    margin: 28px 0 22px;
    background: #d8d1ca;
}

.investment-framework__card-title {
    margin: 0 0 14px;
    color: #182538;
    font-size: 28px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.investment-framework__text {
    color: #404853;
    font-size: 15px;
    line-height: 1.72;
}

.investment-framework__text p {
    margin: 0 0 18px;
}

.investment-framework__text p:last-child {
    margin-bottom: 0;
}

/* Salvan Approach */
.salvan-approach {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 420px;
    background-color: #091528;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.salvan-approach__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 18, 44, 0.68);
    pointer-events: none;
}

.salvan-approach .site-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.salvan-approach__content {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 0;
    text-align: center;
    color: #ffffff;
}

.salvan-approach__logo-wrap {
    margin-bottom: 16px;
}

.salvan-approach__logo {
    display: inline-block;
    max-width: 136px;
    width: auto;
    height: auto;
}

.salvan-approach__title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.salvan-approach__text {
    max-width: 740px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.6;
}

.salvan-approach__text p {
    margin: 0;
}

/* Our Team */
.our-team {
    padding: 96px 0 110px;
    background: #ffffff;
}

.our-team__title {
    margin: 0 0 34px;
    color: #162437;
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 0.96;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.our-team__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    align-items: stretch;
}

.our-team__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.our-team__media {
    aspect-ratio: 1 / 1;
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 4px;
    background: #f2f2f2;
}

.our-team__media--placeholder {
    display: grid;
    place-items: center;
    background: #f5f5f5;
}

.our-team__placeholder-text {
    color: #c1c1c1;
    font-size: 14px;
}

.our-team__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-team__name {
    margin: 0 0 8px;
    color: #1f232c;
    font-size: 23px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.our-team__role {
    margin-bottom: 16px;
    color: #4b515b;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.our-team__description {
    color: #4a525d;
    font-size: 14px;
    line-height: 1.75;
}

.our-team__description p {
    margin: 0 0 16px;
}

.our-team__description p:last-child {
    margin-bottom: 0;
}

.our-team__link {
    margin-top: auto;
    padding-top: 20px;
    color: #1f232c;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}
.our-team__link:hover{
    color: var(--color-brand-gold-strong);
}
/* Expertrise Section */
.expertrise-section {
    padding: 44px 0 110px;
    background: #ffffff;
}

.expertrise-section__intro {
    margin-bottom: 34px;
    color: #3f4650;
    font-size: 24px;
    line-height: 1.65;
}

.expertrise-section__intro p {
    margin: 0;
    text-align: center;
}

.expertrise-section__rows {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.expertrise-section__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
}

.expertrise-section__row--image-right .expertrise-section__media {
    order: 2;
}

.expertrise-section__row--image-right .expertrise-section__content {
    order: 1;
}

.expertrise-section__media {
    position: relative;
    min-width: 0;
}

.expertrise-section__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #162b47;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}

.expertrise-section__image {
    display: block;
    width: 100%;
    aspect-ratio: 1.12 / 1;
    object-fit: cover;
}

.expertrise-section__content {
    max-width: 470px;
}

.expertrise-section__title {
    margin: 0 0 18px;
    color: #162437;
    font-size: clamp(44px, 4.6vw, 68px);
    line-height: 0.96;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.expertrise-section__text {
    color: #3f4650;
    font-size: 14px;
    line-height: 1.72;
}

.expertrise-section__text p {
    margin: 0 0 16px;
}

.expertrise-section__text p:last-child {
    margin-bottom: 0;
}

.expertrise-section__rows .expertrise-section__row:nth-child(odd) .expertrise-section__content{
    margin-left: 54px;
}

/*=========== Footer ====================*/
.sc-footer {
    background: #102645;
    padding-bottom: 40px;
}
.sc-footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto 1fr auto auto auto;
    column-gap: 37px;
    padding-top: 49px;
    padding-bottom: 60px;
}
.footer-col-sep-top    { grid-row: 1; }
.footer-col-lbl        { grid-row: 2; }
.footer-col-links-wrap { grid-row: 3; align-self: start; }
.footer-col-sep-bot    { grid-row: 4; margin-top: 49px; }
.footer-col-sub-lbl    { grid-row: 5; }
.footer-col-bot-content{ grid-row: 6; }
.footer-sep {
    width: 100%; height: 1px;
    background: #ffffff;
    margin-bottom: 13px;
}
.footer-col-label {
    font-family: 'Manrope', sans-serif;
    font-size: 15px; font-weight: 400;
    color: #bababa;
    margin-bottom: 64px;
    text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 15px; }
.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 16px; font-weight: 400;
    color: #ffffff; display: block;
}
.footer-links a:hover{
    color: var(--color-brand-gold-strong);
}
.footer-sub-label {
    font-family: 'Manrope', sans-serif;
    font-size: 15px; font-weight: 400;
    color: #bababa;
    margin-bottom: 32px;
}
.footer-logo img {
    height: 3.5rem; width: auto;
    filter: brightness(0) invert(1);
}
.footer-address {
    font-family: 'Inter', sans-serif;
    font-size: 16px; font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
}
.footer-address a{
    color: #fff;
    line-height: 1.3;
}
.footer-address a:hover{
    color: var(--color-brand-gold-strong);
}
.footer-email {
    font-family: 'Inter', sans-serif;
    font-size: 16px; font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.3;
}
.footer-social {
    display: inline-flex;
    width: 2.625rem; height: 2.625rem;
    border: 1px solid #ffffff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    cursor: pointer;
}
.footer-info-items { display: flex; flex-direction: column; gap: 15px; }
.footer-info-items a {
    font-family: 'Inter', sans-serif;
    font-size: 16px; font-weight: 400;
    color: #ffffff; display: block;
}

.footer-links .sc-menu--desktop{
    display: block;
}
.footer-links .sc-menu li{
    margin-bottom: 14px;
}
.footer-links .sc-menu li a{
    text-transform: uppercase;
}
.footer-logo a{
    display: block;
    width: fit-content;
}

.copyrights-row{
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #fff;
    font-size: 12px;
}
.developer-link{
    display: block;
    text-decoration: underline;
    width: fit-content;
    margin: 20px auto 0 auto;
    font-size: 12px;
    color: #fff;
}
.developer-link:hover{
    color: var(--color-brand-gold-strong);
}
/*==================== Home Hero styles ======================*/
body.page-id-16{
    height: 100vh;
    overflow: hidden;
}
body.page-id-16 .sc-header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    border-bottom: 1px solid #3E485A;
    background: #10264552;
}
body.page-id-16 .sc-menu a{
    color: #fff;
}
body.page-id-16 .sc-menu a:hover{
    color: var(--color-brand-gold-strong);
}
body.page-id-16 .page-hero{
    min-height: unset;
    height: 100%;
    align-items: flex-start;
}
body.page-id-16 .page-hero__content{
    margin-top: 130px;
}

/*================ Property Single =====================*/
body.single-property .page-hero{
    position: relative;
    height: 660px;
}
.gradient-overlay{
    position: absolute;
    display: flex;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 38, 69, 0) 0%, rgba(16, 38, 69, 0.83) 62.5%);
}

.single-property .gradient-overlay{
    align-items: flex-end;
    padding-bottom: 60px;
}
.page-id-59 .gradient-overlay{
    align-items: flex-end;
}
body.page-id-16 .gradient-overlay{
    background: linear-gradient(180deg, rgba(16, 38, 69, 0) 0%, rgb(16 38 69 / 70%) 62.5%);
}
/*================ Property Single End =====================*/

/* ==========================================================
   Properties Grid — Styles
   ========================================================== */

/* ---------- Container ---------- */
.properties-section {
    padding: 60px 0 80px;
}

/* ---------- Tabs ---------- */
.properties-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 48px;
    border-bottom: none;
}

.properties-tab {
    background: none;
    border: none;
    padding: 0 0 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #767676;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.properties-tab::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #1b2d41;
    transition: width 0.3s ease;
}

.properties-tab:hover {
    color: #1b2d41;
}

.properties-tab.is-active {
    color: #1b2d41;
    font-weight: 600;
}

.properties-tab.is-active::after {
    width: 100%;
}

/* ---------- Grid ---------- */
.property-category-description{
    margin-bottom: 50px;
    font-size: 24px;
}
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    min-height: 200px;
    position: relative;
}

.properties-grid.is-loading {
    opacity: 0.4;
    pointer-events: none;
}

.properties-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: #718096;
    font-size: 16px;
}

/* ---------- Card ---------- */
.property-card {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    row-gap: 0;
}

.property-card__image-link {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 4;
}

.property-card__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.property-card:hover .property-card__image-link img {
    transform: scale(1.04);
}

.property-card__category {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 16px;
    background: #102645eb;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- Card Body ---------- */
.property-card__body {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    row-gap: 0;
    align-content: start;
    padding: 24px 4px 0;
}

.property-card__title {
    font-size: 26px;
    font-weight: 700;
    color: #1b2d41;
    margin: 0 0 6px;
    line-height: 1.25;
    align-self: start;
}

.property-card__location {
    align-self: start;
    font-size: 14px;
    color: #4a5568;
    margin: 0 0 20px;
    letter-spacing: 0.3px;
}

.property-card__btn {
    display: inline-block;
    padding: 14px 30px;
    background: #1b2d41;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s ease;
    align-self: start;
    width: fit-content;
}

.property-card__btn:hover {
    background: #2a4460;
}

/* ---------- Pagination ---------- */
.properties-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.properties-pagination a,
.properties-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.25s ease;
}

.properties-pagination a:hover {
    background: #1b2d41;
    border-color: #1b2d41;
    color: #fff;
}

.properties-pagination .current {
    background: #1b2d41;
    border-color: #1b2d41;
    color: #fff;
}

/* ---------- Loader (optional spinner) ---------- */
.properties-grid.is-loading::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border: 3px solid #d1d5db;
    border-top-color: #1b2d41;
    border-radius: 50%;
    animation: propSpin 0.7s linear infinite;
}

@keyframes propSpin {
    to { transform: translateX(-50%) rotate(360deg); }
}

/*=========== Properties grid styles End ============*/

/*=========== Leasing Information styles Start ============*/
.leasing-information {
    background: #f3efea;
    padding: 88px 0 96px;
}

.leasing-information .site-container {
    max-width: 1440px;
}

.leasing-information__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
}

.leasing-information__title {
    margin: 0;
    max-width: 760px;
    font-size: 68px;
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #172c4c;
}

.leasing-information__logo-wrap {
    flex: 0 0 auto;
    width: 500px;
}

.leasing-information__logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.leasing-information__list {
    border-top: 1px solid rgba(23, 44, 76, 0.14);
}

.leasing-information__row {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(23, 44, 76, 0.14);
}

.leasing-information__name {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 400;
    color: #172c4c;
}

.leasing-information__contacts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: center;
}

.leasing-information__contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
    color: #172c4c;
}

.leasing-information__contact:hover {
    color: #0c6b54;
}

.leasing-information__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #172c4c;
    color: #f3efea;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.leasing-information__contact:hover .leasing-information__contact-icon {
    background: #0c6b54;
    color: #ffffff;
}

.leasing-information__contact-icon svg {
    width: 13px;
    height: 13px;
}

.leasing-information__contact-text {
    display: block;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/*=========== Leasing Information styles End ============*/

/*=========== Property Content block styles Start ============*/
.property-content-block {
    padding: 92px 0 104px;
    background: #ffffff;
}

.property-content-block .site-container {
    max-width: 1440px;
}

.property-content-block__rows {
    display: flex;
    flex-direction: column;
    /*gap: 22px;*/
}

.property-content-block__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    /*gap: 56px;*/
}

.property-content-block__row--reversed {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.property-content-block__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 48px;
    min-height: 320px;
    background: #ffffff;
}

.property-content-block__title {
    margin: 0 0 22px;
    max-width: 520px;
    font-size: 30px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #172c4c;
}

.property-content-block__text {
    max-width: 500px;
    color: rgba(23, 44, 76, 0.88);
    font-size: 15px;
    line-height: 1.7;
}

.property-content-block__text p {
    margin: 0 0 18px;
}

.property-content-block__text p:last-child {
    margin-bottom: 0;
}

.property-content-block__text strong,
.property-content-block__text b {
    font-weight: 700;
}

.property-content-block__media-wrap {
    min-width: 0;
}

.property-content-block__media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    background: #dfe8f1;
}

.property-content-block__media--right {
    clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}

.property-content-block__media--left {
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
}

.property-content-block__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

/*=========== Property Content block styles End ============*/

/*=========== Title and Text block styles Start ============*/
.title-and-text-block {
    padding: 96px 0 108px;
    background: #ffffff;
}

.title-and-text-block .site-container {
    max-width: 1440px;
}

.title-and-text-block__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 44px;
    align-items: start;
}

.title-and-text-block__title {
    margin: 0;
    max-width: 560px;
    font-size: 62px;
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.035em;
    color: #172c4c;
}

.title-and-text-block__text {
    max-width: 560px;
    padding-top: 6px;
    color: rgba(23, 44, 76, 0.9);
    font-size: 15px;
    line-height: 1.75;
}

.title-and-text-block__text p {
    margin: 0 0 18px;
}

.title-and-text-block__text p:last-child {
    margin-bottom: 0;
}
/*=========== Title and Text block styles End ============*/

/*=========== Text Card with Background block styles Start ============*/
.text-card-with-background {
    padding: 88px 0;
    background-color: #d6d1ca;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-card-with-background .site-container {
    max-width: 1440px;
}

.text-card-with-background__card {
    width: min(100%, 560px);
    margin-left: auto;
    padding: 34px 38px 36px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 40px rgba(23, 44, 76, 0.08);
}

.text-card-with-background__title {
    margin: 0 0 14px;
    font-size: 29px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #172c4c;
}

.text-card-with-background__text {
    color: rgba(23, 44, 76, 0.9);
    font-size: 14px;
    line-height: 1.72;
}

.text-card-with-background__text p {
    margin: 0 0 14px;
}

.text-card-with-background__text p:last-child {
    margin-bottom: 0;
}

/*=========== Text Card with Background block styles End ============*/

/*=========== Client Relationships block styles Start ============*/
.client-relationships-block {
    padding: 92px 0 108px;
    background: #F1F1F1;
}

.client-relationships-block .site-container {
    max-width: 1440px;
}

.client-relationships-block__title {
    margin: 0 0 18px;
    font-size: 62px;
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.035em;
    color: #172c4c;
}

.client-relationships-block__text {
    color: rgba(23, 44, 76, 0.9);
    font-size: 14px;
    line-height: 1.72;
}

.client-relationships-block__text p {
    margin: 0 0 16px;
}

.client-relationships-block__text p:last-child {
    margin-bottom: 0;
}

.client-relationships-block__logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 72px;
    align-items: center;
    margin-top: 72px;
}

.client-relationships-block__logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    /*min-height: 92px;*/
}

.client-relationships-block__logo {
    display: block;
    /*max-height: 86px;*/
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.9;
}

/*=========== Client Relationships block styles End ============*/

/*=========== Text with Logos block styles Start ============*/
.text-with-logos-block {
    padding: 92px 0 100px;
    background: #ffffff;
}

.text-with-logos-block .site-container {
    max-width: 1440px;
}

.text-with-logos-block__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 56px;
    align-items: start;
}

.text-with-logos-block__title {
    margin: 0 0 18px;
    font-size: 62px;
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.035em;
    color: #172c4c;
}

.text-with-logos-block__text {
    max-width: 520px;
    color: rgba(23, 44, 76, 0.9);
    font-size: 14px;
    line-height: 1.72;
}

.text-with-logos-block__text p {
    margin: 0 0 16px;
}

.text-with-logos-block__text p:last-child {
    margin-bottom: 0;
}

.text-with-logos-block__logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 42px;
    align-items: center;
    padding-top: 16px;
}

.text-with-logos-block__logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
}

.text-with-logos-block__logo {
    display: block;
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.92;
}

/*=========== Text with Logos block styles End ============*/

/*=========== Image and Text block styles Start ============*/
.image-and-text-block {
    padding: 92px 0 104px;
    background: #ffffff;
}

.image-and-text-block .site-container {
    max-width: 1440px;
}

.image-and-text-block__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}

.image-and-text-block__media {
    min-width: 0;
}

.image-and-text-block__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-and-text-block__content {
    max-width: 560px;
}

.image-and-text-block__title {
    margin: 0 0 18px;
    font-size: 62px;
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.035em;
    color: #172c4c;
}

.image-and-text-block__text {
    color: rgba(23, 44, 76, 0.9);
    font-size: 14px;
    line-height: 1.72;
}

.image-and-text-block__text p {
    margin: 0 0 16px;
}

.image-and-text-block__text p:last-child {
    margin-bottom: 0;
}

/*=========== Image and Text block styles End ============*/

/* ==========================================================
   News Grid — Styles
   ========================================================== */

/* ---------- Section ---------- */
.news-section {
    padding: 60px 0 80px;
}

.news-section .site-container {
    /*max-width: 1320px;*/
    /*margin: 0 auto;*/
    /*padding: 0 40px;*/
}

/* ---------- List ---------- */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.news-empty {
    text-align: center;
    padding: 60px 0;
    color: #718096;
    font-size: 16px;
}

/* ---------- Card ---------- */
.news-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ---------- Image ---------- */
.news-card__image-link {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.news-card__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card__image-link img {
    transform: scale(1.03);
}

/* ---------- Body ---------- */
.news-card__body {
    padding-top: 8px;
}

.news-card__date {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    color: #718096;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.news-card__title {
    font-family: var(--font-family-base);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: #1b2d41;
    margin: 0 0 16px;
}

.news-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card__title a:hover {
    color: #2a4460;
}

.news-card__excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.news-card__excerpt p {
    margin: 0;
}

/* ---------- Link (SEE MORE) ---------- */
.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1b2d41;
    text-decoration: none;
    padding-bottom: 8px;
    border-bottom: 2px solid #1b2d41;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.news-card__link:hover {
    color: #2a4460;
    border-color: #2a4460;
}

.news-card__arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.news-card__link:hover .news-card__arrow {
    transform: translateX(4px);
}

/* ---------- Pagination ---------- */
.news-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.news-pagination a,
.news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.25s ease;
}

.news-pagination a:hover {
    background: #1b2d41;
    border-color: #1b2d41;
    color: #fff;
}

.news-pagination .current {
    background: #1b2d41;
    border-color: #1b2d41;
    color: #fff;
}

/* ==========================================================
   Related News — Styles
   ========================================================== */

/* ---------- Section ---------- */
.related-news {
    padding: 64px 0;
    background: #ffffff;
}

/* ---------- Heading ---------- */
.related-news__heading {
    font-family: var(--font-family-base);
    font-size: 42px;
    font-weight: 700;
    color: #1b2d41;
    margin: 0 0 48px;
    line-height: 1.2;
}

/* ---------- Grid ---------- */
.related-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* ---------- Card ---------- */
.related-news__card {
    display: flex;
    flex-direction: column;
}

/* ---------- Image ---------- */
.related-news__image-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
}

.related-news__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.related-news__card:hover .related-news__image-link img {
    transform: scale(1.04);
}

/* ---------- Body ---------- */
.related-news__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ---------- Date pill ---------- */
.related-news__date {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 20px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 13px;
    color: #718096;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

/* ---------- Title ---------- */
.related-news__title {
    font-family: var(--font-family-base);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #1b2d41;
    margin: 0 0 12px;
}

.related-news__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-news__title a:hover {
    color: #2a4460;
}

/* ---------- Excerpt ---------- */
.related-news__excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 20px;
    flex: 1;
}

.related-news__excerpt p {
    margin: 0;
}

/* ---------- Link ---------- */
.related-news__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1b2d41;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 2px solid #1b2d41;
    transition: color 0.3s ease, border-color 0.3s ease;
    margin-top: auto;
}

.related-news__link:hover {
    color: #2a4460;
    border-color: #2a4460;
}

.related-news__arrow {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.related-news__link:hover .related-news__arrow {
    transform: translateX(4px);
}

/*================== Contact info styles ============*/

.contact-info{
    padding: 66px 0 0 0;
}
.contact-content-flex{
    display: flex;
    align-items: flex-start;
    margin-bottom: 70px;
}
.ccf-col{
    width: 50%;
}
.ccf-links-col{
    padding-left: 70px;
}
.contact-links-block h4{
    margin: 0 0 40px 0;
    font-size: 32px;
    color: #102645;
}
.cl-row{
    padding-bottom: 40px;
    border-bottom: 1px solid #E2E2E2;
    margin-bottom: 40px;
}
.cl-flex{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.clf-item{
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 20px;
}
.clf-item img{
    margin-right: 16px;
}
.clf-item span{
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-primary);
}
.map-container{
    width: 100%;
    height: 626px;
}
.map-container iframe{
    width: 100%;
    height: 100%;
}
.with_frm_style{
    --field-font-size: 18px;
    /*--text-color: #9D9D9D;*/
}
.with_frm_style input[type=text],
.with_frm_style input[type=password],
.with_frm_style input[type=email],
.with_frm_style input[type=number],
.with_frm_style input[type=url],
.with_frm_style input[type=tel],
.with_frm_style input[type=file],
.with_frm_style input[type=search],
.with_frm_style select,
.with_frm_style .frm-card-element.StripeElement,
.with_frm_style textarea{
    padding: 0 30px !important;
    height: 92px !important;
    font-size: 18px !important;
    /*color: #9D9D9D !important;*/
}
.with_frm_style textarea{
    padding: 30px !important;
    font-size: 18px !important;
    min-height: 200px !important;
}
.with_frm_style .vertical_radio .frm_checkbox label{
    display: flex !important;
    align-items: center !important;
}
.field_t2ccp-0{
    font-size: 11px !important;
    color: #212121 !important;
}
input#field_t2ccp-0{
    margin-right: 10px !important;
    height: 21px !important;
    width: 21px !important;
    border: none !important;
    background: #E0E0E0 !important;
}
.frm_submit button.frm_button_submit{
    width: 179px !important;
    height: 61px !important;
    border-radius: var(--radius-5) !important;
    background: var(--color-brand-navy) !important;
    color: var(--color-white) !important;
    font-family: var(--font-family-base) !important;
    font-size: var(--fs-18) !important;
    font-weight: var(--font-weight-medium) !important;
    line-height: 20.52px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    border: none !important;
}
.frm_submit button.frm_button_submit:hover{
    background: #255291 !important;
}
/*======================= Special Styles ========================*/
body.page-id-16 .gradient-overlay{
    align-items: flex-start;
}
nav.custom-breadcrumbs{
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 6px 14px;
    background: #fff;
    border-radius: 3px;
    margin-top: 30px;
}
nav.custom-breadcrumbs a{
    color: #212121;
    text-transform: uppercase;
}
nav.custom-breadcrumbs a:hover{
    color: var(--color-brand-gold-strong);
}
nav.custom-breadcrumbs span{
    display: block;
    color: #656C76;
    text-transform: uppercase;
}
nav.custom-breadcrumbs span.breadcrumb-sep{
    margin: 0 6px;
}
#menu-main-menu-2 ul.sub-menu{
    display: none;
}
.footer-info-items a:hover{
    color: var(--color-brand-gold-strong);
}
a.footer-email:hover{
    color: var(--color-brand-gold-strong);
}
.footer-social:hover{
    background: #255291;
}
.property-content-block__row--reversed .property-content-block__media-wrap {
    order: -1;
}

.section-news-item-main-content{
    padding: 70px 0 90px 0;
}
.ni-meta-data{
    display: flex;
    align-items: center;
    column-gap: 16px;
}
.ni-meta-data div{
    padding: 10px 24px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    color: #718096;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}
.ni-text p{
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.ni-text p a{
    text-decoration: none;
    color: #102645;
    font-weight: bold;
}
.ni-text p a:hover{
    color: var(--color-brand-gold-strong);
}
a.original-article-link{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    margin: 30px 0 50px 0;
    padding: 14px;
    font-size: 18px;
    text-transform: uppercase;
    color: #102645;
    border-bottom: 2px solid #102645;
}
a.original-article-link .related-news__arrow{
    margin-left: 10px;
}
a.original-article-link:hover .related-news__arrow {
    transform: translateX(4px);
}
.home .sc-header__burger{
    border-color: #fff;
}
.home .sc-header__burger span{
    background: #fff;
}
body.page-id-16 .sc-menu--mobile a{
    color: #212121;
}
body.page-id-16 .sc-menu--mobile ul.sub-menu a{
    color: #fff;
}
.sc-menu--mobile ul{
    padding: 0;
}
.sc-menu--mobile li{
    list-style: none;
    display: block;
    width: 90%;
}

.page-hero__content{
    max-width: unset !important;
}

.with_frm_style input[type=checkbox]:focus{
    box-shadow: unset !important;
}
.text-page-block{
    padding: 80px 0;
}
.text-page-block h1{
    font-size: 48px;
}
.clf-item span:hover{
    color: var(--color-brand-gold-strong);
}

section[id] {
    scroll-margin-top: 114px;
}
/* ==========================================================
   Team Modal
   ========================================================== */

.team-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.team-modal.is-open {
    display: flex;
}

/* ---------- Overlay ---------- */
.team-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* ---------- Container ---------- */
.team-modal__container {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 6px;
    width: 80%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: teamModalIn 0.3s ease;
}

@keyframes teamModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---------- Close button ---------- */
.team-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #1b2d41;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.team-modal__close:hover {
    background: #2a4460;
}

/* ---------- Content layout ---------- */
.team-modal__content {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
}

/* ---------- Image ---------- */
.team-modal__image-wrap {
    border-radius: 6px;
    overflow: hidden;
}

.team-modal__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* ---------- Info ---------- */
.team-modal__name {
    font-family: var(--font-family-base);
    font-size: 26px;
    font-weight: 700;
    color: #1b2d41;
    margin: 12px 0 4px 0;
    line-height: 1.25;
}

.team-modal__role {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4a5568;
    margin-bottom: 20px;
}

.team-modal__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
}

.team-modal__desc p {
    margin: 0 0 14px;
}

.team-modal__desc p:last-child {
    margin-bottom: 0;
}

/* ---------- Body lock ---------- */
body.modal-open {
    overflow: hidden;
}


/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 768px) {
    .team-modal__container {
        padding: 32px 24px;
        width: 94%;
        max-height: 90vh;
    }

    .team-modal__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

}

@media (max-width: 475px) {
    .team-modal__container {
        padding: 24px 16px;
    }

    .team-modal__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .team-modal__desc {
        font-size: 13px;
    }
}

