.advisory-hub-hero {
    padding: 0 0 clamp(2.5rem, 1.6197rem + 3.7559vw, 5rem);
    background-color: var(--white);
}

.advisory-hub-hero-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    max-height: 720px;
    display: block;
}

.advisory-hub-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.advisory-hub-hero-content i {
    font-family: "Instrument Serif", serif;
    text-transform: none;
}

.advisory-hub-hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding: 24px;
    background: rgba(204, 226, 255, 0.8);
    backdrop-filter: blur(10.15px);
    border-radius: 8px;
    max-width: 660px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.advisory-hub-hero-content-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.advisory-hub-hero-title {
    font-weight: 400;
    font-size: clamp(0.875rem, 0.831rem + 0.1878vw, 1rem);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: lowercase;
    color: rgba(0, 0, 0, 0.7);
}

.advisory-hub-hero-subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: clamp(1.125rem, 0.5528rem + 2.4413vw, 2.75rem);
    line-height: 1.27;
    color: var(--black);
}

.advisory-hub-hero-meta {
    font-weight: 400;
    font-size: clamp(0.875rem, 0.831rem + 0.1878vw, 1rem);
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .advisory-hub-hero-image {
        min-height: 80vh;
    }

    .advisory-hub-hero-image img {
        min-height: 80vh;
        object-position: right;
    }

    .advisory-hub-hero-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: 80%;
    }
}