@charset "utf-8";

.brand-top-nav {
    position: relative;
}

.brand-section {
    padding-top: 200px;
    padding-bottom: 160px;
}

.brand-hero {
    min-height: 720px;
}

.brand-ellipse-stage {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
    max-width: 900px;
    margin-left: auto;
}
.brand-ellipse {
    overflow: hidden;
    flex: 0 0 auto;
}

.brand-ellipse--left {
    width: 281px;
    height: 419px;
}

.brand-ellipse--center {
    width: 285px;
    height: 450px;
}

.brand-ellipse--right {
    width: 224px;
    height: 419px;
}

@media (max-width: 1023px) {
    .brand-section {
        padding-top: 1.75rem;
        padding-bottom: 4.5rem;
    }

    .brand-hero {
        min-height: auto;
    }

    .brand-ellipse-stage {
        justify-content: center;
        margin-top: 3rem;
        gap: 0.5rem;
    }

    .brand-ellipse--left {
        width: 33.333%;
        max-width: 140px;
        height: auto;
    }

    .brand-ellipse--center {
        width: 33.333%;
        max-width: 140px;
        height: auto;
    }

    .brand-ellipse--right {
        width: 33.333%;
        max-width: 140px;
        height: auto;
    }
}

.brand-history-section {
    padding-top: 0;
}

.brand-history {
    width: 100%;
}

.brand-history-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 2.5rem;
    min-height: 340px;
}

.brand-history-row + .brand-history-row {
    margin-top: 200px;
}

.brand-history-col {
    position: relative;
    display: flex;
    min-height: 540px;
    padding-left: 1.75rem;
}

.brand-history-col:not(.is-first)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #d9d9d9;
}

.brand-history-col:not(.is-first)::after {
    content: "";
    position: absolute;
    left: 0;
    width: 2px;
    height: 237px;
    background: #444;
}

.brand-history-col.is-top::after {
    top: 0;
}

.brand-history-col.is-bottom::after {
    bottom: 0;
}

.brand-history-col.is-mid::after {
    top: 50%;
    transform: translateY(-50%);
}

.brand-history-col.is-top {
    align-items: flex-start;
}

.brand-history-col.is-bottom {
    align-items: flex-end;
}

.brand-history-col.is-mid {
    align-items: center;
}

.brand-history-content {
    width: 100%;
}

.brand-history-year {
    font-size: 46px;
    line-height: 1;
    color: #212121;
    margin-bottom: 24px;
    font-weight: 500;
}

.brand-history-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.brand-history-list li {
    font-family: 'NanumSquareNeo', sans-serif;
    color: #656565;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: -0.01em;
    word-break: keep-all;
    font-weight: 400;
}

@media (max-width: 1023px) {
    .brand-history-row {
        grid-template-columns: 1fr;
        min-height: auto;
        row-gap: 1.5rem;
    }

    .brand-history-row + .brand-history-row {
        margin-top: 2rem;
    }

    .brand-history-col {
        min-height: auto;
        display: block;
        padding-left: 1rem;
        padding-top: 0;
    }

    .brand-history-col:not(.is-first)::before {
        display: none;
    }

    .brand-history-col:not(.is-first)::after {
        display: none;
    }

    .brand-history-year {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}