.home-core{
    background-color: var(--color-gray-1);
    overflow: hidden;
    >.container{
        padding: 100px 24px;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        align-items: center;
        gap: 24px;
    }
}
@media screen and (width < 768px) {
    .home-core > .container{
        grid-template-columns: 100%;
        gap: 40px;
    }
}
.home-core-bg{
    position: absolute;
    z-index: -1;
    height: 100%;
    left: 24px;
    >img{
        height: 100%;
        max-width: none;
    }
}
@media screen and (width < 768px) {
    .home-core-bg{
        height: 80%;
        top: 0;
        left: 0;
    }
}
@media screen and (width < 576px) {
    .home-core-bg{
        left: -40%;
    }
}

.home-core-content{
    grid-column: span 7;
    padding-left: 36px;
    >h3{
        color: var(--color-primary-1);
        margin-bottom: 24px;
    }
    >h2{
        color: white;
    }
    >p{
        color: white;
        white-space: pre-line;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    >a{
        margin-left: auto;
    }
}
@media screen and (width < 1024px) {
    .home-core-content{
        grid-column: span 6;
        padding-left: 0;
    }
}
@media screen and (width < 768px) {
    .home-core-content{
        grid-column: initial;
        >a{
            margin-left: 0;
        }
    }
}
.home-core-img{
    grid-column: span 5;
    aspect-ratio: 3 / 2;
    >img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }
}
@media screen and (width < 1024px) {
    .home-core-img{
        grid-column: span 6;
    }
}
@media screen and (width < 768px) {
    .home-core-img{
        grid-column: initial;
    }
}