/* AuditCraft Post & Page Custom Styles - Magazine Bold */
:root {
    --ac-primary: #1B4965;
    --ac-primary-dark: #0D2B3E;
    --ac-primary-light: #5FA8D3;
    --ac-accent: #62B6CB;
    --ac-warm: #F4A261;
    --ac-bg: #FAFBFC;
    --ac-white: #FFFFFF;
    --ac-light: #F0F4F8;
    --ac-text: #4A5568;
    --ac-text-dark: #1A1A2E;
    --ac-border: #E2E8F0;
    --ac-radius: 16px;
}

.ac-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--ac-text);
    line-height: 1.9;
}

.ac-post-content h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--ac-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ac-post-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ac-primary-dark);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--ac-primary-light);
}

.ac-post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ac-primary);
    margin: 2rem 0 0.8rem;
}

.ac-post-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.ac-hero-banner {
    width: 100%;
    border-radius: var(--ac-radius);
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(27,73,101,0.1);
}

.ac-hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.ac-info-box {
    background: var(--ac-light);
    border-left: 4px solid var(--ac-primary-light);
    padding: 1.5rem;
    border-radius: 0 var(--ac-radius) var(--ac-radius) 0;
    margin: 1.5rem 0;
}

.ac-info-box h4 {
    color: var(--ac-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ac-highlight-box {
    background: linear-gradient(135deg, var(--ac-primary), var(--ac-primary-light));
    color: #fff;
    padding: 2rem;
    border-radius: var(--ac-radius);
    margin: 2rem 0;
}

.ac-highlight-box h4 {
    color: var(--ac-warm);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ac-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.ac-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.ac-table th {
    background: var(--ac-primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.ac-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--ac-border);
}

.ac-table tr:nth-child(even) {
    background: var(--ac-light);
}

.ac-table tr:hover {
    background: rgba(95, 168, 211, 0.08);
}

.ac-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.ac-checklist li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--ac-border);
}

.ac-checklist li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--ac-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.ac-cta-box {
    background: var(--ac-white);
    border: 2px solid var(--ac-primary-light);
    border-radius: var(--ac-radius);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.ac-cta-box h4 {
    color: var(--ac-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.ac-cta-box .ac-phone {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--ac-warm);
    display: block;
    margin: 0.5rem 0;
}

.ac-tag {
    display: inline-block;
    background: var(--ac-light);
    color: var(--ac-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 2px;
}

.ac-step-list {
    counter-reset: steps;
    list-style: none;
    padding: 0;
}

.ac-step-list li {
    counter-increment: steps;
    padding: 1rem 1rem 1rem 3.5rem;
    position: relative;
    margin-bottom: 1rem;
    background: var(--ac-white);
    border-radius: var(--ac-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.ac-step-list li::before {
    content: counter(steps);
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--ac-primary), var(--ac-primary-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .ac-post-content {
        padding: 1rem;
    }
    .ac-post-content h1 {
        font-size: 1.6rem;
    }
    .ac-post-content h2 {
        font-size: 1.3rem;
    }
    .ac-table {
        font-size: 0.85rem;
    }
}
