.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.post-detail {
    background: transparent;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    min-height: 70dvh;
    padding: 20px;
}

.detail-header {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 2vw;
}

.header-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.meta-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
}

.detail-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff 60%, rgba(255, 255, 255, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
}

.tech-label {
    background: var(--primary-color);
    color: #000;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tag-group {
    display: flex;
    gap: 8px;
}

/* 본문 스타일 */
.detail-content {
    line-height: 1.9;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85); /* 쌩하얀색보다 세련됨 */
    margin-top: 40px;
}

/* --- Content Separator --- */
.separator {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(88, 166, 255, 0) 100%);
    opacity: 0.5;
    margin-bottom: 50px;
}

/* --- Footer & Centered Button --- */
.detail-footer {
    display: flex;
    justify-content: center; /* 가운데 정렬 */
    margin-top: 80px;
    gap: 20px;
    padding-bottom: 40px;
}

.post-list > article {
    margin: 10px 0;
}

@media (max-width: 1200px) {
    .post-detail {
        min-height: 50dvh;
        padding: 5px;
    }
}