
/* 이벤트 목록 스타일 */
.EventList {
    padding: 1em;
}

.EventList__header {
    text-align: center;
    margin-bottom: 2em;
}

.EventList__title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
    color: #333;
}

.EventList__subtitle {
    color: #666;
    font-size: 0.9em;
}

.EventList__admin-actions {
    margin-top: 1em;
}

.EventList__write-btn {
    display: inline-block;
    padding: 0.75em 1.5em;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 2em;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.EventList__write-btn:hover {
    background: #5a67d8;
    transform: translateY(-0.0625em);
    color: #fff;
    text-decoration: none;
}

.EventList__content {
    margin-top: 1em;
}

.EventList__item {
    position: relative;
    background: #fff;
    border-radius: 1em;
    margin-bottom: 1.5em;
    overflow: hidden;
    box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.EventList__item:hover {
    transform: translateY(-0.125em);
    box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.15);
}

/* 노출 상태 마크 */
.EventList__status-mark {
    position: absolute;
    top: 0.75em;
    right: 0.75em;
    z-index: 10;
}

.EventList__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    font-size: 0.8em;
    box-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.2);
}

.EventList__mark--visible {
    background: #28a745;
    color: #fff;
}

.EventList__mark--hidden {
    background: #dc3545;
    color: #fff;
}

/* 관리자 메뉴 */
.EventList__admin-menu {
    position: absolute;
    top: 0.75em;
    left: 0.75em;
    z-index: 10;
}

.EventList__edit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8em;
    transition: all 0.3s ease;
}

.EventList__edit-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-decoration: none;
}

/* 링크 스타일 */
.EventList__link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: none;
}

.EventList__link:hover {
    color: inherit;
    text-decoration: none;
}

/* 카드 스타일 */
.EventList__card {
    position: relative;
    width: 100%;
}

/* 이미지가 있는 카드 */
.EventList__card--with-image {
    height: 15em;
    position: relative;
}

.EventList__image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.EventList__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.EventList__item:hover .EventList__main-image {
    transform: scale(1.05);
}

.EventList__content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2em 1.5em 1.5em;
    color: #fff;
}

.EventList__card--with-image .EventList__name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.5em;
    color: #fff;
    text-shadow: 0 0.0625em 0.25em rgba(0, 0, 0, 0.5);
}

.EventList__card--with-image .EventList__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
    margin-bottom: 0.75em;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.EventList__card--with-image .EventList__date {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.8);
}

.EventList__card--with-image .EventList__date .start-date,
.EventList__card--with-image .EventList__date .end-date {
    display: block;
    margin-bottom: 0.25em;
}

.EventList__card--with-image .EventList__date i {
    margin-right: 0.5em;
    width: 1em;
}

/* 텍스트만 있는 카드 */
.EventList__card--text-only {
    display: flex;
    align-items: center;
    padding: 1.5em;
    min-height: 8em;
}

.EventList__text-content {
    flex: 1;
}

.EventList__card--text-only .EventList__name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.75em;
    color: #333;
}

.EventList__card--text-only .EventList__description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 1em;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.EventList__card--text-only .EventList__date {
    font-size: 0.85em;
    color: #999;
}

.EventList__card--text-only .EventList__date .start-date,
.EventList__card--text-only .EventList__date .end-date {
    display: block;
    margin-bottom: 0.25em;
}

.EventList__card--text-only .EventList__date i {
    margin-right: 0.5em;
    width: 1em;
    color: #667eea;
}

.EventList__arrow {
    color: #ccc;
    font-size: 1.5em;
    margin-left: 1em;
}

/* 노출 상태별 스타일 */
.EventList__item--hidden {
    opacity: 0.7;
}

.EventList__item--hidden .EventList__card--text-only {
    background: #f8f9fa;
}

/* 빈 목록 스타일 */
.EventList__empty {
    text-align: center;
    padding: 4em 1em;
    color: #666;
    background: #f8f9fa;
    border-radius: 1em;
    margin-top: 2em;
}

.EventList__empty p {
    margin: 0;
    font-size: 1.1em;
}

/* 반응형 디자인 */
@media (max-width: 480px) {
    .EventList {
        padding: 0.75em;
    }
    
    .EventList__item {
        margin-bottom: 1.25em;
    }
    
    .EventList__card--with-image {
        height: 12em;
    }
    
    .EventList__content-overlay {
        padding: 1.5em 1em 1em;
    }
    
    .EventList__card--with-image .EventList__name {
        font-size: 1.1em;
    }
    
    .EventList__card--text-only {
        padding: 1.25em;
        min-height: 7em;
    }
    
    .EventList__card--text-only .EventList__name {
        font-size: 1.1em;
    }
    
    .EventList__status-mark,
    .EventList__admin-menu {
        top: 0.5em;
    }
    
    .EventList__status-mark {
        right: 0.5em;
    }
    
    .EventList__admin-menu {
        left: 0.5em;
    }
    
    .EventList__mark,
    .EventList__edit-btn {
        width: 1.75em;
        height: 1.75em;
        font-size: 0.75em;
    }
}

/* 호버 효과 개선 */
@media (hover: hover) {
    .EventList__item:hover .EventList__content-overlay {
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
    
    .EventList__item:hover .EventList__card--text-only {
        background: #f0f8ff;
    }
}

/* 이벤트 상세 스타일 */
.EventView {
    padding: 1em;
}

.EventView__header {
    margin-bottom: 2em;
    text-align: center;
    padding: 1em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 0.5em;
}

.EventView__title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 1em;
    color: #fff;
}

.EventView__date {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9);
}

.EventView__date .start-date,
.EventView__date .end-date {
    display: inline-block;
    margin: 0 0.5em;
    padding: 0.3em 0.8em;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1em;
}

.EventView__content {
    background: #fff;
    border: 0.0625em solid #e0e0e0;
    border-radius: 0.5em;
    padding: 1.5em;
    margin-bottom: 2em;
    box-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.1);
}

.EventView__description {
    line-height: 1.6;
    color: #333;
    font-size: 1em;
}

.EventView__actions {
    text-align: center;
    margin-top: 2em;
}

/* 버튼 스타일 */
.EventView__btn {
    display: inline-block;
    padding: 0.75em 2em;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 2em;
    border: none;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 0.25em 0.5em rgba(102, 126, 234, 0.3);
}

.EventView__btn:hover {
    background: #5a67d8;
    transform: translateY(-0.125em);
    box-shadow: 0 0.375em 0.75em rgba(102, 126, 234, 0.4);
    color: #fff;
    text-decoration: none;
}

.EventView__btn i {
    margin-right: 0.5em;
}

/* 반응형 디자인 */
@media (max-width: 480px) {
    .EventList {
        padding: 0.5em;
    }
    
    .EventList__item {
        margin-bottom: 0.75em;
    }
    
    .EventList__link {
        padding: 0.75em;
    }
    
    .EventList__name {
        font-size: 1em;
    }
    
    .EventView {
        padding: 0.5em;
    }
    
    .EventView__header {
        padding: 0.75em;
        margin-bottom: 1.5em;
    }
    
    .EventView__title {
        font-size: 1.3em;
    }
    
    .EventView__content {
        padding: 1em;
    }
    
    .EventView__date .start-date,
    .EventView__date .end-date {
        display: block;
        margin: 0.3em 0;
    }
}

/* 로딩 애니메이션 */
.EventList__loading {
    text-align: center;
    padding: 2em;
}

.EventList__loading::after {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    border: 0.125em solid #f3f3f3;
    border-top: 0.125em solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 상태별 이벤트 표시 */
.EventList__item--active {
    border-left: 0.25em solid #28a745;
}

.EventList__item--upcoming {
    border-left: 0.25em solid #ffc107;
}

.EventList__item--expired {
    border-left: 0.25em solid #dc3545;
    opacity: 0.7;
}

.EventList__status {
    display: inline-block;
    padding: 0.2em 0.5em;
    border-radius: 1em;
    font-size: 0.7em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.EventList__status--active {
    background: #d4edda;
    color: #155724;
}

.EventList__status--upcoming {
    background: #fff3cd;
    color: #856404;
}

.EventList__status--expired {
    background: #f8d7da;
    color: #721c24;
}

/* 이벤트 작성 스타일 */
.EventWrite {
    padding: 1em;
    max-width: 50em;
    margin: 0 auto;
}

.EventWrite__header {
    margin-bottom: 2em;
    text-align: center;
}

.EventWrite__title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.EventWrite__form {
    background: #fff;
    border: 0.0625em solid #e0e0e0;
    border-radius: 0.5em;
    padding: 2em;
    box-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.1);
}

.EventWrite__field {
    margin-bottom: 1.5em;
}

.EventWrite__field--half {
    width: calc(50% - 0.5em);
    display: inline-block;
    vertical-align: top;
}

.EventWrite__field--half:first-child {
    margin-right: 1em;
}

.EventWrite__row {
    display: block;
}

.EventWrite__label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #333;
    font-size: 0.9em;
}

.EventWrite__label .required {
    color: #dc3545;
}

.EventWrite__input,
.EventWrite__textarea {
    width: 100%;
    padding: 0.75em;
    border: 0.0625em solid #ddd;
    border-radius: 0.25em;
    font-size: 1em;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.EventWrite__input:focus,
.EventWrite__textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 0.125em rgba(102, 126, 234, 0.2);
}

.EventWrite__textarea {
    resize: vertical;
    min-height: 6em;
    font-family: inherit;
}

.EventWrite__actions {
    text-align: center;
    margin-top: 2em;
    padding-top: 2em;
    border-top: 0.0625em solid #e0e0e0;
}

.EventWrite__btn {
    display: inline-block;
    padding: 0.75em 2em;
    margin: 0 0.5em;
    border: none;
    border-radius: 0.25em;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.EventWrite__btn--cancel {
    background: #6c757d;
    color: #fff;
}

.EventWrite__btn--cancel:hover {
    background: #5a6268;
    transform: translateY(-0.0625em);
}

.EventWrite__btn--submit {
    background: #667eea;
    color: #fff;
}

.EventWrite__btn--submit:hover {
    background: #5a67d8;
    transform: translateY(-0.0625em);
}

.EventWrite__btn--danger {
    background: #dc3545;
    color: #fff;
}

.EventWrite__btn--danger:hover {
    background: #c82333;
    transform: translateY(-0.0625em);
}

.EventWrite__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.EventWrite__btn i {
    margin-right: 0.5em;
}

/* 위험 구역 스타일 */
.EventWrite__danger-zone {
    margin-top: 3em;
    padding: 1.5em;
    background: #f8f9fa;
    border: 0.0625em solid #dee2e6;
    border-radius: 0.5em;
}

.EventWrite__danger-title {
    color: #dc3545;
    font-size: 1.1em;
    margin-bottom: 0.5em;
}

.EventWrite__danger-description {
    color: #666;
    margin-bottom: 1em;
    font-size: 0.9em;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .EventWrite {
        padding: 0.5em;
    }
    
    .EventWrite__form {
        padding: 1.5em;
    }
    
    .EventWrite__field--half {
        width: 100%;
        display: block;
        margin-right: 0;
        margin-bottom: 1.5em;
    }
    
    .EventWrite__btn {
        display: block;
        width: 100%;
        margin: 0.5em 0;
    }
}

/* 폼 유효성 검사 스타일 */
.EventWrite__input:invalid,
.EventWrite__textarea:invalid {
    border-color: #dc3545;
}

.EventWrite__input:valid,
.EventWrite__textarea:valid {
    border-color: #28a745;
}

/* 파일 업로드 스타일 */
.EventWrite__file {
    width: 100%;
    padding: 0.75em;
    border: 0.0625em solid #ddd;
    border-radius: 0.25em;
    font-size: 1em;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background: #fff;
}

.EventWrite__file:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 0.125em rgba(102, 126, 234, 0.2);
}

.EventWrite__file-info {
    margin-top: 0.5em;
}

.EventWrite__file-info small {
    color: #666;
    font-size: 0.8em;
}

.EventWrite__current-image {
    margin-top: 1em;
    padding: 1em;
    background: #f8f9fa;
    border-radius: 0.25em;
    text-align: center;
}

.EventWrite__preview {
    max-width: 100%;
    max-height: 12.5em;
    border-radius: 0.25em;
    box-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.1);
}

.EventWrite__image-name {
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #666;
    word-break: break-all;
}

/* 드래그 앤 드롭 스타일 */
.EventWrite__file:hover {
    border-color: #667eea;
}

.EventWrite__file:active {
    border-color: #5a67d8;
}

/* 체크박스 스타일 */
.EventWrite__checkbox-wrapper {
    display: flex;
    align-items: center;
    padding: 1em;
    background: #f8f9fa;
    border-radius: 0.5em;
    border: 0.0625em solid #e0e0e0;
}

.EventWrite__checkbox {
    display: none;
}

.EventWrite__checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9em;
    color: #333;
    user-select: none;
}

.EventWrite__checkbox-icon {
    width: 1.25em;
    height: 1.25em;
    border: 0.125em solid #ddd;
    border-radius: 0.25em;
    margin-right: 0.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #fff;
}

.EventWrite__checkbox:checked + .EventWrite__checkbox-label .EventWrite__checkbox-icon {
    background: #667eea;
    border-color: #667eea;
}

.EventWrite__checkbox:checked + .EventWrite__checkbox-label .EventWrite__checkbox-icon::after {
    content: '✓';
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
}

.EventWrite__checkbox-label:hover .EventWrite__checkbox-icon {
    border-color: #667eea;
    box-shadow: 0 0 0 0.125em rgba(102, 126, 234, 0.2);
}

/* 이벤트 상세 페이지 스타일 개선 */
.EventView {
    padding: 0;
    background: #f8f9fa;
    min-height: 100vh;
}

/* 헤더 섹션 */
.EventView__header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2em 1.5em;
    position: relative;
    overflow: hidden;
}

.EventView__header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

.EventView__header-content {
    position: relative;
    z-index: 2;
}

.EventView__title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 1.5em;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.3);
}

.EventView__meta {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.EventView__date-info {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.EventView__date-item {
    display: flex;
    align-items: center;
    gap: 0.75em;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75em;
    border-radius: 0.5em;
    backdrop-filter: blur(10px);
}

.EventView__date-item i {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    width: 1.5em;
    text-align: center;
}

.EventView__date-details {
    display: flex;
    flex-direction: column;
}

.EventView__date-label {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25em;
}

.EventView__date-value {
    font-size: 0.95em;
    font-weight: 500;
    color: #fff;
}

.EventView__status {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.5em 1em;
    border-radius: 2em;
    font-size: 0.9em;
    font-weight: bold;
    align-self: flex-start;
}

.EventView__status--ongoing {
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
}

.EventView__status--upcoming {
    background: rgba(255, 193, 7, 0.9);
    color: #212529;
}

.EventView__status--ended {
    background: rgba(108, 117, 125, 0.9);
    color: #fff;
}

/* 이미지 섹션 */
.EventView__image-section {
    margin: 0;
    background: #fff;
}

.EventView__image-container {
    position: relative;
    max-height: 20em;
    overflow: hidden;
    cursor: pointer;
    background: #f8f9fa;
}

.EventView__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.EventView__image-container:hover .EventView__main-image {
    transform: scale(1.05);
}

.EventView__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    opacity: 0;
}

.EventView__image-container:hover .EventView__image-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.EventView__image-overlay i {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.EventView__image-overlay span {
    font-size: 0.9em;
    text-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.5);
}

/* 콘텐츠 섹션 */
.EventView__content-section {
    background: #fff;
    margin: 1.5em;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.1);
}

.EventView__content-header {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.25em 1.5em;
    border-bottom: 0.0625em solid #dee2e6;
}

.EventView__content-title {
    display: flex;
    align-items: center;
    gap: 0.75em;
    font-size: 1.1em;
    font-weight: bold;
    color: #495057;
    margin: 0;
}

.EventView__content-title i {
    color: #667eea;
    font-size: 1.2em;
}

.EventView__description {
    padding: 2em 1.5em;
    line-height: 1.8;
    color: #333;
    font-size: 1em;
    white-space: pre-wrap;
}

/* 액션 버튼 섹션 */
.EventView__actions {
    padding: 1.5em;
    background: #f8f9fa;
}

.EventView__action-buttons {
    display: flex;
    gap: 1em;
    justify-content: center;
}

.EventView__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.875em 1.75em;
    border-radius: 2em;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0.25em 0.75em rgba(0, 0, 0, 0.1);
    min-width: 8em;
    justify-content: center;
}

.EventView__btn--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.EventView__btn--primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6a4190 100%);
    transform: translateY(-0.125em);
    box-shadow: 0 0.5em 1em rgba(102, 126, 234, 0.3);
    color: #fff;
    text-decoration: none;
}

.EventView__btn--secondary {
    background: #fff;
    color: #6c757d;
    border: 0.125em solid #dee2e6;
}

.EventView__btn--secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    transform: translateY(-0.125em);
    color: #495057;
    text-decoration: none;
}

.EventView__btn i {
    font-size: 1.1em;
}

/* 이미지 모달 */
.EventView__modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.EventView__modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 50em;
    top: 50%;
    transform: translateY(-50%);
}

.EventView__modal-image {
    width: 100%;
    height: auto;
    border-radius: 0.5em;
    box-shadow: 0 1em 3em rgba(0, 0, 0, 0.5);
}

.EventView__modal-close {
    position: absolute;
    top: -2.5em;
    right: 0;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.EventView__modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .EventView__header {
        padding: 1.5em 1em;
    }
    
    .EventView__title {
        font-size: 1.4em;
    }
    
    .EventView__date-info {
        gap: 0.5em;
    }
    
    .EventView__date-item {
        padding: 0.625em;
    }
    
    .EventView__content-section {
        margin: 1em;
    }
    
    .EventView__content-header {
        padding: 1em 1.25em;
    }
    
    .EventView__description {
        padding: 1.5em 1.25em;
    }
    
    .EventView__actions {
        padding: 1.25em 1em;
    }
    
    .EventView__action-buttons {
        flex-direction: column;
        gap: 0.75em;
    }
    
    .EventView__btn {
        width: 100%;
        padding: 1em 1.5em;
    }
    
    .EventView__modal-content {
        width: 95%;
        top: 50%;
    }
    
    .EventView__modal-close {
        top: -3em;
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .EventView__header {
        padding: 1.25em 0.75em;
    }
    
    .EventView__title {
        font-size: 1.3em;
    }
    
    .EventView__image-container {
        max-height: 15em;
    }
    
    .EventView__content-section {
        margin: 0.75em;
    }
    
    .EventView__date-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5em;
        text-align: left;
    }
    
    .EventView__date-item i {
        align-self: flex-start;
    }
}

