.brand {
    position: relative;
    padding: 0 30px;
    margin-bottom: 200px;
}
.brand__main-image {
    cursor: pointer;
}
.brand__max-sale-percent {
    position: absolute;
    top: 21px;
    right: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    font-size: 40px;
    font-family: var(--weight-600);
    line-height: normal;
    color: white;
    background-color: rgba(0, 102, 255, 0.65);
    border: rgba(0, 34, 255, 0.44) solid 1px;
    border-radius: 60px;
}
.brand__max-sale-percent-sign {
    font-size: 30px;
}
.brand__name-en {
    margin-top: 45px;
    font-size: 28px;
    font-family: var(--weight-600);
    line-height: normal;
    text-align: center;
    color: rgba(34, 34, 34, 0.5);
}
.brand__name-kr {
    margin-top: 5px;
    font-size: 63px;
    font-family: var(--weight-800);
    line-height: normal;
    text-align: center;
    color: #222;
}
.brand__description {
    margin-top: 16px;
    font-size: 30px;
    font-family: var(--weight-500);
    text-align: center;
    color: #222;
}
.brand__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 45px;
    cursor: pointer;
}
.brand__item-name {
    margin-top: 22px;
    display: -webkit-box;
    font-size: 26px;
    font-family: var(--weight-400);
    line-height: normal;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #222;
}
.brand__item-price {
    margin-top: 5px;
    font-size: 26px;
    font-family: var(--weight-400);
    line-height: normal;
    text-align: center;
}
.brand__item-sale-price {
    color: #222;

}
.brand__item-sale-percent {
    color: #0022FF;
}
.btn-brand {
    margin-top: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 689px;
    height: 100px;
    font-size: 30px;
    font-family: var(--weight-600);
    line-height: normal;
    color: #CAF1FF;
    background-color: #17AAE2;
    border-radius: 20px;
    cursor: pointer;
}
.btn-brand::after {
    content: '〉';
    width: 13px;
    height: 23px;
    margin: 0 0 17px 25px;
}
