.dp-header {
    padding: 20px 20px 24px 20px;
    background: linear-gradient(160deg, #5FB88A 0%, #3E8F68 100%);
    border-radius: 0 0 28px 28px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(62, 143, 104, 0.2);
}
.back-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px 6px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.back-pill:hover { background: rgba(255, 255, 255, 0.22); }

.dp-eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 6px;
}
.dp-header h1 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 4px;
}
.dp-subhead {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 16px;
}
.dp-progress-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.dp-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px 24px 20px;
}

.dp-item {
    background: #FFFFFF;
    border: 1px solid #EFEAE4;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    transition: 0.15s;
}
.dp-item:hover { border-color: #D9E9DF; }
.dp-item.is-done {
    background: rgba(95, 184, 138, 0.06);
    border-color: rgba(95, 184, 138, 0.35);
}

.dp-item-top {
    display: flex;
    align-items: center;
    gap: 14px;
}
.dp-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #D6CEC6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 13px;
    flex-shrink: 0;
    transition: 0.15s;
}
.dp-item.is-done .dp-check {
    background: #3E8F68;
    border-color: #3E8F68;
    color: #fff;
}
.dp-item-title {
    flex: 1;
}
.dp-item-title h4 {
    font-size: 15px;
    font-weight: 500;
    color: #2A2624;
}
.dp-item-title p {
    font-size: 12px;
    color: #8A7A7A;
    font-weight: 300;
}
.dp-chevron {
    color: #C9BFB5;
    transition: transform 0.2s ease;
    font-size: 13px;
}
.dp-item.is-open .dp-chevron {
    transform: rotate(90deg);
}

.dp-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.dp-item.is-open .dp-item-body {
    max-height: 320px;
}
.dp-item-body-inner {
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid #F0EBE4;
    font-size: 14px;
    line-height: 1.7;
    color: #4A4442;
    font-weight: 300;
}

@media (min-width: 768px) {
    .dp-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}
