.home-brand{
    max-width: 1440px;
    padding: 60px 44px;
    margin: 0 auto;
}
.home-brand__title{
    margin-bottom: 24px;
}
.home-brand__content{
    text-align: center;
    margin-bottom: 60px;
    white-space: pre-line;
}

.home-brand-swiper{
    position: relative;
    padding: 0 76px;
}
.home-brand-swiper__container{
    overflow-x: clip;
    overflow-y: visible;
}
.home-brand-swiper-card{
    padding: 40px 24px;
    border-radius: 20px;
    transition: background-color 0.3s, box-shadow 0.3s;
}
.home-brand-swiper-card:hover{
    background-color: color-mix(in oklab, var(--color-secondary-4) 20%, transparent);
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.10);
}
.home-brand-swiper-card:hover .home-brand-swiper-card__link{
	opacity: 1;
}
.home-brand-swiper-card__img{
    margin-left: auto;
    margin-bottom: 24px;
    height: 40px;
}
.home-brand-swiper-card__title{
    margin-bottom: 16px;
}
.home-brand-swiper-card__content{
    margin-bottom: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.home-brand-swiper-card__link{
    width: fit-content;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.2;
    color: var(--color-primary-1);
    transition: opacity 0.3s;
}
.home-brand-swiper-card--odd{
    background-color: var(--color-secondary-3);
}
.home-brand-swiper-card--even{
    background-color: white;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.10);
}
.home-brand-swiper__prev,
.home-brand-swiper__next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 50px;
    height: 50px;
    color: var(--color-gray-5);
    transition: color 0.3s;
}
.home-brand-swiper__prev:hover,
.home-brand-swiper__next:hover{
    color: var(--color-primary-1);
}
.home-brand-swiper__prev-icon,
.home-brand-swiper__next-icon{
    width: 100%;
    height: 100%;
    color: inherit;
}
.home-brand-swiper__prev{
    left: 0;
}
.home-brand-swiper__next{
    right: 0;
}

.home-brand-swiper-pagination{
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.home-brand-swiper-pagination__bullet{
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid var(--color-primary-1);
    transition: background-color 1s;
}
.home-brand-swiper-pagination__bullet--active{
    background-color: var(--color-primary-1);
}
@media screen and (width < 1288px) {
    .home-brand{
        padding: 60px 24px;
    }
}
@media screen and (width < 1024px) {
    .home-brand-swiper{
        padding: 0 50px;
    }
    .home-brand-swiper__prev,
    .home-brand-swiper__next{
        width: 40px;
        height: 40px;
    }
}
@media screen and (width < 768px) {
    .home-brand__title{
        margin-bottom: 40px;
    }
    .home-brand-swiper-card{
        padding: 24px;
    }
    .home-brand-swiper-card__img{
        margin-bottom: 16px;
    }
    .home-brand-swiper-card__title{
        margin-bottom: 10px;
    }
    .home-brand-swiper-card__content{
        margin-bottom: 16px;
    }
}

@media screen and (width < 576px) {
    .home-brand-swiper{
        padding: 0 28px;
    }
    .home-brand-swiper__prev,
    .home-brand-swiper__next{
        width: 20px;
        height: 20px;
    }
    .home-brand-swiper-pagination{
        gap: 16px;
    }
}