.event-view-page {
    --page-width: 1180px;
}

.event-view-page .tableArea {
    max-width: var(--page-width);
    margin: 0 auto;
}

.event-view-page .page-header {
    max-width: var(--page-width);
    margin: 0 auto;
    padding-bottom: 10px;
}

.headline {
    display: block;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
    text-decoration: none;
    color: inherit;
}

.headline h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 6px;
}

.headline div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.content {
    background: #fff;
}

.write {
    padding: 20px;
    min-height: 200px;
    font-size: 14px;
    line-height: 1.8;
    border-bottom: 1px solid #eaeaea;
}

.write img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 8px;
}

.btnArea {
    padding: 16px 20px;
    border-bottom: 1px solid #eaeaea;
}

.fileBox {
    margin-bottom: 16px;
    padding: 12px;
    background: #f6f6f6;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.fileBox i {
    margin-right: 8px;
    color: #6c757d;
}

.fileBox a {
    color: #0d6efd;
    text-decoration: none;
    margin-left: 8px;
    word-break: break-all;
}

.fileBox a:hover {
    text-decoration: underline;
}

.btnBox {
    text-align: end;
}

.btnBox a {
    display: inline-block;
    padding: 10px 24px;
    background: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background .2s ease;
}

.btnBox a:hover {
    background: #222;
}

/* 댓글 */
.comment {
    background: #fff;
}

.comment .no {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #eaeaea;
}

.comment .no span {
    color: #ff8000;
    font-size: 15px;
}

.comment .box {
    list-style: none;
}

.comment .box li {
    padding: 16px 20px;
    border-bottom: 1px solid #f2f2f2;
}

.comment .box li:last-child {
    border-bottom: none;
}

.cName {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.cName span {
    font-size: 13px;
    font-weight: 400;
    color: #777;
    margin-left: 6px;
}

.cComment {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cBtn {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
}

.cBtn a {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
    padding: 4px 6px;
}

.inputArea {
    padding: 16px 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inputArea textarea {
    flex: 1;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
    font-family: inherit;
    background: #fff;
}

.inputArea .reinput {
    align-self: flex-end;
    padding: 10px 24px;
    background: #ff8000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity .2s ease;
}

.comment form {
    border-radius: 8px;
}