/* 담다 오감놀이 - 포스트 커스텀 스타일 */
/* 미니멀 스카이 디자인 패턴 */

.damda-post-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #475569;
    line-height: 1.8;
}

.damda-post-wrap h1,
.damda-post-wrap h2,
.damda-post-wrap h3 {
    color: #1e293b;
    line-height: 1.4;
}

.damda-post-wrap h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 48px 0 16px;
    padding-left: 16px;
    border-left: 4px solid #0ea5e9;
}

.damda-post-wrap h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 32px 0 12px;
}

.damda-post-wrap p {
    margin-bottom: 18px;
    font-size: 16px;
}

.damda-info-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.damda-info-box h3 {
    color: #0369a1;
    margin-top: 0;
    font-size: 17px;
}

.damda-info-box ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.damda-info-box li {
    margin-bottom: 8px;
    font-size: 15px;
}

.damda-highlight-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 28px;
    margin: 28px 0;
    border-left: 5px solid #0ea5e9;
}

.damda-highlight-box p {
    margin: 0;
    font-size: 15px;
    color: #334155;
}

.damda-step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.damda-step-list li {
    counter-increment: step-counter;
    padding: 16px 16px 16px 60px;
    margin-bottom: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    position: relative;
    font-size: 15px;
    transition: box-shadow 0.2s;
}

.damda-step-list li:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.damda-step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #0ea5e9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.damda-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.damda-table thead th {
    background: #0ea5e9;
    color: white;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
}

.damda-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
}

.damda-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.damda-table tbody tr:hover {
    background: #f0f9ff;
}

.damda-cta-box {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin: 40px 0;
    color: white;
}

.damda-cta-box h3 {
    color: white;
    font-size: 20px;
    margin: 0 0 12px;
}

.damda-cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.damda-cta-box a {
    display: inline-block;
    padding: 12px 32px;
    background: white;
    color: #0ea5e9;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s;
}

.damda-cta-box a:hover {
    transform: translateY(-2px);
}

.damda-img-wrap {
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.damda-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.damda-img-wrap figcaption {
    padding: 10px 16px;
    background: #f8fafc;
    font-size: 13px;
    color: #94a3b8;
    text-align: center;
}

.damda-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.damda-tag-list li {
    padding: 4px 14px;
    background: #f0f9ff;
    color: #0369a1;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .damda-post-wrap {
        padding: 24px 16px;
    }
    .damda-post-wrap h2 {
        font-size: 20px;
    }
}
