/* header */
.brochure-nav {
    width: 100%;
    flex-direction: column;
}
.brochure-nav {
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    padding: 0 1rem;
    margin-bottom: 3rem;
}
.brochure-nav .brochure-nav-header {
    width: 90%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 3rem;
    margin-top: 17rem;
    position: relative;
}

.brochure-nav .brochure-nav-header .brochure-num {
    position: absolute;
    font-size: 13rem;
    font-weight: 500;
    line-height: 1;
    color: var(--theme-gray-bright);
    right: -6rem;
    top: -8rem;
}

.brochure-nav .brochure-nav-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;
}
.brochure-nav .brochure-nav-header a:hover {
    color: var(--theme-blue-deep);

}
.brochure-nav .brochure-nav-header h2 {
    font-family: var(--font-family);
    font-size: 8rem;
    color: var(--theme-text-primary);
    position: relative;
    display: inline-block;
    letter-spacing: .2rem;
    font-weight: 500;
}

.brochure-main {
    gap: 2rem;
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(30%, 1fr)); */
    grid-template-columns: repeat(3, 1fr);

}
.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;

}
.brochure-item .title-wrapper {
    /* max-width: 30rem; */
    width: 80%;
    height: 12rem;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 2rem 0;
}
.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;
}
.brochure-item .img-wrapper {
    width: 90%;
    height: 16rem;
    border-radius: 10rem;
    overflow: hidden;
}

.brochure-item .img-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}