:root {
    --block-margin: 32px;
}

* {
    box-sizing: border-box;
}

.psb-vulnerabilities-wrapper {
    width: 100%;
    margin: var(--block-margin) 0;
}

.psb-vulnerabilities-wrapper__inner {
    flex-direction: column;
    display: flex;
    gap: 8px;
}

.psb-vulnerability {
    width: 100%;
    padding: 16px;
    background: #f3fbdc;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    color: #1C1E22;
    flex-wrap: wrap;
    gap: 16px;
    margin: var(--block-margin) 0;
}

.psb-vulnerabilities-wrapper__inner .psb-vulnerability {
    margin: 0;
}

.psb-vulnerability__name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    margin: 0 !important;
}

.psb-vulnerability__text {
    margin: 0;
    font-size: 14.4px;
    color: #1C1E22;
    line-height: 1;
}

.psb-vulnerability__left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.psb-vulnerability__left-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.psb-vulnerability__right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.psb-vulnerability__number-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 10px;
    background: #afe614;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.2s;
    color: #1C1E22;
    font-size: 16px;
    line-height: 1;
}

.psb-vulnerability__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.psb-vulnerability__number,
.psb-vulnerability__score {
}

.psb-vulnerability:hover .psb-vulnerability__number-wrapper,
.psb-vulnerability:hover .psb-vulnerability__number-wrapper svg path {
    background: #111216;
    color: white;
    fill: white;
}

.psb-vulnerability:hover {
    background: #afe614;
}

.psb-vulnerability svg {
    flex-shrink: 0;
}

.psb-vulnerability svg path {
    transition: 0.2s;
}

.psb-vulnerability:hover svg path {
    fill: #1C1E22;
}

.psb-cta-with-button {
    padding: 16px;
    border-radius: 8px;
    background: #afe614;
    color: #1C1E22;
    text-decoration: none;
    font-size: 14.4px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: var(--block-margin) 0;
}

.psb-btn {
    flex-shrink: 0;
}

.psb-btn svg {
    transition: 0.2s;
}

.psb-btn:hover svg {
    transform: translatex(4px);
}

.psb-btn--dark {
    background: #1C1E22;
    color: white !important;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.psb-btn--dark span {
    color: white !important;
}

.psb-image--full {
    width: 100%;
}

.psb-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: var(--block-margin) 0;
}

.psb-image-description {
    margin: 0;
    font-size: 11.2px;
    color: #888A8E;
}

.psb-quote {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    margin: var(--block-margin) 0;
}

.psb-quote__left {
    width: 75%;
    background: #F3FBDC;
    border-radius: 8px;
    padding: 32px;
}

.psb-quote__right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
}

.psb-quote__text {
    margin: 0;
    font-size: 24px;
}

.psb-quote__image {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 2px;
}

.psb-quote__line {
}

.psb-quote__name {
}

.psb-outtake {
    background: #F3FBDC;
    border-radius: 8px;
    padding: 32px;
    gap: 32px;
    margin: var(--block-margin) 0;
    display: flex;
    flex-direction: column;
}

.psb-outtake .psb-cta-with-button {
    margin: 0;
}

.psb-outtake__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 !important;
}

.psb-outtake__text {
    font-size: 16px;
    margin: 0;
}

@media (max-width:479px) {
    .psb-quote__left {
        padding: 16px;
        width: 100%;
    }

    .psb-quote {
        flex-direction: column;
    }

    .psb-outtake {
        padding: 16px;
    }

    .psb-cta-with-button {
        flex-direction: column;
        align-items: flex-start;
    }
}

.psb-image {
    border-radius: 8px;
}

.psb-timeline {
    margin: var(--block-margin) 0;
    border-left: 1px solid #afe614;
}

.psb-timeline__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-size: 18px;
    gap: 8px;
}

.psb-timeline__item-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.psb-timeline__item::before {
    content: '';
    position: relative;
    width: 16px;
    height: 1px;
    top: 12px;
    display: block;
    background: #afe614;
}

.psb-timeline__date {
    font-weight: 600;
}

.psb-timeline__text {
}

.psb-timeline__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

@media (max-width:767px) {
    .psb-timeline__item {
        font-size: 16px;
    }
}

.psb-timeline__title {
    margin: 0;
    line-height: 1;
    margin-left: 24px;
    margin-bottom: 24px;
}

.psb-outtake__inner {
}

.vuln-table {
    padding: 32px;
    background: #f3fbdc;
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    display: flex;
    font-size: 14.4px;
}

.vuln-table__row {
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dff2bb;
    gap: 2rem;
    min-width: 738px;
}

.vuln-table__row:last-of-type {
    border-bottom: none;
}

.vuln-table__header {
    font-weight: 600;
    background: #afe614;
    border-radius: 4px;
    border-bottom: none;
    width: auto;
}

.vuln-table__cell {
    padding: 8px;
    color: #1C1E22;
}

#vuln-table .vuln-table__cell a {
    color: #1C1E22 !important;
}

.vuln-table__cell-name {
    min-width: 250px;
    max-width: 250px;
}

.vuln-table__cell-vuln {
    min-width: 280px;
    max-width: 280px;
}

.vuln-table__cell-score {
    min-width: 120px;
    max-width: 120px;
}

.vuln-table__title {
    font-size: 24px;
    margin: 0;
}

.vuln-table__table-wrapper {
    overflow-x: auto;
    width: 100%;
}

#vuln-table .vuln-table__cell-name a:hover,
#vuln-table .vuln-table__cell-vuln a:hover {
    color: #6ebe00 !important;
}