:root {
    --text-color: #000;
    --bg-color: #edede9;
    --adv-bg-color: #AEC3B0;
    --desktop-max-width: 608px;
}

* {
    box-sizing: border-box;
    transition: 0.3s all ease-out;
}

*:focus {
    outline: none;
}

html,
body {
    scroll-behavior: smooth;
}

html {
    font-size: 20px;
}

/* 
        font-family: "SoleSans", Arial, Helvetica, sans-serif;
        font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
        font-family: "sole_headline", Georgia, Times, "Times New Roman", Serif;
        font-family: "sole_display", Georgia, Times, "Times New Roman", serif;
        */

body {
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    background-color: var(--bg-color);
    padding: 0;
    margin: 0;
    color: var(--text-color);
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

div {
    width: 100%;
}

.lancio_punt_cnt {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    max-width: 608px;
    height: 180px;
    padding: 15px 20px;
    border-radius: 14px;
    background: #FFF;
    margin: 20px auto;
    box-shadow: 0 4px 0 0 rgba(15, 15, 15, 0.08);
}

.lancio_punt_titolo a:link {
    color: var(--text-color);
    text-decoration: none;
}

.lancio_punt_titolo a:visited {
    color: var(--text-color);
    text-decoration: none;
}

.lancio_punt_titolo a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.lancio_punt_titolo a:active {
    color: var(--text-color);
    text-decoration: underline;
}

.lancio_punt_img {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 130px;
    height: 130px;
}

.lancio_punt_img img {
    width: 100%;
    height: auto;
}

.lancio_punt_testi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    width: calc(100% - 130px);
}

.lancio_punt_occhiello {
    color: #0035A5;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    width: fit-content;
}

.lancio_punt_titolo {
    color: var(--text-color);
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 5px 0;
}

.lancio_punt_sommario {
    color: var(--text-color);
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}


.lancio_punt_btn {
    padding: 10px 0 0;
    position: relative;
    text-align: right;
}

.lancio_punt_btn button {
    color: var(--text-color);
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 1.rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 6px;
    background: #0F0F0F;
    padding: 10px 36px 10px 10px;
    width: fit-content;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
}

.lancio_punt_btn button::after {
    content: url("icona-freccia.svg");
    position: absolute;
    top: 7px;
    right: 6px;
}

.lancio_punt_btn a:link {}

.lancio_punt_btn a:hover button {
    background-color: #E6175C;
}

@media only screen and (min-width: 481px) {
    .mobile {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .lancio_punt_cnt {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        height: auto;
        padding: 15px;
    }

    .lancio_punt_img {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
    }

    .lancio_punt_testi {
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
    }


    .desktop {
        display: none;
    }
}