/* rewrite global css rule start */
img,
p {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* rewrite global css rule end */

.content-wrapper {
    width: 100%;
    margin: 11rem 0 0 0;
    padding: 0 30%;
    flex-direction: column;
    box-sizing: border-box;
}
.content-wrapper div {
    flex-direction: column;
}

.content-wrapper .title-wrapper h1{
    font-family: var(--font-family);
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
}

.cover-img-wrapper {
    width: 100%;
    height: 20rem;
    border-radius: 10rem;
    overflow: hidden;
    margin: 3rem 0 0 0;
}
.cover-img-wrapper img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content-wrapper .summary-wrapper {
    margin: 4rem 0 0 0;
}

.content-wrapper .summary-wrapper p {
    font-family: var(--font-family);
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: .02rem;
    text-align: center;
}



.content-wrapper .body-text-wrapper .paragraph-wrapper {
    margin: 4rem 0 0 0;   
}
.content-wrapper .body-text-wrapper .paragraph-wrapper p {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: .02rem;
    text-align: center;
    margin: .5rem 0;
}

.content-wrapper .body-text-wrapper li {
    font-family: var(--font-family);
    font-size: 1.2rem;
    letter-spacing: -0.02rem;
    line-height: 1.5;
    margin: 2rem 2.5rem;
    letter-spacing: 0.02rem;
}

.content-wrapper .body-text-wrapper ul {

}

.content-wrapper .body-text-wrapper h3 {
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .02rem;
    text-align: center;
    margin: 1.5rem 0;
}

.content-wrapper .body-text-wrapper h2 {
    font-family: var(--font-family);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: .02rem;
    text-align: center;
    margin: 1.5rem 0;
}

.content-wrapper .body-text-wrapper img {
    margin: 2rem;
}

/* a */
.content-wrapper .body-text-wrapper a {
    font-size: inherit;
    text-decoration: underline;
}
.content-wrapper .body-text-wrapper a:hover {
    color: var(--theme-green-bright);
}

/* recommend*/
.recommend {
    width: 100%;
    flex-direction: column;
}
.recommend {
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    padding: 0 1rem;
    margin-bottom: 3rem;
}
.recommend .recommend-header {
    width: 90%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 3rem;
    margin-top: 5rem;
}
.recommend .recommend-header a {
    /* text-decoration: none; */
    font-family: var(--font-family);
    color: var(--theme-text-primary);
    font-weight: bold;
    font-size: .8rem;
    text-decoration: underline;
    cursor: pointer;
}
.recommend .recommend-header a:hover {
    color: var(--theme-green-bright);

}
.recommend .recommend-header h2 {
    font-family: var(--font-family);
    font-size: 8rem;
    color: var(--theme-text-primary);
    position: relative;
    display: inline-block;
    letter-spacing: .2rem;
}

/* recommend end */

.brochures-main {
    gap: 2rem;
}
.brochures-main .brochure-item {
    text-decoration: none;
    flex: 1;
    height: 35rem;
    background-color: var(--theme-gray-bright);
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.brochures-main .brochure-item .title-wrapper {
    /* max-width: 30rem; */
    width: 80%;
    height: 12rem;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 2rem 0;
}
.brochures-main .brochure-item .title-wrapper h2{
    color: var(--theme-text-primary);
    font-size: 2rem;
    letter-spacing: 1.1;
    font-family: var(--font-family);
    text-align: center;
    line-height: 1.5;
}
.brochures-main .brochure-item .img-wrapper {
    width: 90%;
    height: 16rem;
    border-radius: 10rem;
    overflow: hidden;
}

.brochures-main .brochure-item .img-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}