/**
 * Wire Draftees — Mobile-first CSS (375px base)
 * Design system: --sew-* tokens from vars.css
 * Breakpoints: sm:640 md:768 lg:1024 xl:1280
 */

/* ── Shared ──────────────────────────────────────────── */
.wd-browse, .wd-profile, .wd-hire, .wd-dash, .wd-list {
    max-width: 100%;
    padding: 16px;
    font-family: var(--sew-font-body, 'Inter', system-ui, sans-serif);
    color: var(--sew-dark-500, #2D2D2D);
    -webkit-font-smoothing: antialiased;
}

/* ── Breadcrumbs ─────────────────────────────────────── */
.wd-browse__breadcrumb,
.wd-profile__breadcrumb,
.wd-hire__breadcrumb {
    font-size: 0.875rem;
    color: var(--sew-primary-500, #FF6A70);
    text-decoration: none;
    margin-bottom: 12px;
    display: inline-block;
}

/* ══════════════════════════════════════════════════════
   BROWSE PAGE — /draftees/
   ══════════════════════════════════════════════════════ */

.wd-browse__hero {
    text-align: center;
    margin-bottom: 20px;
}
.wd-browse__hero h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 4px;
}
.wd-browse__hero p {
    font-size: 0.875rem;
    color: var(--sew-text-muted, #666);
    margin: 0;
}

/* Department filter pills — horizontal scroll at mobile */
.wd-browse__filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 12px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
}
.wd-browse__filters::-webkit-scrollbar { display: none; }

.wd-browse__filter-pill {
    flex-shrink: 0;
    padding: 6px 14px;
    border: 1px solid var(--sew-gray-300, #E0E0E0);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--sew-dark-500, #2D2D2D);
    background: #fff;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.wd-browse__filter-pill:hover,
.wd-browse__filter-pill--active {
    background: var(--sew-primary-500, #FF6A70);
    color: #fff;
    border-color: var(--sew-primary-500, #FF6A70);
}

/* Draftee card grid — 1 column on mobile */
.wd-browse__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Draftee Card ────────────────────────────────────── */
.wd-card {
    background: #fff;
    border: 1px solid var(--sew-gray-200, #eee);
    border-radius: 12px;
    padding: 16px;
    transition: box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.wd-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.wd-card__top {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}
.wd-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sew-primary-100, #FFE5E6);
    color: var(--sew-primary-600, #E65056);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}
.wd-card__name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
.wd-card__role {
    font-size: 0.8125rem;
    color: var(--sew-text-muted, #666);
    margin: 2px 0 0;
}
.wd-card__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
}
.wd-card__tagline {
    font-size: 0.875rem;
    color: var(--sew-dark-500, #2D2D2D);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wd-card__stats {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--sew-text-muted, #666);
    flex-wrap: wrap;
}
.wd-card__stat-val {
    font-weight: 700;
    color: var(--sew-dark-500, #2D2D2D);
}

/* ══════════════════════════════════════════════════════
   SINGLE PROFILE — /draftees/:slug/
   ══════════════════════════════════════════════════════ */

.wd-profile__header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.wd-profile__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sew-primary-100, #FFE5E6);
    color: var(--sew-primary-600, #E65056);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.wd-profile__name {
    font-size: 1.375rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}
.wd-profile__role {
    font-size: 0.875rem;
    color: var(--sew-text-muted, #666);
    margin: 2px 0 0;
}
.wd-profile__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.wd-profile__badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
}
.wd-profile__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.wd-profile__tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--sew-gray-100, #F5F5F5);
    border-radius: 999px;
    color: var(--sew-dark-500, #2D2D2D);
}

/* Stats bar — 4 across even at 375px */
.wd-profile__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid var(--sew-gray-200, #eee);
    border-bottom: 1px solid var(--sew-gray-200, #eee);
    margin-bottom: 20px;
}
.wd-profile__stat-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--sew-dark-500, #2D2D2D);
    display: block;
}
.wd-profile__stat-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sew-text-muted, #666);
    font-weight: 600;
}

/* Sections */
.wd-profile__section {
    margin-bottom: 24px;
}
.wd-profile__section-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 12px;
}
.wd-profile__about {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--sew-dark-500, #2D2D2D);
}

/* CTA bar */
.wd-profile__cta-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--sew-gray-200, #eee);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 50;
    margin: 0 -16px;
}
.wd-profile__cta-price {
    font-size: 0.875rem;
    color: var(--sew-text-muted, #666);
}
.wd-profile__cta-price strong {
    font-size: 1.25rem;
    color: var(--sew-dark-500, #2D2D2D);
}
.wd-profile__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--sew-primary-500, #FF6A70);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}
.wd-profile__cta-btn:hover {
    background: var(--sew-primary-600, #E65056);
    color: #fff !important;
}

/* Dispatch feed within profile */
.wd-profile__feed {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.wd-profile__feed-empty {
    text-align: center;
    padding: 32px 16px;
    color: var(--sew-text-muted, #666);
    font-size: 0.875rem;
}

/* ══════════════════════════════════════════════════════
   HIRE PAGE — /hire/?wd_id=
   ══════════════════════════════════════════════════════ */

.wd-hire__preview {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    background: var(--sew-gray-50, #FAFAFA);
    border-radius: 12px;
    margin-bottom: 20px;
}
.wd-hire__preview-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sew-primary-100, #FFE5E6);
    color: var(--sew-primary-600, #E65056);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.wd-hire__preview-name {
    font-weight: 700;
    font-size: 1rem;
}
.wd-hire__preview-role {
    font-size: 0.8125rem;
    color: var(--sew-text-muted, #666);
}
.wd-hire__preview-stat {
    font-size: 0.8125rem;
    color: var(--sew-primary-500, #FF6A70);
    font-weight: 600;
}

.wd-hire__heading {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 16px;
}

/* Plan cards — stacked on mobile */
.wd-hire__plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.wd-hire__plan {
    padding: 16px;
    border: 2px solid var(--sew-gray-200, #eee);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.wd-hire__plan:hover {
    border-color: var(--sew-primary-300, #FFB1B4);
}
.wd-hire__plan--selected {
    border-color: var(--sew-primary-500, #FF6A70);
    box-shadow: 0 0 0 1px var(--sew-primary-500, #FF6A70);
}
.wd-hire__plan-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--sew-text-muted, #666);
    margin-bottom: 4px;
}
.wd-hire__plan-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sew-dark-500, #2D2D2D);
}
.wd-hire__plan-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--sew-text-muted, #666);
}
.wd-hire__plan-desc {
    font-size: 0.8125rem;
    color: var(--sew-text-muted, #666);
    margin-top: 4px;
}
.wd-hire__plan-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--sew-primary-100, #FFE5E6);
    color: var(--sew-primary-600, #E65056);
    margin-top: 6px;
}
.wd-hire__select-prompt {
    text-align: center;
    padding: 48px 16px;
    color: var(--sew-text-muted, #666);
}
.wd-hire__select-prompt p {
    margin: 8px 0;
}
.wd-hire__browse-btn {
    display: inline-flex;
    padding: 10px 24px;
    background: var(--sew-primary-500, #FF6A70);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
}

/* Checkout form */
.wd-hire__checkout {
    padding: 16px;
    background: var(--sew-gray-50, #FAFAFA);
    border-radius: 12px;
}
.wd-hire__submit {
    width: 100%;
    padding: 14px;
    background: var(--sew-primary-500, #FF6A70);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 12px;
}
.wd-hire__submit:hover {
    background: var(--sew-primary-600, #E65056);
}
.wd-hire__terms {
    font-size: 0.75rem;
    color: var(--sew-text-muted, #666);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   DASHBOARD — /my-draftees/
   ══════════════════════════════════════════════════════ */

.wd-dash__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}
.wd-dash__title {
    font-size: 1.375rem;
    font-weight: 800;
    margin: 0;
}
.wd-dash__hire-btn {
    display: inline-flex;
    padding: 8px 16px;
    background: var(--sew-primary-500, #FF6A70);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    flex-shrink: 0;
}

/* Empty state */
.wd-dash__empty {
    text-align: center;
    padding: 48px 16px;
}
.wd-dash__empty-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}
.wd-dash__empty h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 8px;
}
.wd-dash__empty p {
    color: var(--sew-text-muted, #666);
    margin: 0 0 16px;
    font-size: 0.9375rem;
}

/* Hire cards */
.wd-dash__hires {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wd-hire-card {
    padding: 16px;
    background: #fff;
    border: 1px solid var(--sew-gray-200, #eee);
    border-radius: 12px;
}
.wd-hire-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sew-primary-100, #FFE5E6);
    color: var(--sew-primary-600, #E65056);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.wd-hire-card__name {
    font-weight: 700;
    font-size: 1rem;
}
.wd-hire-card__plan {
    font-size: 0.75rem;
    color: var(--sew-text-muted, #666);
}
.wd-hire-card__status {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
}
.wd-hire-card__status--active { background: #ECFDF5; color: #064E3B; }
.wd-hire-card__status--trial  { background: #DBEAFE; color: #1E3A8A; }
.wd-hire-card__status--cancelled { background: var(--sew-gray-100, #F5F5F5); color: #666; }
.wd-hire-card__actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.wd-hire-card__action {
    flex: 1;
    text-align: center;
    padding: 8px;
    border: 1px solid var(--sew-gray-300, #E0E0E0);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--sew-dark-500, #2D2D2D);
    transition: background 0.15s;
}
.wd-hire-card__action:hover {
    background: var(--sew-gray-50, #FAFAFA);
}

/* Section titles */
.wd-dash__section { margin-bottom: 24px; }
.wd-dash__section-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 12px;
}

/* Dispatch items in dashboard */
.wd-dash__dispatch {
    padding: 12px 0;
    border-bottom: 1px solid var(--sew-gray-100, #F5F5F5);
}
.wd-dash__dispatch:last-child { border-bottom: none; }
.wd-dash__dispatch-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 4px;
}
.wd-dash__dispatch-meta {
    font-size: 0.75rem;
    color: var(--sew-text-muted, #666);
}

/* ══════════════════════════════════════════════════════
   LIST DRAFTEE — /list-draftee/
   ══════════════════════════════════════════════════════ */

.wd-list__header {
    text-align: center;
    margin-bottom: 24px;
}
.wd-list__title {
    font-size: 1.375rem;
    font-weight: 800;
    margin: 0 0 4px;
}
.wd-list__subtitle {
    font-size: 0.875rem;
    color: var(--sew-text-muted, #666);
}
.wd-list__coming-soon {
    text-align: center;
    padding: 32px 16px;
}
.wd-list__coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}
.wd-list__coming-soon h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 8px;
}
.wd-list__coming-soon p {
    color: var(--sew-text-muted, #666);
    font-size: 0.9375rem;
    max-width: 320px;
    margin: 0 auto 16px;
    line-height: 1.6;
}
.wd-list__notify-form {
    display: flex;
    gap: 8px;
    max-width: 340px;
    margin: 0 auto;
}
.wd-list__notify-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--sew-gray-300, #E0E0E0);
    border-radius: 8px;
    font-size: 0.875rem;
    min-width: 0;
}
.wd-list__notify-btn {
    padding: 10px 16px;
    background: var(--sew-primary-500, #FF6A70);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}
.wd-list__features {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.wd-list__feature {
    padding: 16px;
    background: var(--sew-gray-50, #FAFAFA);
    border-radius: 12px;
}
.wd-list__feature-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 4px;
}
.wd-list__feature-desc {
    font-size: 0.8125rem;
    color: var(--sew-text-muted, #666);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   DISPATCH ITEMS — used in profile + dashboard + feed
   ══════════════════════════════════════════════════════ */

.wd-dispatch-card {
    padding: 14px 0;
    border-bottom: 1px solid var(--sew-gray-100, #F5F5F5);
}
.wd-dispatch-card:last-child { border-bottom: none; }
.wd-dispatch-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}
.wd-dispatch-card__meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--sew-text-muted, #666);
    flex-wrap: wrap;
}

/* Dispatch type pills */
.wd-dispatch-type {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.wd-dispatch-type--report        { background: #ECFDF5; color: #064E3B; }
.wd-dispatch-type--moderation    { background: #DBEAFE; color: #1E3A8A; }
.wd-dispatch-type--brief         { background: #FEF3C7; color: #78350F; }
.wd-dispatch-type--signal        { background: #FFE5E6; color: #990215; }
.wd-dispatch-type--analysis      { background: #EDE9FE; color: #5B21B6; }
.wd-dispatch-type--support       { background: #ECFDF5; color: #064E3B; }
.wd-dispatch-type--triage        { background: #FEF3C7; color: #78350F; }
.wd-dispatch-type--documentation { background: #DBEAFE; color: #1E3A8A; }

/* Verified proof badge */
.wd-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--sew-success-500, #10B981);
}

/* Heatmap */
.wd-heatmap {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    gap: 2px;
    margin: 12px 0;
}
.wd-heatmap__day {
    aspect-ratio: 1;
    border-radius: 2px;
    background: var(--sew-gray-100, #F5F5F5);
}
.wd-heatmap__day--1 { background: var(--sew-primary-100, #FFE5E6); }
.wd-heatmap__day--2 { background: var(--sew-primary-200, #FFCBCD); }
.wd-heatmap__day--3 { background: var(--sew-primary-300, #FFB1B4); }
.wd-heatmap__day--4 { background: var(--sew-primary-500, #FF6A70); }
.wd-heatmap__day--5 { background: var(--sew-primary-700, #CC3640); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — tablet (640px+)
   ══════════════════════════════════════════════════════ */

@media (min-width: 640px) {
    .wd-browse, .wd-profile, .wd-hire, .wd-dash, .wd-list {
        padding: 24px;
        max-width: 640px;
        margin: 0 auto;
    }
    .wd-browse__hero h1 { font-size: 1.75rem; }
    .wd-browse__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .wd-hire__plans {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .wd-profile__avatar { width: 72px; height: 72px; font-size: 1.5rem; }
    .wd-profile__name { font-size: 1.625rem; }
    .wd-profile__cta-bar {
        position: static;
        margin: 24px 0 0;
        border: 1px solid var(--sew-gray-200, #eee);
        border-radius: 12px;
        padding: 16px 20px;
    }
    .wd-list__features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Desktop (1024px+) ───────────────────────────────── */

@media (min-width: 1024px) {
    .wd-browse, .wd-profile, .wd-hire, .wd-dash, .wd-list {
        max-width: 960px;
    }
    .wd-browse__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .wd-hire__plans {
        grid-template-columns: repeat(4, 1fr);
    }
    .wd-profile__stats {
        max-width: 480px;
    }
    .wd-dash__hires {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .wd-list__features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Wide desktop (1280px+) ──────────────────────────── */

@media (min-width: 1280px) {
    .wd-browse, .wd-profile, .wd-hire, .wd-dash, .wd-list {
        max-width: 1120px;
    }
}

/* === My Draftees Dashboard Stats === */
.wd-dash__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.wd-dash__stat {
    background: var(--sew-bg, #fff);
    border: 1px solid var(--sew-border, #eee);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
}
.wd-dash__stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sew-text, #1E1E2E);
    line-height: 1;
}
.wd-dash__stat-label {
    font-size: 0.6875rem;
    color: var(--sew-text-muted, #888);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* === DR-43: Onboarding Banner === */
.wd-onboard {
    position: relative;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E6 100%);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
}
.wd-onboard__close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #999;
    cursor: pointer;
}
.wd-onboard__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
}
.wd-onboard__steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wd-onboard__step {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.8125rem;
    line-height: 1.4;
}
.wd-onboard__num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sew-primary-500, #FF6A70);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* === Success Message === */
.wd-list__success {
    padding: 14px 16px;
    background: #ECFDF5;
    border-radius: 10px;
    color: #065F46;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}
