#public_sector_affected {
}
#public_sector_affected_container {
}
#public_sector_affected_content {
    flex-direction: column;
}
#public_sector_affected_content > h2 {
    color: var(--black);
    font-size: 2em;
    font-weight: 500;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}
#public_sector_affected_content > p {
    color: var(--our-grey-color);
    line-height: 1.7;
    margin: 0 0 2.5rem;
    max-width: 600px;
}
#public_sector_affected_list {
    border-top: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}
.affected_item {
    display: grid;
    grid-template-columns: 48px 36px 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 4px;
    transition: background 0.15s, padding-left 0.15s, padding-right 0.15s;
}
.affected_item:hover {
    background: #f5f7fa;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.affected_num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0C447C;
    line-height: 1;
    letter-spacing: -0.03em;
    text-align: right;
    flex-shrink: 0;
}
.affected_icon {
    width: 36px;
    height: 36px;
    background: #E6F1FB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.affected_icon svg {
    width: 18px;
    height: 18px;
}
.affected_title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0C447C;
    line-height: 1.3;
    margin-bottom: 3px;
}
#public_sector_affected_cta {
    background: #E6F1FB;
    border-radius: 14px;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}
#public_sector_affected_cta p {
    color: #0C447C;
    font-weight: 500;
    margin: 0;
}
#public_sector_affected_cta a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 3.8rem;
    text-decoration: none;
    flex-shrink: 0;
}
#public_sector_affected_cta a:hover {
    background: #0C447C;
}
.btn_arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
@media (max-width: 560px) {
    .affected_item {
        grid-template-columns: 36px 1fr;
    }
    .affected_num {
        display: none;
    }
    #public_sector_affected_cta {
        flex-direction: column;
        align-items: flex-start;
    }
}