.left-home-callout {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    color: #1a202c;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
    padding: 6rem 0;
    display: flex;
    align-items: center;
}

.left-home-callout__frame {
    width: 100%;
    display: flex;
    justify-content: center;
}


.left-home-callout__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 0 2rem;
    box-sizing: border-box;
}

.left-home-callout__info {
    background-color: #1B1A30;
    padding: 4rem 4rem 4rem 6vw;
    width: 50%;
    border-radius: 0 24px 24px 0;
    position: relative;
    isolation: isolate;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-home-callout__info::before {
    content: '';
    position: absolute;
    top: 0;
    right: calc(50% - 1px);
    left: -100vw;
    height: 100%;
    background-color: #1B1A30;
    z-index: -1;
}

.left-home-callout__title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 1.5rem;
    color: #fff;
}

.left-home-callout__description {
    font-family: 'Raleway', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2rem;
    color: #FFFFFFCC;
}

.left-home-callout__cta {
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.left-home-callout__cta:hover,
.left-home-callout__cta:focus {
    color: #3b82f6;
}

.left-home-callout__grid {
    display: grid;
    gap: 3.5rem 2.5rem;
    width: 50%;
    padding: 0 6vw 0 4rem;
    box-sizing: border-box;
    align-content: center;
}

.left-home-callout--cols-1 .left-home-callout__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.left-home-callout--cols-2 .left-home-callout__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.left-home-callout--cols-3 .left-home-callout__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.left-home-callout--cols-4 .left-home-callout__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.left-home-callout__item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.left-home-callout__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 96px;
}

.left-home-callout__icon {
    max-width: 64px;
    max-height: 96px;
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.left-home-callout__icon-placeholder {
    display: block;
    width: 64px;
    height: 64px;
    background-color: #3b82f6;
    border-radius: 8px;
}

.left-home-callout__subtitle {
    font-family: 'Raleway', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: #2d3748;
}

@media (max-width: 1024px) {
    .left-home-callout {
        padding: 3rem 0;
        min-height: auto;
        overflow: visible;
        align-items: flex-start;
    }

    .left-home-callout__frame {
        justify-content: flex-start;
        width: 100%;
    }

    .left-home-callout__container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 2rem;
        align-items: stretch;
        justify-content: center;
    }

    .left-home-callout__info {
        width: 100%;
        text-align: center;
        border-radius: 24px;
        padding: 3.5rem;
    }

    .left-home-callout__info::before {
        display: none;
    }

    .left-home-callout__grid {
        width: 100%;
        max-width: none;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .left-home-callout__grid {
        gap: 2.5rem;
    }

    .left-home-callout__info {
        padding: 3rem 2rem;
    }

    .left-home-callout--cols-1 .left-home-callout__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .left-home-callout--cols-2 .left-home-callout__grid,
    .left-home-callout--cols-3 .left-home-callout__grid,
    .left-home-callout--cols-4 .left-home-callout__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .left-home-callout__title {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .left-home-callout {
        padding: 2.5rem 0;
    }

    .left-home-callout__container {
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .left-home-callout__title {
        font-size: 2rem;
    }

    .left-home-callout__grid {
        gap: 2rem;
    }

    .left-home-callout--cols-2 .left-home-callout__grid,
    .left-home-callout--cols-3 .left-home-callout__grid,
    .left-home-callout--cols-4 .left-home-callout__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .left-home-callout__icon-wrapper {
        width: 56px;
        height: 80px;
    }

    .left-home-callout__icon {
        max-width: 56px;
        max-height: 80px;
    }
}
