/* ******************************************** */
/** Profile CV
/* ******************************************** */


.c-form__cv {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    padding: 32px 16px 22px;
    text-align: left;

    border-radius: 10px;
    overflow: hidden;
    background-size: 170% 100%;
    background-position: 70%;
    -webkit-transition: background 250ms ease-out, box-shadow 250ms ease-out;
    -moz-transition: background 250ms ease-out, box-shadow 250ms ease-out;
    -o-transition: background 250ms ease-out, box-shadow 250ms ease-out;
    transition: background 250ms ease-out, box-shadow 250ms ease-out;
    
    margin-bottom: 20px;
}

.c-form__cv-icon {
    position: absolute;
    vertical-align: middle;
    width: 30px;
    background: no-repeat center/contain;
    aspect-ratio: 41/45;
    background-image: url(../../images/static/products/brochure-icon.svg);
    margin-top: -7px;
    margin-left: -2px;
}

.c-form__cv-doc {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-form__cv-name {
    display: inline-block;
    vertical-align: middle;
    color: var(--color-lightest);
    font-size: 1.9em;
    font-weight: 600;
    padding-left: 40px;
}

.c-form__cv-download {
    color: var(--color-lightest);
    margin-right: 2px;
    margin-left: auto;
}

/* ********************** de Mobile a TABLET ********************** */

@media (min-width: 768px) {

    .c-form__cv {
        padding: 32px;
        flex-wrap: nowrap;
        min-height: 100px;
        gap: calc(var(--space-x)*3);
    }

    .c-form__cv-download {
        margin-right: 0;
    }

}

/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {

    .c-form__cv-doc {
        gap: 18px;
    }

    .c-form__cv-link {
        font-size: 1.7rem;
    }

    .c-form__cv:hover,
    .c-form__cv:focus {
        background-position: 0%;
        box-shadow: rgb(96 96 96 / 35%) 0 15px 12px -13px, rgb(0 0 0 / 40%) 0px 16px 26px -18px;
        -webkit-transition: background 250ms ease-out, box-shadow 250ms ease-out;
        -moz-transition: background 250ms ease-out, box-shadow 250ms ease-out;
        -o-transition: background 250ms ease-out, box-shadow 250ms ease-out;
        transition: background 250ms ease-out, box-shadow 250ms ease-out;
    }

}

/* ********************** de Desktop 2 a HD ********************** */

@media (min-width: 1400px) {

    .c-form__cv-link {
        font-size: 1.8rem;
    }

}