@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/* single-info */
.single-info__category {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.single-info__category .category {
    border: 1px solid var(--main);
    padding: 0.8rem 1rem 0.6rem;
    border-radius: 0.35rem;
    line-height: 1rem;
    min-width: 8rem;
    text-align: center;
	font-size: 0.9rem;
}
.single-info__category .date {
    font-family: 'Avenir';
	font-weight: 500;
	min-width: 6.6rem;
}
.single-info__title {
	font-weight: 500;
	font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
/* single-contents */
.single-contents__thumb {
}
.single-contents__edit {
    margin-top: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.single-contents__edit {
    line-height: 2;
}
.single-contents__edit h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--main);
    padding-bottom: 1rem;
    margin-top: 2rem;
}
.single-contents__edit h3 {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.single-contents__edit h4 {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.single-contents__edit p {
    margin-bottom: 2rem;
}
/* single-nav */
.single-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}