/**
 * "Practical options" pattern styles.
 * Loaded on calculator singular pages and on hub pages where the
 * meta is set. Matches the existing visual identity: navy headings,
 * gold accents, hub-card aesthetic, no commercial language treatments.
 */

.cw-practical {
    margin: 40px 0 32px;
    padding: 28px 28px 22px;
    background: #fafbfd;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
}

.cw-practical__heading {
    margin: 0 0 14px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a2540;
    letter-spacing: -0.01em;
    padding-bottom: 8px;
    border-bottom: 2px solid #c99a3b;
}

.cw-practical__what {
    margin: 0 0 32px;
}
.cw-practical__what p {
    margin: 0 0 12px;
    color: #2b2f36;
    line-height: 1.6;
    font-size: 1rem;
}
.cw-practical__what p:last-child { margin-bottom: 0; }

/* Options card */
.cw-practical__options {
    margin: 0 0 32px;
}
.cw-practical__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.cw-practical__item {
    padding: 16px 18px 14px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-left: 4px solid #0a2540;
    border-radius: 6px;
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.cw-practical__item:hover,
.cw-practical__item:focus-within {
    border-color: #c99a3b;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(10,37,64,0.06);
}
.cw-practical__item-label {
    margin: 0 0 6px;
    font-size: 1.02rem;
    font-weight: 700;
    color: #0a2540;
    letter-spacing: -0.005em;
}
.cw-practical__item-desc {
    margin: 0 0 10px;
    color: #2b2f36;
    font-size: 0.95rem;
    line-height: 1.55;
}
.cw-practical__item-link {
    display: inline-block;
    color: #0a2540;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.15s;
}
.cw-practical__item-link:hover,
.cw-practical__item-link:focus-visible {
    color: #c99a3b;
    text-decoration: underline;
}

/* Questions checklist — copy-paste friendly */
.cw-practical__questions {
    margin: 0;
}
.cw-practical__checklist {
    margin: 0;
    padding: 0 0 0 1.4rem;
    counter-reset: cw-q-counter;
}
.cw-practical__checklist li {
    margin: 0 0 10px;
    padding-left: 6px;
    color: #0a2540;
    line-height: 1.55;
    font-size: 0.97rem;
}
.cw-practical__checklist li::marker {
    color: #c99a3b;
    font-weight: 700;
}
.cw-practical__checklist li:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .cw-practical { padding: 20px 18px 16px; margin: 28px 0 24px; }
    .cw-practical__heading { font-size: 1.15rem; }
    .cw-practical__what { margin-bottom: 24px; }
    .cw-practical__options { margin-bottom: 24px; }
    .cw-practical__item { padding: 14px 14px 12px; }
}
