/*
기본 CSS를 작성합니다
기본으로 작성되는 CSS는 1199px보다 큰 화면에서 작동 됩니다.
*/

section {
    width: 100%;
    margin: 0 auto;
}

.hero-section {
    width: 100%;
    max-width: 98rem;
    height: 15rem;
    margin: 8rem auto 0;
    transition: all 0.3s ease;
}

.hero-content {
    width: 100%;
    height: 100%;
    padding: 3rem 5rem;
}

.title-wrapper {
    width: 100%;
    text-align: center;
    padding: 0 3rem;
    margin: 1rem 0;
}

.breadcrumb li, .breadcrumb li a {
    font-family: "Noto Sans KR", sans-serif;
    color: #999;
    white-space: nowrap;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #999;
}

.breadcrumb-item.active, .breadcrumb-item.active a {
    color: var(--brand-color);
}

.title-wrapper span {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-color);
}

.notice-content-section {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 5rem;
    min-height: 40rem;
    flex-wrap: wrap;
}

.post-wrapper {
    width: 90%;
    margin: 0 auto;
}

.post-title-text {
    display: block;
    font-size: 1.4rem;
    font-family: 'Noto Sans KR', sans-serif;
}

.post-userpic {
    width: 30px;
    height: 30px;
}
.post-username {
    color: #353535;
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
}

.post-date {
    color: #5D5D5D;
    font-size: 0.7rem;
}

.post-contents-area {
    min-height: 30rem;
    font-family: 'Noto Sans KR', sans-serif;
}

.post-contents-area *, .post-end-area {
    font-family: 'Noto Sans KR', sans-serif;
}


/*테스크탑 (가로 해상도가 1200px 보다 작은 화면에 적용)*/
@media (max-width: 1199px) {
    .hero-section {
        height: 10rem;
    }
    .hero-content {
        padding: 1rem;
    }

    .notice-content-section {
        margin: 3rem auto 5rem;
    }


}

/*태블릿 디바이스 (가로 해상도가 992px 보다 작은 화면에 적용)*/
@media (max-width: 991px) {
    .post-contents-area {
        min-height: 20rem;
    }
}

/*가로모드 모바일 디바이스 (가로 해상도가 768px 보다 작은 화면에 적용)*/
@media (max-width: 767px) {


}

/*세로모드 모바일 디바이스 (가로 해상도가 576px 보다 작은 화면에 적용)*/
@media (max-width: 575px) {

    .hero-section {
        height: 8rem;
        margin-top: 6rem;
    }

    .title-wrapper {
        padding: 0;
        margin: 0 auto;
    }

    .notice-content-section {
        margin: 1rem auto 5rem;
    }




}

