/* 1. 블로그 제목 설정 */
.Header h1 {
    font-size: 3.5vmin !important; /* 조금 더 강조되도록 소폭 조정 */
    font-weight: bold !important;
}

/* 2. 전체 본문 및 기본 글씨 */
body {
    font-size: 2vmin !important;
    line-height: 1.6 !important; /* 가독성을 위한 줄간격 추가 */
}

/* 3. 포스트 제목 (글 제목) */
h3.post-title, h3.post-title a {
    font-size: 2.3vmin !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

/* 4. 날짜 표시 부분 */
h2.date-header {
    font-size: 2.3vmin !important;
    color: #666666 !important; /* 날짜는 살짝 흐리게 처리 */
}

/* 5. 댓글 링크 디자인 (비어있던 부분 보완) */
.comment-link {
    font-size: 1.7vmin !important;
    color: #888888 !important;
}

/* 6. 포스트 하단(푸터) 영역 - 배경 및 여백 */
.post-footer {
    margin: 3px -2px 0;  /* 20px -2px 0 */
    padding: 1px 1px;  /* 5px 10px */
    background-color: transparent;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    line-height: 0;
    font-size: 100%;
}

/* 7. 블로그 전체 폭 (아까 언급한 중앙 제어용) */
.content-outer, .main-outer {
    max-width: 990px !important; /* 원하는 폭으로 고정 가능 */
    margin: 0 auto !important;
}

body {
min-width: 960px; !important;
}
.content-outer, .content-fauxcolumn-outer, .region-inner {
min-width: 990px; !important;
max-width: 990px; !important;
_width: 990px; !important;
}

.main-inner .columns {
padding-left: 0;
padding-right: 210px; !important;
}
.main-inner .fauxcolumn-center-outer {
left: 0;
right: 210px; !important;
/* IE6 does not respect left and right together */
_width: expression(this.parentNode.offsetWidth -
parseInt("0") -
parseInt("210px") + 'px'); !important;
}
.main-inner .fauxcolumn-right-outer {
width: 210px; !important;
}
.main-inner .column-right-outer {
width: 210px; !important;
margin-right: -210px; !important;
}