/* Solutions Hero Block Styles */
/* Based on Figma design: TM-Marketing - Website - Solution and service pages */
.solutions-hero {
    position: relative;
    padding: 130px 0 80px;
    z-index: 10;
    @media (max-width: 768px) {
        padding: 0;
        margin: 80px 0 48px;
    }
}
.solutions-hero__container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    @media(max-width: 992px) {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }
}
.solutions-hero__content {
    flex: 0 0 467px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    @media(max-width: 992px) {
        justify-content: center;
        align-items: center;
        flex: auto;
    }
    @media (max-width: 540px) {
        align-items: flex-start;
    }
}
.solutions-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}
.solutions-hero__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.solutions-hero__breadcrumb-separator {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.solutions-hero__breadcrumb-separator path {
    stroke: #a0a3bd;
}
.solutions-hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 56px;
    color: #202223;
    margin: 0;
    @media(max-width: 992px) {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
    }
    @media (max-width: 540px) {
        text-align: left;
    }
}
.solutions-hero__title--highlight {
    color: #1d4ed8;
}
.solutions-hero__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #6e7191;
    margin: 0;
    @media(max-width: 992px) {
        text-align: center;
    }
    @media(max-width: 540px) {
        text-align: left;
    }
}
.solutions-hero__cta {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content !important;
    @media(max-width: 540px) {
        width: 100% !important;
        align-items: center;
        justify-content: center;
    }
    a {
        @media(max-width: 540px) {
            width: 100% !important;
            max-width: 100% !important;
        }
    }
}

.solutions-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solutions-hero__image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
        height: auto !important;
        width: 100%;
        @media(max-width: 992px) {
            max-width: 640px;
        }
    }
}

/* Text utility classes */
.text-blue {
    color: #1d4ed8 !important;
}

.bg-blue-fade {
    position: relative;
    .fade-bg {
        position: absolute;
        left: 0;
        top: -116px;
        width: 100%;
        height: auto;
        object-fit: cover;
        z-index: 1;
    }
}
