.archive-root {
    width: 95%;
    max-width: 1100px;
    margin: auto;
}
.archive-root h2 {
    text-align: center;
    margin-bottom: 50px;
}
.archive-top {
    position: relative;
    background-image: url(../img/about.jpg);
	background-size: cover;
    background-position: center;
    width: 100%;
    aspect-ratio: 5 / 1;
    border-radius: 0 0 0 50px;
}

.archive-top h2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.symptoms-menu-item {
    width: 300px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-weight: bold;
    color: #FF8001 !important;
    background-color: #FAF2EA;
    border-radius: 30px 0 0 30px;
    border: none;
}
.disease-menu-item {
    width: 300px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-weight: bold;
    color: #FF8001 !important;
    background-color: #FAF2EA;
    border-radius: 0 30px 30px 0;
}

.symptoms-menu-item.active {
    background-color: #FF8001;
    color: #fff !important;
}
.disease-menu-item.active {
    background-color: #FF8001;
    color: #fff !important;
}
.archive-title {
    display: flex;
    align-items: center;
}
.archive_items h3 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
    color: #333333;
}
.archive-title img {
    margin-right: 10px;
}
.category_column {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.archive_item {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 40px;
    background-color: #F7FCEC;
    padding: 20px 30px;
    border-radius: 10px;
}
.archive_item.disease {
    background: none;
    padding: 0;
}
.archive_item:nth-child(3n) {
    margin-right: 0;
}
.archive_item h4 {
    text-align: left;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 10px;
    border-radius: 0;
    color: #FF8001;
}
.archive_item.symptoms h4 {
    color: #333333;
}
.archive_item img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 20px;
}

.archive_item .dummy {
    width: 100%;
    aspect-ratio: 3 / 2;
    border: 1px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
}
.archive_item .dummy img {
    width: 80%;
    height: auto;
    margin-bottom: 0 !important;
    object-fit: contain;
}
.archive_item p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.5;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
}
.archive_item.symptoms p {
    display: block;
    overflow: visible;
}

.connect_archive {
    width: 100%;
    text-align: left;
    margin-top: 10px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
}
.connect_archive p {
    margin-bottom: 5px;
    color: #237D26;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
}
.connect_archive li {
    width: 100%;
    text-align: left;
    font-size: 14px;
    text-decoration: underline;
    color: #FF8001;
    font-weight: bold;
    line-height: 28px;
    list-style: disc;
    margin-left: 20px;
}

/* @media screen and (max-width: 767px) { */
@media screen and (max-width: 820px) {
    .archive-root {
        width: 100%;
        margin-bottom: 80px !important;
        padding: 0 5%;
    }
    .archive-root h2 {
        padding-top: 40px;
        margin-bottom: 25px;
    }

    .symptoms-menu {
        width: 100%;
        margin-top: 25px;
    }
    .symptoms-menu-item {
        width: 50%;
        height: 40px;
        line-height: 40px;
    }
    .disease-menu-item {
        width: 50%;
        height: 40px;
        line-height: 40px;
    }

    .archive_items {
        justify-content: space-between;
        margin-top: 20px !important;
    }
    .archive_items h3 {
        margin-bottom: 20px;
        margin-left: 10px;
        font-size: 18px;
    }

    .category_column {
        margin-bottom: 20px !important;
    }

    .archive_item.symptoms {
        width: 100%;
    }
    .archive_item {
        width: calc(50% - 20px);
        margin-bottom: 20px;
        margin-right: 10px;
        margin-left: 10px;
    }
    .archive_item h4 {
        font-size: 16px;
    }
    .connect_archive li {
        font-size: 16px;
    }
}

