.vacature-row {
    display: flex;
    align-items: center;
    gap: max(1rem, calc(2 * var(--su)));
    width: 100%;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: var(--border-radius);
    padding: max(1.25rem, calc(1.75 * var(--su))) max(1.5rem, calc(2.125 * var(--su)));
    text-decoration: none;
}

.vacature-row-title {
    flex: 1 1 auto;
    font-family: var(--pk-heading-font-family);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--scaling-h4);
    color: var(--color-white);
}

.vacature-row-meta {
    display: flex;
    align-items: center;
    gap: max(1rem, calc(1.5 * var(--su)));
    flex-shrink: 0;
}

.vacature-row-tag {
    display: inline-flex;
    align-items: center;
    gap: max(0.5rem, calc(0.625 * var(--su)));
    font-size: var(--desktop-body-lg);
    white-space: nowrap;
}

.vacature-row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: max(2rem, calc(2 * var(--su)));
    height: max(2rem, calc(2 * var(--su)));
    border-radius: 50%;
    background: rgba(255, 42, 38, 0.48);
    color: var(--tpa-orange);
    font-size: max(1rem, calc(1 * var(--su)));
}

.vacature-row .pk-button-group {
    flex-shrink: 0;
}

.vacature-row .pk-button-group .pk-button {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-black);
    pointer-events: none;
}

.vacature-row .pk-button-group .pk-button .material-symbols-outlined {
    color: var(--color-black);
}

.vacature-row:hover .pk-button-group .pk-button .material-symbols-outlined {
    transform: rotate(0deg);
}

@media screen and (max-width: 992px) {
    .vacature-row-title {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 767px) {
    .vacature-row {
        flex-direction: column;
        align-items: flex-start;
        gap: max(1.5rem, calc(1.5 * var(--su)));
    }

    .vacature-row-meta {
        flex-wrap: wrap;
    }

    .vacature-row .pk-button-group .pk-button {
        width: 100%;
        justify-content: center;
    }
}