.hs-title {
    position: sticky;
    top: 120rem;
    height: fit-content;
}

.hs-title p {
    color: var(--main-color);
    font-size: 22rem;
    font-weight: 700;
    font-family: 'Play';
    margin-bottom: 30rem;
}

.hs-title h5 {
    color: #222;
    font-size: 50rem;
    line-height: 1.3;
}

.hs-title h5 {
    font-size: 60rem;
}

.h-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.h-box-wrapper {
    position: relative;
    width: 60%;
    display: flex;
    flex-direction: column;
}

.h-box-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 238rem;
    width: 1px;
    height: 100%;
    background-color: #ddd;
    z-index: 1;
}

.h-box {
    width: 100%;
    padding: 80rem 50rem;
    display: flex;
    align-items: flex-start;
    gap: 80rem;
    border-radius: 30rem;
}
.h-box:nth-child(2n) {
    background-color: #f5f5f5;
}
.h-box:last-child {
    border: none;
}

.h-box-year {
    display: flex;
    align-items: center;
    gap: 50rem;
}

.h-box-year h5 {
    width: 130rem;
    color: #222;
    font-size: 40rem;
}

.h-box-year span {
    position: relative;
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    display: flex;
    border-radius: 50%;
    background-color: #ddd;
    z-index: 2;
}

.h-box-info {
    display: flex;
    flex-direction: column-reverse;
    gap: 15rem;
    margin-top: -5px;
}

.h-box-info p {
    color: #333;
    font-size: 19rem;
    font-weight: 500;
    line-height: 1.5;
}

.h-box-info p span {
    display: block;
    color: var(--main-color);
    font-size: 40rem;
    font-weight: 700;
}


/*==================================================*/
@media (max-width: 768px) {
    .hs {
        padding-bottom: 0;
    }
    
    .hs .article-wrapper {
        width: 100%;
    }
    
    .hs-title {
        position: static;
        padding-left: 40rem;
        margin-bottom: 50rem;
    }

    .h-wrapper {
        flex-direction: column;
        justify-content: unset;
    }

    .h-box-wrapper {
        width: 100%;
    }

    .h-box {
        border-radius: 0;
    }
    
    .h-box-info p {
        margin-top: 0;
    }
}


@media (max-width: 550px) {
    .hs-title p {
        font-size: 22rem;
    }
    
    .h-box-wrapper::after {
        left: 217rem;
    }
    
    .h-box {
        gap: 50rem;
    }
    
    .h-box-year {
        gap: 30rem;
    }

    .h-box-year span {
        width: 15rem;
        min-width: 15rem;
        height: 15rem;
        min-height: 15rem;
        margin-top: -10rem;
    }

    .h-box-info p {
        font-size: 24rem;
    }
}