.limit-id-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 16px 40px;
}

.limit-id-hero h1 {
    margin: 0 0 10px;
    font-size: 2rem;
}

.limit-id-hero p {
    margin: 0 0 16px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.limit-id-hero p {
    color: #e9ecef;
}


.limit-id-content {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
    gap: 18px;
}

.card-lim {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(0 0 0 / 50%);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 16px 16px 14px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

    .card-lim .figure {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-lim p {
        color: #e9ecef;
    }

.card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

    .card-head .icon {
        font-size: 1.35rem;
        line-height: 1;
    }

.card-lim h2 {
    color: #f1f3f5;
}

.subhead {
    color: #e9ecef;
}


.bullet-list {
    margin: 10px 0 0 18px;
    padding: 0;
    line-height: 1.6;
}

    .bullet-list.compact {
        margin-top: 8px;
    }

    .bullet-list li {
        color: #f1f3f5;
    }

.step-list {
    margin: 10px 0 0 18px;
    padding: 0;
    line-height: 1.6;
}

    .step-list li {
        color: #f1f3f5;
    }

.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 10px;
}

@media (min-width: 820px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

/* Callouts */
.callout {
    margin-top: 14px;
    border-radius: 14px;
    padding: 12px 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.callout-icon {
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}


.callout-body {
    line-height: 1.5;
    color: #f1f3f5;
}

.callout strong {
    font-weight: 700;
}

/* Variants */
.callout-info {
    background: rgba(0, 123, 255, 0.75);
    border-color: rgba(0, 123, 255, 0.25);
}

.callout-tip {
    background: rgba(40, 167, 69, 0.08);
    border-color: rgba(40, 167, 69, 0.25);
}

.callout-success {
    background: rgba(25, 135, 84, 0.08);
    border-color: rgba(25, 135, 84, 0.25);
}

.callout-warning {
    background: rgba(255, 193, 7, 0.09);
    border-color: rgba(255, 193, 7, 0.28);
}

.callout-danger {
    background: rgba(220, 53, 69, 0.09);
    border-color: rgba(220, 53, 69, 0.28);
}

/* Icon color per callout type */
.callout-info .icon-svg {
    color: #4dabf7; /* blue */
}

.callout-tip .icon-svg {
    color: #51cf66; /* green */
}

.callout-success .icon-svg {
    color: #2f9e44; /* darker green */
}

.callout-warning .icon-svg {
    color: #ffd43b; /* amber */
}

.callout-danger .icon-svg {
    color: #ff6b6b; /* red */
}


/* SVG Icon styling */
.icon-svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.figure-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .figure-group img {
        max-width: 600px;
        padding-bottom: 20px;
    }

.figure img {
    max-width: 600px;
    padding-bottom: 20px;
    border-radius: 12px;
}

.card-lim figcaption {
    color: #6b7280;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.25rem;
}

.image-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-start;
}

.image-item {
    max-width: 420px;
    text-align: center;
}

    .image-item img {
        width: 100%;
        border-radius: 12px;
        display: block;
    }

    .image-item figcaption {
        margin-top: 0.5rem;
        font-size: 0.9rem;
        opacity: 0.85;
    }

