/* 공지사항 상세 페이지 스타일 */

body {
    background: #fff;
}

.notice-d-container {
    max-width:1024px;
}

/* Notice Detail Page */
.notice-detail-page {
    padding: 80px 0 100px;
    background: #fff;
}

/* Notice Detail Header */
.notice-detail-header {
    padding-bottom: 30px;
    border-bottom: 2px solid #bb877a;
    margin-bottom: 40px;
    animation: fadeInDown 0.6s ease-out;
}

.notice-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.notice-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.notice-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.notice-meta span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #999;
    border-radius: 50%;
    display: inline-block;
}

.notice-meta span:first-child::before {
    display: none;
}

/* Notice Content */
.notice-content {
    padding: 40px 0;
    min-height: 400px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.notice-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.notice-content p:last-child {
    margin-bottom: 0;
}

/* Content Images */
.content-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.content-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.content-images img:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Notice Navigation */
.notice-navigation {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-label {
    width: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #bb877a;
    flex-shrink: 0;
}

.nav-link {
    flex: 1;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #bb877a;
}

/* Notice Buttons */
.notice-buttons {
    text-align: center;
    margin-top: 60px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.btn-list {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: #bb877a;
    border: 2px solid #bb877a;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-list:hover {
    background: #bb877a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .content-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin: 30px 0;
    }
}

@media (max-width: 768px) {
    .notice-detail-page {
        padding: 60px 0 80px;
    }

    .notice-detail-header {
        padding-bottom: 24px;
        margin-bottom: 30px;
    }

    .notice-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .notice-meta {
        gap: 12px;
        font-size: 13px;
        flex-wrap: wrap;
    }

    .notice-content {
        padding: 30px 0;
    }

    .notice-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .content-images {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 30px 0;
    }

    .nav-item {
        padding: 16px 0;
    }

    .nav-label {
        width: 80px;
        font-size: 13px;
    }

    .nav-link {
        font-size: 14px;
    }

    .notice-buttons {
        margin-top: 40px;
    }

    .btn-list {
        padding: 12px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .notice-detail-page {
        padding: 40px 0 60px;
    }

    .notice-detail-header {
        padding-bottom: 20px;
        margin-bottom: 24px;
    }

    .notice-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .notice-meta {
        gap: 10px;
        font-size: 12px;
    }

    .notice-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .content-images {
        gap: 12px;
        margin: 24px 0;
    }

    .nav-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
        gap: 8px;
    }

    .nav-label {
        width: auto;
        font-size: 12px;
    }

    .nav-link {
        font-size: 13px;
    }

    .notice-buttons {
        margin-top: 30px;
    }

    .btn-list {
        padding: 12px 28px;
        font-size: 13px;
    }
}
