/* =========================================================
   PAGINA SERVIZI PER AUTORI
========================================================= */

.services-page {
    background: #000;
    color: #fff;
    font-family: var(--font-title);
}


/* =========================================================
   TESTATA PAGINA
========================================================= */

.services-header {
    padding: 80px 0 55px;
    text-align: center;
}

.services-header h1 {
    margin-bottom: 28px;

    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.1;

    color: #fff;

    text-transform: uppercase;
    letter-spacing: .08em;
}


.services-header h2 {
    margin: 34px 0 14px;

    color: var(--myoo-gold);

    font-size: 1.65rem;
    font-weight: 500;
}

.services-header p {
    max-width: 760px;
    margin: 0 auto;

    font-size: 1.18rem;
    line-height: 1.7;

    color: rgba(255,255,255,.86);
}


/* =========================================================
   FILETTI ORO
========================================================= */

.services-divider {
    width: 70%;
    max-width: 620px;
    height: 1px;

    margin: 0 auto;

    background: linear-gradient(
        to right,
        transparent,
        rgba(216,173,97,.85),
        transparent
    );
}

.services-divider.small {
    width: 240px;
    margin-bottom: 42px;
}


/* =========================================================
   TITOLI SEZIONE
========================================================= */

.services-section-title {
    margin-bottom: 18px;

    text-align: center;

    color: var(--myoo-gold);

    font-size: 1.7rem;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: .14em;
}


/* =========================================================
   SERVIZI EDITORIALI
========================================================= */

.services-editorial {
    padding: 25px 0 55px;
}

.services-editorial .container,
.services-revision .container,
.services-contact .container {
    max-width: 1120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
    min-height: 300px;
    padding: 44px 44px 40px;

    text-align: center;
}

.service-card:nth-child(1),
.service-card:nth-child(3) {
    border-right: 1px solid rgba(216,173,97,.55);
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
    border-bottom: 1px solid rgba(216,173,97,.55);
}

.service-card img {
    display: block;
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin: 0 auto 24px;
}

.service-card h3 {
    margin-bottom: 14px;

    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.35;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.service-card h3::after,
.revision-card h3::after {
    content: "";

    display: block;

    width: 95px;
    height: 1px;
	
    margin: 16px auto 0;

    background: linear-gradient(
        to right,
        transparent,
        rgba(216,173,97,.85),
        transparent
    );
}

.service-price {
    margin: 0 0 18px;

    color: var(--myoo-gold);

    font-size: 1.45rem;
    line-height: 1.2;
}

.service-card p,
.revision-card p {
    font-size: 1.05rem;
    line-height: 1.65;

    color: rgba(255,255,255,.86);
}


/* =========================================================
   REVISIONE TESTI
========================================================= */

.services-revision {
    padding: 35px 0 60px;
}

.revision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.revision-card {
    padding: 0 34px 10px;
}

.revision-card + .revision-card {
    border-left: 1px solid rgba(216,173,97,.55);
}

.revision-card img {
    display: block;

    width: 52px;
    height: 52px;
    object-fit: contain;

    margin: 0 auto 20px;
}

.revision-card h3 {
    margin-bottom: 14px;

    text-align: center;

    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.35;

    text-transform: uppercase;
    letter-spacing: .1em;
}

.revision-card h3 span {
    display: inline-block;

    margin-top: 4px;

    color: var(--myoo-gold);

    font-size: 1.55rem;
}

.revision-card .service-price {
    text-align: center;
}

.revision-card p {
    margin-bottom: 22px;

    text-align: left;
}


/* =========================================================
   CHIUSURA / CONTATTO
========================================================= */

.services-contact {
    padding: 20px 0 90px;
    text-align: center;
}

.services-contact .services-divider {
    margin-bottom: 32px;
}

.services-contact h2 {
    margin-bottom: 12px;

    color: var(--myoo-gold);

    font-size: 1.75rem;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.services-contact p {
    margin-bottom: 26px;

    font-size: 1.15rem;
    line-height: 1.6;

    color: rgba(255,255,255,.86);
}


/* =========================================================
   PULSANTE OUTLINE
========================================================= */

.services-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 260px;
    min-height: 52px;
    padding: 12px 28px;

    border: 2px solid var(--myoo-gold);
    background: transparent;

    color: var(--myoo-gold);

    font-family: var(--font-title);
    font-size: .98rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease;
}

.services-button:hover {
    color: #17110a;
    background: linear-gradient(180deg, #d8ad61 0%, #b88438 100%);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .services-header h1 {
        font-size: 2.8rem;
    }

    .service-card {
        padding: 38px 30px;
    }

    .revision-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .revision-card {
        padding: 0;
        border-left: none !important;
    }

    .revision-card + .revision-card {
        padding-top: 42px;
        border-top: 1px solid rgba(216,173,97,.35);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {


    .services-header {
        padding: 65px 0 45px;
    }

    .services-header h1 {
        font-size: 2.15rem;
    }

    .services-header h2 {
        font-size: 1.35rem;
    }

    .services-header p {
        font-size: 1.08rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 34px 22px;

        border-right: none !important;
    }

    .service-card + .service-card {
        border-top: 1px solid rgba(216,173,97,.35);
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2) {
        border-bottom: none;
    }

    .services-section-title {
        font-size: 1.35rem;
    }

    .services-contact h2 {
        font-size: 1.35rem;
    }

    .services-button {
        width: 100%;
        max-width: 320px;
    }

}