/*!
Theme Name: 50 Franklin
Theme URI: https://bostonskyagency.com/
Author: Boston Sky Digital Agency
Author URI: https://bostonskyagency.com/
Description: Custom WordPress theme for 50 Franklin — flexible workspace in Downtown Boston. Header & footer are configurable via ACF Theme Options; page content is built with Elementor.
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: franklin-theme
Tags: custom-logo, custom-menu, featured-images, translation-ready

50 Franklin is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

:root {
    --brand: #425b76;
    --brand-deep: #2f4257;
    --brand-dark: #000b26;
    --ink: #1f2933;
    --text: #333333;
    --muted: #6b7280;
    --line: #e2e4e8;
    --bs-border-color: #ccc;

    --display: "DM Serif Display", Georgia, "Times New Roman", serif;
    --body: "Inter", Helvetica, Arial, sans-serif;
}

/**** General/Global CSS ****/
* {
    box-sizing: border-box;
}

body {
    font-size: 18px;
    color: var(--text);
    font-weight: 400;
    line-height: 1.6;
    background: #fff;
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
}

p,
address {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-family: var(--body);
}

a {
    color: var(--brand);
    outline: none;
    border: none;
    text-decoration: none;
}

a:hover {
    color: var(--brand-deep);
    text-decoration: none;
    outline: none !important;
}

a,
img,
button,
i,
input[type="submit"] {
    transition: all 0.3s ease-in-out;
}

img {
    max-width: 100% !important;
    height: auto !important;
}

b,
strong {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    line-height: 1.18;
    font-weight: 400;
    margin-bottom: 24px;
    font-family: var(--display);
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

iframe {
    max-width: 100% !important;
}

#wrapper {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.clearfix {
    clear: both;
}

.padding-sec {
    padding: 70px 0;
}

.padding-lg-sec {
    padding: 90px 0;
}

.padding-top-sec {
    padding-top: 70px;
}

.padding-bottom-sec {
    padding-bottom: 70px;
}

.hidden,
.screen-reader-text {
    display: none;
}

/* white-text helper for dark sections */
.txt-white,
.txt-white p,
.txt-white a,
.txt-white h1,
.txt-white h2,
.txt-white h3,
.txt-white h4,
.txt-white h5,
.txt-white h6 {
    color: #fff !important;
}

/* uppercase letter-spaced eyebrow label */
.eyebrow,
.hero-eyebrow {
    display: inline-block;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand);
    margin-bottom: 12px;
}

/**** Button CSS ****/
.btn-primary {
    display: inline-block;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fff;
    background-color: var(--brand);
    border: 1px solid var(--brand);
    border-radius: 2px;
    padding: 15px 30px;
    cursor: pointer;
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff !important;
    background-color: var(--brand-deep);
    border-color: var(--brand-deep);
    box-shadow: 0 6px 22px rgba(66, 91, 118, 0.22);
}

.btn-lg {
    display: inline-block;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    background-color: var(--brand);
    border: 1px solid var(--brand);
    border-radius: 2px;
    padding: 18px 42px;
    cursor: pointer;
}

.btn-lg:hover {
    color: #fff !important;
    background-color: var(--brand-deep);
    border-color: var(--brand-deep);
    transform: translateY(-2px);
}

/* Button Menu (hamburger) — static icon only. The actual mobile menu is
   handled by a WordPress plugin; this theme no longer toggles it via JS. */
.btn-menu {
    width: 36px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 9999;
}

.btn-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--brand);
    position: relative;
    display: block;
    transition: all 0.25s ease-in-out;
    margin: 3px 0;
    border-radius: 20px;
}

/* Scroll Up Button */
.btn-scrollup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background-color: var(--brand);
    border-radius: 50%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    cursor: pointer;
    position: fixed;
    right: 18px;
    bottom: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.btn-scrollup.active {
    opacity: 1;
    visibility: visible;
}

.btn-scrollup:hover {
    background-color: var(--brand-deep);
}

/**** Header CSS ****/
#header {
    width: 100%;
    position: relative;
    z-index: 50;
}

.header-wrap {
    background-color: #fff;
    /* border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04); */
}

#header.sticky .header-wrap {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 0;
    /* transition: padding 0.2s linear; */
}

.topbar-wrap {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header.sticky .topbar-wrap {
    padding: 12px 0;
}

#logo {
    position: relative;
    z-index: 6;
    line-height: 0;
}

#logo a {
    display: inline-block;
}

#logo a img {
    display: block;
    width: auto !important;
    height: 52px !important;
    border-radius: 60px;
}

.hd-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.hd-book {
    white-space: nowrap;
}



/**** Main Menu CSS ****/
#main-menu>ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

#main-menu>ul>li {
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    position: relative;
}

#main-menu>ul>li>a {
    display: block;
    color: var(--brand);
    padding: 18px 0;
    position: relative;
}

#header.sticky #main-menu>ul>li>a {
    padding: 12px 0;
}

#main-menu>ul>li>a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease-in-out;
}

#main-menu>ul>li>a:hover,
#main-menu>ul>li.current-menu-item>a {
    color: var(--brand-deep);
}

#main-menu>ul>li>a:hover:after,
#main-menu>ul>li.current-menu-item>a:after {
    transform: scaleX(1);
}

#main-menu>ul>li.menu-call>a {
    color: var(--ink);
}

/**** Hero / Main Banner CSS ****/
.main-banner {
    width: 100%;
    padding: 0;
    background-image: linear-gradient(rgba(10, 16, 24, 0.55), rgba(10, 16, 24, 0.6)),
        url('assets/images/banner-img.jpg');
    background-color: #1b232d;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero-sec .container {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.banner-caption {
    max-width: 760px;
}

.banner-caption .hero-eyebrow {
    color: #fff;
    opacity: 0.85;
}

.banner-caption h1 {
    font-size: 68px;
    line-height: 1.08;
    margin-bottom: 22px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.banner-caption p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 620px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.92);
}

/**** Intro Section CSS ****/
.intro-sec {
    text-align: center;
}

.intro-sec.light-bg {
    background-color: #fafafa;
}

.intro-sec .container {
    max-width: 1000px;
}

.intro-sec .intro-tag {
    font-family: var(--display);
    font-size: 22px;
    font-style: italic;
    color: var(--brand);
    margin-top: 8px;
    margin-bottom: 0;
}

/**** Gallery CSS ****/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16 / 9;
    background: #eef0f2;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 18px 16px;
    color: #fff;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.promo-line {
    text-align: center;
    font-family: var(--display);
    font-size: 22px;
    color: var(--brand);
    margin: 40px 0 0;
}

hr.sec-divider {
    width: 50%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.85);
    margin: 18px auto 0;
}

/**** Feature Sections CSS ****/
.feature-sec .row {
    --bs-gutter-x: 50px;
}

.feature-img {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 24px 60px rgba(20, 30, 45, 0.16);
}

.feature-img img {
    width: 100% !important;
    display: block;
    object-fit: cover;
}

.feature-content h2 {
    /* font-size: 44px;
    margin-bottom: 20px; */
}

.feature-content p {
    /* color: #4a4a4a; */
}

.feature-content .btn-primary {
    margin-top: 24px;
}

.feature-sec-alt .feature-img {
    margin-bottom: 26px;
}

/* feature check list */
.list {
    list-style: none;
    padding-left: 0;
    margin: 28px 0 0;
}

.list__item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 14px 0;
    font-size: 18px;
    color: var(--ink);
}

.list__item i {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--brand);
    background: rgba(66, 91, 118, 0.1);
    border-radius: 50%;
}

.price-line {
    font-weight: 600;
    color: var(--ink);
}

.price-line strong {
    color: var(--brand);
}

/**** Quote / Testimonial CSS ****/
.quote-sec {
    background-color: #f4f6f8;
    text-align: center;
}

.quote-sec .container {
    max-width: 960px;
}

.quote-block {
    position: relative;
    margin: 0;
    padding: 10px 0;
}

.quote-block .quote-icon {
    font-size: 64px;
    color: rgba(66, 91, 118, 0.14);
    margin-bottom: 6px;
}

.quote-block h2 {
    font-size: 38px;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 0;
}

.quote-block .quote-author {
    margin: 18px 0 0;
    font-size: 17px;
    color: var(--muted);
}

/**** Footer CSS ****/
#footer {
    background-color: #fff;
    border-top: 1px solid var(--line);
    padding: 56px 0 0;
}

#footer .row {
    align-items: flex-start;
}

.ft-brand {
    font-size: 34px;
    color: var(--ink);
    margin-bottom: 14px;
}

#footer p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
}

#footer .ft-widget-title {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--body);
    color: var(--ink);
    margin-bottom: 18px;
}

.ft-widgets-sec ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-widgets-sec ul.menu li {
    font-size: 16px;
    line-height: 1.75;
}

.ft-widgets-sec ul.menu li a {
    color: var(--brand);
}

.ft-widgets-sec ul.menu li a:hover {
    color: var(--brand-deep);
    padding-left: 4px;
}

/**** Social Links CSS ****/
.ft-socialmedia {
    display: flex;
    align-items: center;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    gap: 12px;
}

.ft-socialmedia li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff !important;
    font-size: 18px;
    background-color: var(--brand);
    border-radius: 50%;
}

.ft-socialmedia li a:hover {
    background-color: var(--brand-dark);
    transform: translateY(-3px);
}

.ft-copyright {
    border-top: 1px solid var(--line);
    margin-top: 48px;
    padding: 22px 0;
    text-align: right;
}

.ft-copyright p {
    margin: 0;
    font-size: 15px;
    color: var(--muted);
}

/**** WOW reveal fallback (no-js) ****/
.wow {
    visibility: visible;
}

/**** Inner Page Title CSS ****/
.page-title {
    text-align: center;
    background-image: linear-gradient(to bottom, #ffffff, #fafafa);
}

.page-title .container {
    max-width: 1000px;
}

.page-title .eyebrow {
    color: #000;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.page-title h1 {
    font-size: 62px;
    margin-bottom: 0;
}

/**** About Content CSS ****/
.about-content {
    background-color: #fafafa;
}

.about-content .container {
    max-width: 1000px;
}

.about-content h3 {
    text-align: center;
}

.about-content p {
    text-align: justify;
    color: #333;
}

/**** Standalone Centered Heading CSS ****/
.sec-heading {
    text-align: center;
}

.sec-heading h2 {
    margin-bottom: 40px;
}

/**** Full-width Page Hero Image CSS ****/
.page-hero-img {
    width: 100%;
    line-height: 0;
}

.page-hero-img img {
    width: 100% !important;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

/**** Pricing Cards CSS ****/
.price-cards .container {
    /* max-width: 1140px; */
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.price-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(20, 30, 45, 0.12);
}

.price-card__img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #eef0f2;
}

.price-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.price-card:hover .price-card__img img {
    transform: scale(1.06);
}

.price-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    text-align: center;
    padding: 30px;
}

.price-card__body h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.price-card__body p {
    /* color: #4a4a4a; */
    margin-bottom: 16px;
}

.price-card__price {
    font-weight: 600;
    color: var(--ink);
    margin-top: auto;
    margin-bottom: 20px;
}

.price-card .btn-primary {
    align-self: center;
}

/**** Inclusions CSS ****/
.inclusions-sec {
    background-color: #fafafa;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    /* max-width: 1040px; */
    margin: 0 auto;
}

.inclusion {
    text-align: center;
    padding: 0 10px;
}

.inclusion__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    font-size: 26px;
    color: #fff;
    background-color: #000;
    border-radius: 6px;
    margin-bottom: 20px;
}

.inclusion h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.inclusion p {
    font-size: 16px;
    line-height: 1.75;
    /* color: #373737; */
    margin-bottom: 0;
}

/**** Info Lists (Why / Located) CSS ****/
.info-sec {
    text-align: center;
}

.info-sec .container {
    max-width: 960px;
}

.info-sec h2 {
    margin-bottom: 18px;
}

.info-sec h2:not(:first-child) {
    margin-top: 50px;
}

.info-sec p {
    color: #4a4a4a;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
}

.info-list li {
    font-size: 18px;
    line-height: 2;
    color: var(--ink);
}

/**** Hero Image CTA (overlapping button) CSS ****/
.hero-cta {
    text-align: center;
    margin-top: -28px;
    position: relative;
    z-index: 2;
}

/**** Booking Options (two-column CTA) CSS ****/
.booking-options {
    text-align: center;
}

.booking-options .row {
    --bs-gutter-x: 0;
    align-items: stretch;
}

.booking-option {
    padding: 0 30px;
}

.booking-options .row>[class*="col-"]:first-child .booking-option {
    border-right: 1px solid var(--line);
}

.booking-option h3 {
    margin-bottom: 24px;
}

/**** Standalone Centered Media CSS ****/
.media-sec .feature-img {
    max-width: 920px;
    margin: 0 auto;
}

/**** FAQ Accordion CSS ****/
.faq-sec .container {
    max-width: 900px;
}

/* .faq-sec .sec-heading {
    margin-bottom: 14px;
} */

.faq-sec .faq-intro h2 {
    margin-bottom: 16px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    display: block;
    padding: 22px 44px 22px 0;
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.3;
    color: var(--ink);
    transition: color 0.25s ease-in-out;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "\002B";
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    font-family: var(--body);
    font-size: 26px;
    line-height: 1;
    color: var(--brand);
    transition: transform 0.25s ease-in-out;
}

.faq-item[open] summary,
.faq-item summary:hover {
    color: var(--brand);
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-item p {
    margin: 0 0 22px;
    color: var(--text);
}

/**** Shared Form Styles CSS ****/
.btn-primary.btn-block {
    width: 100%;
    text-align: center;
}

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.form-field .req {
    color: #e53e3e;
    margin-left: 2px;
}

.form-field input,
.form-field select {
    width: 100%;
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
    padding: 12px 14px;
    background-color: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23425b76'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 38px;
    cursor: pointer;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(66, 91, 118, 0.12);
}

.form-privacy {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin: 4px 0 20px;
}

/* Static reCAPTCHA placeholder (visual only) */
.recaptcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 302px;
    max-width: 100%;
    height: 74px;
    padding: 0 14px;
    margin-bottom: 22px;
    background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}

.recaptcha-box__check {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
}

.recaptcha-box__label {
    font-family: var(--body);
    font-size: 14px;
    color: #555;
}

.recaptcha-box__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    color: #4a90d9;
    text-align: center;
}

.recaptcha-box__brand i {
    font-size: 22px;
}

.recaptcha-box__brand small {
    font-size: 10px;
    color: #9aa0a6;
    letter-spacing: 0.2px;
}

/**** Contact Page CSS ****/
.contact-sec .row {
    --bs-gutter-x: 40px;
}

.contact-details {
    margin-top: 34px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    font-size: 18px;
    color: #fff;
    background-color: #000;
    border-radius: 4px;
}

.contact-detail__text {
    padding-top: 2px;
}

.contact-detail__label {
    display: block;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.contact-detail__text p {
    margin-bottom: 0;
}

.contact-form-card {
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 18px 50px rgba(20, 30, 45, 0.08);
}

.contact-form-card h3 {
    margin-bottom: 28px;
}

/**** Broker Referral Program Page CSS ****/
.broker-intro .container {
    max-width: 1000px;
}

.broker-intro h2 {
    text-align: center;
    margin-bottom: 30px;
}

.broker-intro__body {
    text-align: left;
}

.broker-intro__body h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.broker-list {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 24px;
}

.broker-list li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 12px;
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.fee-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 34px 30px;
    box-shadow: 0 18px 50px rgba(20, 30, 45, 0.10);
}

.fee-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.fee-card p {
    margin-bottom: 16px;
}

.fee-card p:last-child {
    margin-bottom: 0;
}

.cta-band {
    background-color: var(--brand);
    text-align: center;
    padding: 26px 0;
}

.cta-band h2 {
    color: #fff;
    margin-bottom: 0;
    font-size: 34px;
}

.referral-form-sec {
    background-image: linear-gradient(to bottom, #ffffff, #fafafa);
}

.referral-form-sec .container {
    max-width: 900px;
}

.referral-form-card {
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 18px 50px rgba(20, 30, 45, 0.08);
}

/**** Blog CSS ****/
/* Listing intro heading */
.blog-hero {
    text-align: center;
}

.blog-hero .container {
    max-width: 1000px;
}

.blog-hero h1 {
    margin-bottom: 0;
}

/* Shared post-card grid (listing + related posts) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(20, 30, 45, 0.10);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(20, 30, 45, 0.16);
}

.blog-card__img {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #eef0f2;
}

.blog-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.06);
}

.blog-card__body {
    padding: 24px;
}

.blog-card__tag {
    display: inline-block;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand);
    margin-bottom: 10px;
}

.blog-card__title {
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 0;
}

.blog-card__title a {
    color: var(--ink);
}

.blog-card__title a:hover {
    color: var(--brand);
}

/* Single post article */
.blog-post .container {
    max-width: 820px;
}

.blog-post__back {
    display: inline-block;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--ink);
    margin-bottom: 32px;
}

.blog-post__back:hover {
    color: var(--brand);
}

.blog-post__date {
    display: block;
    font-family: var(--body);
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 12px;
}

.blog-post__title {
    margin-bottom: 24px;
}

.blog-post__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--body);
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 36px;
}

.blog-post__author-img {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
    object-fit: cover;
}

.blog-post__meta a {
    color: var(--brand);
    font-weight: 600;
}

.blog-post__featured {
    overflow: hidden;
    border-radius: 6px;
    margin: 8px 0 32px;
    box-shadow: 0 18px 50px rgba(20, 30, 45, 0.12);
}

.blog-post__featured img {
    width: 100% !important;
    display: block;
}

.blog-post__body ol {
    padding-left: 22px;
    margin: 0 0 24px;
}

.blog-post__body ol li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 8px;
}

/* Share row */
.blog-post__share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.blog-post__share .eyebrow {
    margin-bottom: 0;
}

.blog-share__links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-share__links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff !important;
    font-size: 16px;
    background-color: var(--brand);
    border-radius: 50%;
}

.blog-share__links li a:hover {
    background-color: var(--brand-dark);
    transform: translateY(-3px);
}

/* Related posts */
.blog-related {
    background-color: #fafafa;
}

/* Listing pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 50px;
}

.blog-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: var(--brand);
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
}

.blog-pagination__link:hover,
.blog-pagination__link.is-active {
    color: #fff !important;
    background-color: var(--brand);
    border-color: var(--brand);
}

.blog-pagination__link.is-disabled {
    color: var(--muted);
    opacity: 0.5;
    pointer-events: none;
}

/**** Privacy Policy Page CSS ****/
.policy-sec {
    background-color: #fafafa;
}

.policy-sec .container {
    max-width: 900px;
}

.policy-date {
    color: var(--muted);
    margin-bottom: 24px;
}

/* All section titles share one consistent size + color (project serif) */
.policy-sec h2 {
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 16px;
}

.policy-sec h2:not(:first-of-type) {
    margin-top: 40px;
}

/* Bold sub-labels: one consistent style across every section */
.policy-label {
    font-family: var(--body);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

/* Bullet lists: one consistent style; paragraphs inherit global 18px/var(--text) */
.policy-list {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 24px;
}

.policy-list li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 10px;
}