/* 이벤트 상세 페이지 */
.event-detail-wrapper {
    background: #fff; 
    min-height: 100vh;
    padding: 70px 0;
}

.event-detail-wrapper .container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #9b847f;
    margin-bottom: 18px;
}

.breadcrumb a {
    color: #9b847f;
}

.event-detail {
    background: #fff; 
    /* border-left: 1px solid #ece2df;  */
    /* border-right: 1px solid #ece2df;  */
    overflow: hidden;
}

.event-hero {
    position: relative;
    height: 360px;
}

.event-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:15px;
}

.event-body {
    padding:25px 40px;
}

.hero-chip {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 8px 20px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.event-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 40px 24px;
    border-bottom: 1px solid #ece2df;
}

.event-head h1 {
    font-size: 32px;
    font-weight: 800;
    color: #323232;
}

.event-category {
    font-size: 14px;
    font-weight: 600;
    color: #c76b52;
    letter-spacing: 0.4px;
}

.event-period {
    font-size: 15px;
    color: #9b847f;
    font-weight: 600;
}

.event-actions {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.btn-share,
.btn-apply {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-share {
    background: #f1f5f9;
    color: #9b847f;
}

.btn-apply {
    background: linear-gradient(135deg, #a27b6f 0%, #a27b6f 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.35);
}

.event-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 24px 40px;
    background: #fff;
    border-bottom: 1px solid #ece2df;
}

.meta-label {
    font-size: 12px;
    font-weight: 700;
    color: #9b847f;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.meta-value {
    font-size: 15px;
    color: #323232;
    margin-top: 6px;
}

.event-section {
    padding: 32px 40px;
    border-bottom: 1px solid #f1f5f9;
}

.event-section h2 {
    font-size: 22px;
    font-weight: 800;
    color: #323232;
    margin-bottom: 16px;
}

.event-section p,
.event-section li {
    font-size: 15px;
    line-height: 1.8;
    color: #9b847f;
}

.event-section ol,
.event-section ul {
    padding-left: 20px;
    margin: 0;
}

.event-footer {
    padding: 32px 40px;
    display: flex;
    justify-content: center;
    border-top:1px solid #ece2df;
}

.btn-list {
    padding: 12px 36px;
    border-radius: 12px;
    border: none;
    color: #fff;
    font-weight: 700;
    background: #a27b6f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer {
    margin-top:0;
}


@media (max-width: 1024px) {

    .event-head h1 {
        font-size:28px;
    }




}


@media (max-width: 768px) {

    .event-detail-wrapper {
        padding: 60px 0 80px;
    }

    .btn-list {
        font-size:14px;
        padding:8px 20px;
        border-radius:8px;
    }

    .event-head h1 {
        font-size:26px;
    }


    .event-head {
        flex-direction: column;
        padding: 15px;
    }

    .event-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .event-meta,
    .event-section,
    .event-footer,
    .event-body {
        padding-left: 15px;
        padding-right: 15px;
    }

    .event-hero {
        height: 260px;
    }

    .event-body p {
        font-size:15px;
    }

}

@media (max-width: 480px) {

    .event-head h1 {
        font-size:22px;
    }

    .event-detail-wrapper {
        padding:40px 0 60px;
    }


}