.node-vacancie .features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-block: 2rem;
    border-block: 1px solid var(--gris-medio);
    flex-wrap: wrap;

    & .features__item {
        display: flex;
        gap: 4px;
    }

    & .features__item__icon {
        color: var(--secundario);
        font-size: 1.25rem;
        line-height: 1;
    }

    & .features__item__title {
        color: var(--gris-oscuro);
        font-weight: 500;
        & strong{
            color: var(--secundario);
            display: block;
        }
    }
}

.node-vacancie{
    & h2, & h3, & h4{
        color: var(--secundario);
    }
}


.node-vacancie .content-wrapper {
    display: flex;
    gap: 2.5rem;
    padding-block: 4rem;

    & h3{
        margin-top: 2.5rem;
    }

    & .content__sidebar {
        border: 1px solid var(--gris-medio);
        height: fit-content;
        padding: 1.5rem;
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        box-shadow: 0 2px 4px #ccc;
        min-width: 280px;
        & h4 {
            font-size: 1.1rem;
        }

        & .content__sidebar__header {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
    }
}

@media screen and (max-width: 767px) {

    .node-vacancie .content-wrapper {
        flex-direction: column-reverse;
    }
}


.node-vacancie-teaser {
    border: 1px solid var(--gris-medio);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px #ccc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    & header {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: space-between;
        flex-wrap: wrap;
        & .node-title {
            margin-bottom: 0;
            & a {
                font-size: 1.5rem;
                color: var(--azul-oscuro);
                text-decoration: none;
                &:hover{
                    color: var(--principal);
                    text-decoration: underline;
                }
            }
        }
    }

    & .features {
        display: flex;
        gap: 1.5rem;
        color: var(--gris-oscuro);
        font-weight: 500;

        & .features__item__icon {
            font-size: 1.25rem;
            line-height: 1;
        }
    }

    & .vancancie__deadline{
        padding: 0.25rem 1rem;
        background-color: var(--principal);
        border-radius: 4px;
        color: var(--blanco);
    }

    & .node__content{
        & p{
            margin-bottom: 0;
            color: #000;
            font-size: 1rem;
        }
    }
}