main {
    padding-top: 80px; /* 헤더 높이만큼 여백 추가 */
    min-height: calc(100vh - 80px); /* 푸터를 제외한 전체 높이 */
    background-color: #fff;
}

.notice-detail-container {
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem 2rem;
}

.notice-detail-title {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.notice-detail-date {
    color: #666;
    font-size: 14px;
    margin: 1rem 0 2rem 0;
    text-align: right;
}

.notice-detail-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    word-break: break-word;
}

.notice-detail-content img {
    max-width: 100%;
    height: auto;
}

.notice-button-wrap {
    margin-top: 3rem;
    text-align: center;
}

.list-button {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.list-button:hover {
    background: #f8f8f8;
}

.notice-divider {
    margin: 3rem 0;
    height: 1px;
    background-color: #eee;
}

@media (max-width: 768px) {
    main {
        padding-top: 60px;
    }
    .notice-detail-container {
        padding: 2rem 1rem;
    }
    .notice-detail-title {
        font-size: 20px;
    }
    .notice-detail-content {
        font-size: 15px;
    }
} 