/* Numbered Accordion Styles */
.numbered-accordion {
    margin: 0 auto;
    font-family: inherit;
}

.na-item {
    display: flex;
    gap: 40px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 16px;
    align-items: flex-start;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.na-item.is-open {
    background: #eef0fb;
    border-color: transparent;
}

.na-item__image {
    flex: 0 0 400px;
    border-radius: 4px;
    overflow: hidden;
}

.na-item__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.na-item__body {
    flex: 1;
    min-width: 0;
}

.na-item__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.na-item__number {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1e3a8a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.na-item__title {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.na-item__chevron-btn {
    flex: 0 0 auto;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #1e3a8a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.na-item__chevron-btn svg {
    transition: transform 0.3s ease;
}

.na-item.is-open .na-item__chevron-btn svg {
    transform: rotate(180deg);
}

/* Preview content always visible */
.na-item__content {
    color: #334155;
    font-size: 15px;
    line-height: 1.65;
}

.na-item__content p {
    margin: 0 0 12px;
}

.na-item__content ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 14px;
}

.na-item__content ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.na-item__content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f97316;
}

.na-item__content strong {
    color: #0f172a;
}

/* "More" content — hidden when closed, revealed when open */
.na-item__more {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.na-item.is-open .na-item__more {
    max-height: 2000px;
    opacity: 1;
}

/* Toggle pill button */
.na-item__toggle-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.na-item__toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.na-item__toggle-btn svg {
    transition: transform 0.3s ease;
}

.na-item.is-open .na-item__toggle-btn {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
}

.na-item.is-open .na-item__toggle-btn svg {
    transform: rotate(180deg);
}

.na-item .na-label-less,
.na-item.is-open .na-label-more {
    display: none;
}

.na-item.is-open .na-label-less {
    display: inline;
}

/* Responsive */
@media (max-width: 720px) {
    .na-item {
        flex-direction: column;
        padding: 18px;
    }
    .na-item__image {
        flex: 0 0 auto;
        width: 100%;
    }
    .na-item__title {
        font-size: 16px;
    }
}
