/* Progressive Wage Model page — extends employment-act layout */

.page-pwm .ea-hero {
    background: #eef6fb;
    border-bottom: 1px solid #dce9f5;
}

.page-pwm .ea-main {
    max-width: 900px;
    padding-top: 32px;
}

.pwm-card {
    display: block;
    margin: 0 0 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #d8dce0;
    border-radius: 4px;
    text-decoration: none !important;
    color: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pwm-card:hover {
    border-color: #b8c4d0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: #fafcfd;
}

.pwm-card:focus-visible {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}

.pwm-card__title {
    margin: 0 0 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0056b3;
}

.pwm-card:hover .pwm-card__title {
    text-decoration: underline;
}

.pwm-card__desc {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

/* Floating search (small) */
.pwm-search-float {
    position: fixed;
    right: 20px;
    bottom: 120px;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: #006eab;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 110, 171, 0.35);
    z-index: 35;
    transition: background 0.15s ease, transform 0.15s ease;
}

.pwm-search-float:hover {
    background: #005a8c;
    color: #fff;
    transform: scale(1.04);
}

@media (max-width: 600px) {
    .pwm-search-float {
        right: 12px;
        bottom: 90px;
        width: 40px;
        height: 40px;
    }
}
