.meet-team-hero {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
    background-color: #09203d;
}

@media (max-width: 767px) {
    .meet-team-hero {
        padding: 32px 16px !important;
    }

    .meet-team-hero .hero-wrapper .meet-ctas {
        flex-direction: column;
    }

    .meet-team-hero .hero-wrapper .meet-ctas .primary-link,
    .meet-team-hero .hero-wrapper .meet-ctas .secondary-link {
        width: 100% !important;
    }

    .meet-team-hero .hero-wrapper h1 {
        font-size: 48px !important;
    }

    .meet-team-hero .hero-wrapper p {
        font-size: 18px !important;
    }
}

.meet-team-hero .hero-wrapper {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.meet-team-hero .hero-wrapper h1 {
    font-size: 64px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 40px;
}

.meet-team-hero .hero-wrapper p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #fff;
}

.meet-team-hero .hero-wrapper .meet-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
}

.meet-team-hero .hero-wrapper .meet-ctas .primary-link {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004155;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
	border: 1px solid transparent;
	transition: .2s ease-in-out;
}

.meet-team-hero .hero-wrapper .meet-ctas .primary-link:hover {
	border: 1px solid #004155;
	background: transparent;
}

.meet-team-hero .hero-wrapper .meet-ctas .secondary-link {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #bf9903;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
	border: 1px solid transparent;
	transition: .2s ease-in-out;
}

.meet-team-hero .hero-wrapper .meet-ctas .secondary-link:hover {
	background: transparent;
	border: 1px solid #bf9903;
}

/* meet team cards  */

.meet-team-grid-container {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

.meet-team-grid-container .meet-team-wrapper {
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-direction: column;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-intro {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    text-align: center;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-intro h2 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 24px;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-intro p {
    margin-top: 0;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

@media (min-width: 767px) and (max-width: 1024px) {
    .meet-team-grid-container .meet-team-wrapper .meet-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .meet-team-grid-container {
        padding: 32px 16px !important;
    }

    .meet-team-grid-container .meet-team-wrapper .meet-team-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .meet-team-grid-container .meet-team-wrapper .meet-team-grid a {
        aspect-ratio: 1/1 !important;
    }
}

@media (max-width: 576px) {
    .meet-team-grid-container .meet-team-wrapper .meet-team-grid a {
        aspect-ratio: 4/5 !important;
    }
}

.meet-team-grid-container .meet-team-wrapper .meet-team-grid a {
    width: 100%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: end;
    aspect-ratio: 2/3;
    position: relative;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-grid a:hover img {
    filter: grayscale(1);
}

.meet-team-grid .meet-team-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(9, 32, 61, 0) 55%,
            rgba(9, 32, 61, 0.75) 100%);
    z-index: 1;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-grid a img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    z-index: 1;
    filter: grayscale(0);
    transition: .3s filter ease-in-out;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-grid a .job-desc {
    padding: 20px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    z-index: 2;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-grid a .job-desc span {
    opacity: 1;
    color: #fff;
    transition: .3s opacity ease-in;
    font-size: 24px;
    font-weight: bold;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-grid a .hidden-cta {
    padding: 20px;
    background-color: #09203d;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    transition: .3s opacity ease-in-out;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-grid a:hover .hidden-cta {
    opacity: 1;
    pointer-events: all;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-grid a:hover .job-desc span {
    opacity: 0;
}

.meet-team-grid-container .meet-team-wrapper .meet-team-grid a .hidden-cta .read-bio {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004155;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
}

/* end of meet the team  */

/* about us link  */

.learn-about-us-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 64px 32px;
}

@media (max-width: 767px) {
    .learn-about-us-container {
        padding: 32px 16px !important;
    }
}

@media (max-width: 576px) {
    .learn-about-us-container .learn-wrapper .learn-content h3 {
        font-size: clamp(32px, 4vw, 40px) !important;
    }

    .learn-about-us-container .learn-wrapper {
        padding: 160px 32px !important;
    }
}

.learn-about-us-container .learn-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    /* min-height: 400px; */
    position: relative;
    max-width: 1400px;
    padding: 160px 40px;
    background-image: url('https://nicholsonandwoolf.com/wp-content/uploads/2026/02/53737091.webp');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.learn-about-us-container .learn-wrapper::after {
    content: "";
    position: absolute;
    display: block;
    background-color: rgba(0,0,0,.4);
    mix-blend-mode: multiply;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .85;
    z-index: 0;
}

.learn-about-us-container .learn-wrapper .learn-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.learn-about-us-container .learn-wrapper .learn-content h3 {
    font-size: 48px;
    font-weight: bold;
	color: #fff;
    margin-bottom: 40px;
    margin-top: 0;
}

.learn-about-us-container .learn-wrapper .learn-content a {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004155;
    padding: 12px 16px;
    color: #fff;
	border: 1px solid transparent;
    text-decoration: none;
	transition: .2s ease-in-out;
	
}

.learn-about-us-container .learn-wrapper .learn-content a:hover {
	background: transparent;
	color: fff;
	border: 1px solid #fff;
}

/* end of about us link  */

/* faqs  */

.team-faqs-container {
    padding: 64px 32px;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .team-faqs-container {
        padding: 32px 16px !important;
    }
}

.team-faqs-container .team-faqs-wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.team-faqs-container .team-faqs-wrapper .faq-intro {
    margin-bottom: 24px;
    text-align: center;
}

.team-faqs-container .team-faqs-wrapper .faq-intro h2 {
    font-size: 32px;
    font-weight: bold;

}

.team-faqs-container .team-faqs-wrapper .faqs {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.team-faqs-container .team-faqs-wrapper .faqs .faq {
    width: 100%;
}

.team-faqs-container .team-faqs-wrapper .faqs .faq .faq-title {
    background-color: transparent;
    position: relative;
    border-top: 1px solid #e9ecf1;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    outline: none;
    padding: 34px 0;
	gap: 20px;
    text-align: left;
    transition: all .3s cubic-bezier(.47, 0, .745, .715) 0s;
    width: 100%;
}

.team-faqs-container .team-faqs-wrapper .faqs .faq .faq-title h4 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    white-space: normal;
}

.team-faqs-container .team-faqs-wrapper .faqs .faq .faq-title::after {
    align-items: center;
    background-color: #f4f6fb;
    background-image: url('https://www.axept.io/hubfs/4424028/axeptio-hs-theme/plus.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    border-radius: 50%;
    content: "";
    display: flex;
    height: 36px;
    justify-content: center;
    position: relative;
    right: 0;
    transition: .2s;
    transition: all .15s ease 0s;
    width: 36px;
	min-width: 36px;
}

.team-faqs-container .team-faqs-wrapper .faqs .faq .faq-title.active::after {
    background-image: url('https://www.axept.io/hubfs/4424028/axeptio-hs-theme/minus.svg');
    transform: rotate(180deg);
}

.team-faqs-container .team-faqs-wrapper .faqs .faq .faq-answer {
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.team-faqs-container .faq .faq-answer .faq-answer-inner {
    overflow: hidden;
}

/* Open state */
.team-faqs-container .faq.is-open .faq-answer {
    grid-template-rows: 1fr !important;
}

/* Optional: spacing + a slightly nicer reveal */
.team-faqs-container .faq .faq-answer .faq-answer-inner p {
    margin: 0;
    padding: 0 0 24px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
}

.team-faqs-container .faq.is-open .faq-answer .faq-answer-inner p {
    opacity: 1;
    transform: translateY(0);
}


/* end of faqs  */