:root {
    --container-width: 1340px;
    --container-padding: 40px;
}

html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-black);
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

h2 p {
  margin: 0;
}
.ev-container {
    width: min(100% - var(--container-padding) * 2, var(--container-width));
    margin-inline: auto;
}

.ev-access-page {
}

.ev-access-hero {
    padding: 50px 0 90px;
}

.ev-access-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 46px;
}

.ev-access-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    background: var(--color-beige);
}

.ev-access-content {
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ev-access-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.18;
    font-weight: 700;
    margin: 0 0 15px;
}

.ev-access-content p {
    max-width: 420px;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 64px;
    color: #404040;
}

.ev-access-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ev-btn {
    min-width: 132px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
}

.ev-btn-primary {
    background: var(--color-red);
    color: #fff;
    border: 1px solid var(--color-red);
}

.ev-btn-outline {
    color: var(--color-black);
    border: 1px solid var(--color-black);
    background: transparent;
}

.ev-access-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {

    .ev-access-hero {
        padding: 48px 0 0;
    }

    .ev-access-title {
        padding-inline: 26px;
    }

    .ev-access-card {
        display: block;
        width: 100%;
    }

    .ev-access-content {
        padding: 38px 26px 52px;
    }



    .ev-access-content p {
        max-width: none;
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 48px;
    }

    .ev-access-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .ev-access-actions span {
        text-align: center;
    }

    .ev-btn {
        width: 100%;
        min-height: 42px;
    }

    .ev-access-image {
        width: 100%;
    }

    .ev-access-image img {
        width: 100%;
        height: 413px;
        object-fit: cover;
        display: block;
    }
}
.ev-site-header {
    background: #fff;
}

.ev-site-header__top {
    border-bottom: 1px solid #D4D4D4;
}

.ev-site-header__top-inner {
    min-height: 73px;
    display: flex;
    align-items: center;
}

.ev-site-header__logo {
    display: inline-flex;
}

.ev-site-header__logo img {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
}

.ev-site-header__nav {
    background: #fff;
}

.ev-site-header__nav-inner {
    min-height: 124px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 16px;
}

.ev-main-nav {
    display: flex;
    align-items: center;
    gap: 45px;
    padding-top: 10px;
}

.ev-main-nav a {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.12em;
    color: var(--color-black);
    text-decoration: none;
}
.ev-main-nav a:hover {color: #0D0D0D}

.ev-logout-btn {
    min-width: 190px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1d1d1d;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}
.ev-site-header__top-inner,
.ev-site-header__nav-inner {
    width: min(100% - var(--container-padding) * 2, var(--container-width));
    margin-inline: auto;
}

@media (max-width: 900px) {
    .ev-site-header__top {
        min-height: 96px;
        padding: 0 24px;
    }

    .ev-site-header__logo img {
        width: 240px;
    }

    .ev-site-header__nav {
        min-height: auto;
        padding: 24px;
        flex-direction: column;
        gap: 24px;
    }

    .ev-main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ev-main-nav a {
        font-size: 18px;
    }

    .ev-logout-btn {
        min-width: 150px;
        min-height: 48px;
        font-size: 18px;
    }
}
.ev-site-footer {
    background: #fff;
    margin-top: 4rem;
}

.ev-site-footer__top {
    border-bottom: 1px solid var(--color-black);
}

.ev-site-footer__top-inner {
    min-height: 90px;
    display: grid;
    grid-template-columns: 1fr 0.7fr 1.8fr auto;
    align-items: center;
    gap: 80px;
}

.ev-site-footer__title {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
    margin: 0;
}

.ev-site-footer a,
.ev-site-footer p {
    font-size: 16px;
    line-height: 1.2;
    color: #404040;
    letter-spacing: 0.5px;
}

.ev-site-footer p {
    margin: 0;
}

.ev-site-footer__socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ev-site-footer__socials img {
    width: 22px;
    height: 22px;
    display: block;
}

.ev-site-footer__bottom-inner {
    min-height: 150px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: initial;
    gap: 50px;
}

.ev-site-footer__building {
    width: 270px;
    max-width: 100%;
    height: auto;
    display: block;
}

.ev-site-footer__links {
    display: flex;
    align-items: center;
    gap: 34px;
}
.ev-site-footer__links a {font-size: 15px}
.ev-site-footer__links--right {
    justify-content: flex-end;
}

.ev-site-footer__links a {
    text-decoration: none;
}

.ev-access-actions span {
  font-size: 14px;
  color: #404040;
}

.ev-site-footer__bottom {
  margin-top: 3rem;
}
@media (max-width: 900px) {
    .ev-site-footer__top-inner,
    .ev-site-footer__bottom-inner {
        min-height: auto;
        padding-block: 40px;
        grid-template-columns: 1fr;
        text-align: left;
    }

    .ev-site-footer__links,
    .ev-site-footer__links--right {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .ev-site-footer__building {
        width: 260px;
    }
}
@media (max-width: 768px) {
    .ev-site-footer {
        text-align: center;
        margin-top: 1rem;
    }

    .ev-site-footer__top-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 28px;
        padding-block: 48px;
        padding-bottom: 40px !important;
        padding-top: 50px !important;
    
    }

    .ev-site-footer a,
    .ev-site-footer p {
 
    text-align: center;
    }
    .ev-site-footer__socials {
        justify-content: center;
 
    }

    .ev-site-footer__socials img {

    }

    .ev-site-footer__bottom-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 22px;
        padding-block: 0px 72px;
    }

    .ev-site-footer__building {
        order: 1;
        width: 220px;
    }

    .ev-site-footer__links--left {
        order: 2;
    }

    .ev-site-footer__links--right {
        order: 3;
    }

    .ev-site-footer__links,
    .ev-site-footer__links--right {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 28px;
    }
    .ev-site-footer__bottom {
  margin-top: 1rem;
}
    .ev-site-footer__links a {
  font-size: 13px;
}
}

.ev-mobile-toggle {
    display: none;
}

.ev-mobile-menu {
    display: none;
}

@media (max-width: 900px) {

   .ev-site-header__top-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ev-site-header__top-inner.has-mobile-toggle {
    justify-content: space-between;
}

    .ev-site-header__logo img {
        width: 220px;
    }

    .ev-mobile-toggle {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
    }

    .ev-mobile-toggle img {
        width: 100%;
        height: auto;
        display: block;
    }

    .ev-site-header__nav {
        display: none;
    }

    .ev-mobile-menu {
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 999;
        padding: 120px 32px 40px;
        display: none;
    }

    .ev-mobile-menu.is-open {
        display: block;
    }

    .ev-mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .ev-mobile-nav a {
        font-size: 28px;
        line-height: 1.1;
        color: var(--color-black);
        text-decoration: none;
    }

    .ev-mobile-logout {
        margin-top: 32px;
        color: var(--color-red);
    }
}
.ev-site-header__top-inner {
    justify-content: flex-start;
}

.ev-site-header__top-inner.has-mobile-toggle {
    justify-content: space-between;
}
@media (max-width: 768px) {
    .ev-site-header__top {
        min-height: 52px;
        padding: 0;
    }

    .ev-site-header__top-inner {
        width: 100%;
        min-height: 52px;
        padding-inline: 16px;
    }

    .ev-site-header__logo img {
        width: 163px;
    }
}
.ev-btn {
    width: fit-content;
    min-width: 132px;
    min-height: 40px;
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1;
    text-decoration: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.ev-btn-primary {
    background: var(--color-red);
    border: 1px solid var(--color-red);
    color: #fff;
}

.ev-btn-primary:hover {
    background: #8f0f07;
    border-color: #8f0f07;
    color: #fff;
}

.ev-btn-outline {
    background: transparent;
    border: 1px solid var(--color-black);
    color: var(--color-black);
}

.ev-btn-outline:hover {
    background: #444444;
    border-color: #444444;
    color: #fff;
}

.ev-btn-dark {
    background: #1d1d1d;
    border: 1px solid #1d1d1d;
    color: #fff;
}

.ev-btn-dark:hover {
    background: #444444;
    border-color: #444444;
    color: #fff;
}
@media (max-width: 768px) {

    .ev-access-actions .ev-btn {
        width: 100%;
    }

}
.ev-auth-section {
    padding: 50px 0 150px;
}

.ev-auth-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-beige);
}

.ev-auth-content {
    padding: 70px 100px;
}

.ev-auth-content h1 {
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 24px;
}

.ev-auth-content > p {
    max-width: 390px;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 56px;
    color: #404040;
}

.ev-auth-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ev-auth-form {
    max-width: 430px;
}

/* Ultimate Member reset leggero */
.ev-auth-form .um {
    margin: 0 !important;
    max-width: none !important;
}

.ev-auth-form .um-field {
    padding: 0 0 28px !important;
}

.ev-auth-form .um-field-label label {
    font-size: 13px !important;
    letter-spacing: 0.08em;
    color: #404040;
}

.ev-auth-form input[type="text"],
.ev-auth-form input[type="email"],
.ev-auth-form input[type="password"] {
    border: 0 !important;
    border-bottom: 1px solid #9b7c75 !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 8px 0 !important;
    font-size: 16px !important;
}

.ev-auth-form .um-button {
    width: 100% !important;
    min-height: 40px !important;
    background: #1d1d1d !important;
    color: #fff !important;
    border-radius: 0 !important;
}
@media (max-width: 768px) {
    .ev-auth-section {
        padding: 0;
    }

    .ev-auth-section .ev-container {
        width: 100%;
    }

    .ev-auth-card {
        grid-template-columns: 1fr;
    }

    .ev-auth-content {
        padding: 48px 26px;
    }

    .ev-auth-content h1 {
        font-size: 34px;
    }

    .ev-auth-image {
        order: 2;
    }
}
.ev-auth-form .um-row._um_row_2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    row-gap: 0px !important;
    margin-bottom: 0 !important;
}

.ev-auth-form .um-row._um_row_2 .um-col-121,
.ev-auth-form .um-row._um_row_2 .um-col-122 {
    width: auto !important;
    float: none !important;
}
@media (max-width: 768px) {
    .ev-auth-form .um-row._um_row_2 {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
}
.ev-auth-form .um-col-alt .um-right,
.ev-auth-form .um-button.um-alt {
    display: none !important;
}

.ev-auth-form .um-col-alt .um-left {
    width: 100% !important;
    float: none !important;
}
/* LOGIN */

.ev-login-box {
    max-width: 1340px;
    margin: 48px auto 120px;
    background: #F5F4EF;
    padding: 100px 120px;
}

.ev-login-form-wrap {
    max-width: 460px;
    margin: 0 auto;
}

.ev-login-title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1;
    text-align: center;
    margin-bottom: 24px;
}

.ev-login-divider {
    width: 48px;
    height: 1px;
    background: #B08C82;
    margin: 0 auto 64px;
}

/* UM LOGIN */

.ev-login-page .um {
    max-width: 100% !important;
}

.ev-login-page .um-form input[type="text"],
.ev-login-page .um-form input[type="password"] {
    border: none !important;
    border-bottom: 1px solid #B08C82 !important;
    background: transparent !important;
    padding: 0 0 14px !important;
    height: auto !important;
    font-size: 16px !important;
    box-shadow: none !important;
}

.ev-login-page .um-field-label label {
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ev-login-page .um-button {
    width: 100% !important;
    height: 56px !important;
    background: #191919 !important;
    border: none !important;
    color: #fff !important;
    font-size: 18px !important;
    transition: .3s ease;
}

.ev-login-page .um-button:hover {
    background: #4D4D4D !important;
}

.ev-login-page .um-login-forgot-pw {
    text-align: center;
    margin-top: 28px;
}

.ev-login-page .um-login-forgot-pw a {
    color: #191919;
    text-decoration: none;
}

/* MOBILE */

@media (max-width: 768px) {

    .ev-login-box {
        margin: 0;
        padding: 64px 24px;
    }

    .ev-login-title {
        font-size: 44px;
    }

}
/* LOGIN - Ultimate Member override */

.ev-login-box {
    max-width: 1340px;
    min-height: 560px;
    margin: 48px auto 120px;
    background: var(--color-beige);
    padding: 100px 40px 80px;
}

.ev-login-form-wrap {
    max-width: 500px;
    margin: 0 auto;
}

.ev-login-title {
    font-size: 28px;
    line-height: 1.05;
    font-weight: bold;
    text-align: center;
    margin: 0 0 22px;
    letter-spacing: -0.5px;
}

.ev-login-divider {
    width: 45px;
    height: 1px;
    background: #9b7c75;
    margin: 0 auto 64px;
}

body .ev-login-page .um.um-login {
    max-width: none !important;
    margin: 0 !important;
}

body .ev-login-page .um.um-login .um-field {
    padding: 0 0 32px !important;
}
body .ev-login-page .um.um-login .um-field-label {
    margin: 0 0 12px !important;
}

body .ev-login-page .um.um-login .um-field-label label {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: #404040 !important;
}

body .ev-login-page .um.um-login form input.um-form-field {
    width: 100% !important;
    height: 34px !important;
    border: 0 !important;
    border-bottom: 1px solid #9b7c75 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body .ev-login-page .um.um-login .um-col-alt {
    margin-top: 0px !important;
}

body .ev-login-page .um.um-login .um-left,
body .ev-login-page .um.um-login .um-half {
    width: 100% !important;
    float: none !important;
}

body .ev-login-page .um.um-login .um-right,
body .ev-login-page .um.um-login .um-button.um-alt,
body .ev-login-page .um.um-login .um-field-checkbox {
    display: none !important;
}

body .ev-login-page .um.um-login .um-button {
    width: 100% !important;
    min-height: 44px !important;
    background: #1d1d1d !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-size: 17px !important;
    box-shadow: none !important;
}

body .ev-login-page .um.um-login .um-link-alt {
    display: block !important;
    margin-top: 28px !important;
    text-align: center !important;
    color: #404040 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}
.um-row._um_row_1 {
  margin: 0 0 0 0 !important;
}

@media (max-width: 768px) {
    .ev-login-box {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 64px 26px 72px;
    }

    .ev-login-form-wrap {
        max-width: none;
    }

    .ev-login-title {
        font-size: 34px;
    }
}
/* MOBILE MENU */

.ev-mobile-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1201;
}

.ev-mobile-toggle img {
    width: 24px;
    height: 24px;
    display: block;
    transition: transform .25s ease;
}

/* trasformazione in X */

.ev-mobile-toggle.is-open img {
    transform: rotate(45deg);
}

/* menu mobile */

.ev-mobile-menu {
    display: none;
}

@media (max-width: 900px) {

    .ev-mobile-toggle {
        display: inline-flex;
    }

    .ev-site-header__nav {
        display: none;
    }

    .ev-mobile-menu {
        position: fixed;
        inset: 0;
        background: #F5F4EF;
        z-index: 1200;

        padding:
            80px 22px 40px;

        display: flex;
        flex-direction: column;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity .25s ease,
            visibility .25s ease;
    }

    .ev-mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .ev-mobile-nav {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .ev-mobile-nav a {
        font-family: var(--font-heading);
        font-size: 19px;
        line-height: 1.05;
        color: #1d1d1d;
        text-decoration: none;
        padding: 0 0 19px;
        margin-bottom: -6px;
        border-bottom: 1px solid #D8D3CC;
    }
    .ev-mobile-nav a.is-active {border-bottom: 1px solid #C80000}

    /* logout CTA */

    .ev-mobile-logout {
        margin-top: auto;
        width: 100%;
        min-height: 46px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: #1d1d1d !important;
        color: #fff !important;

        border: 0;
        text-decoration: none;

        font-size: 18px !important;
        font-family: var(--font-body) !important;

        padding: 0 24px !important;
    }

    .ev-mobile-logout:hover {
        background: #444;
    }
}

/* blocca scroll */

body.ev-menu-open {
    overflow: hidden;
}
body.ev-menu-open {
    overflow: hidden;
}
.ev-private-hero {
    padding: 0px 0 20px;
}

.ev-private-eyebrow {
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #404040;
    margin: 0 0 18px;
}

.ev-private-title {
    font-size: 50px;
    line-height: 0.8;
    font-weight: 700;
    margin: 0px 0 15px;
}

.ev-private-intro {
    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1.25;
    margin: 0;
    color: #404040;
    font-weight: bold;
}

.ev-category-section {
    padding: 0 0 40px;
}

.ev-category-grid {
    background: var(--color-beige);
    padding: 56px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.ev-category-card {
    display: block;
    color: var(--color-black);
    text-decoration: none;
}

.ev-category-card__image {
    margin: 0 0 24px;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
}

.ev-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ev-category-card__body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 114px;
    align-items: start;
}

.ev-category-card__body h2 {
    font-size: 28px;
    line-height: 1.08;
    font-weight: 700;
    margin: 0;
}

.ev-category-card__body span {
    width: 15px;
    height: 20px;
    display: block;
    position: relative;
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 0;
}

/* linea */

.ev-category-card__body span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 2px;
    background: #5D3F3B;
    transform: translateY(-50%);
}

/* punta */

.ev-category-card__body span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 16px;
    border-top: 2px solid #5D3F3B;
    border-right: 2px solid #5D3F3B;
    transform: translateY(-50%) rotate(45deg);
}
/* =========================================================
   AREA RISERVATA MOBILE
========================================================= */

@media (max-width: 768px) {

    .ev-private-page {
        overflow: hidden;
    }

    .ev-private-hero {
        padding: 48px 0 0;
    
    }



    .ev-private-eyebrow {
        font-size: 12px;
        letter-spacing: .14em;
        margin-bottom: 16px;
        margin-top: 2rem;
    }

    .ev-private-title {
        font-size: 36px;
        line-height: .92;
        letter-spacing: -0.04em;
        margin-bottom: 18px;
    
    }
   

    .ev-private-intro {
        font-size: 26px;
        line-height: 1.02;
        letter-spacing: -0.03em;
        max-width: 320px;
    
    }

    /* SECTION */

    .ev-category-section {
        padding: 10px 0 20px;
    
    }

    .ev-category-section .ev-container {
        width: 100%;
        padding: 0;
    }

    .ev-category-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 22px 16px 40px;
    }

    /* CARD */

    .ev-category-card {
        display: block;
    }

    .ev-category-card__image {
        aspect-ratio: aspect-ratio: 1.28 / 1;
        margin-bottom: 14px;
    }

    .ev-category-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ev-category-card__body {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 18px;
        align-items: start;
    }

    .ev-category-card__body h2 {
        font-size: 20px;
        line-height: 1.05;
        letter-spacing: -0.02em;
    }

    .ev-category-card__body span {

        transform: translateY(2px);
        height: 10px
    }
    .ev-category-card__body h2 {
        font-size: 17.5px;
        line-height: 1.3;
        font-weight: 700;
        margin: 0;
    
    }

}
/* =========================================================
   PAGINA - I NOSTRI PARTNER
========================================================= */

.ev-partners-hero {
    padding: 0 0 42px;
}

.ev-partners-title {
font-size: 50px;
  line-height: 1;
  font-weight: 700;
  margin: 0px 0 15px;
}

.ev-partners-intro {
font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.25;
  color: #404040;
  font-weight: bold;
}
.ev-partners-intro p {margin: 0}
.ev-partners-list {
    padding: 0 0 20px;

}

.ev-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* CARD */

.ev-partner-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 210px;
    background: #ddd;
    text-decoration: none;
    color: #fff;
}

.ev-partner-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

/* overlay */

.ev-partner-card__overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 34px;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,.18) 42%,
            rgba(0,0,0,.62) 100%
        );
}

/* titolo */

.ev-partner-card__overlay h2 {
    max-width: 320px;
    margin: 0;

    font-size: 32px;
    line-height: .98;
    letter-spacing: -0.03em;
    font-weight: 700;

    color: #fff;
}

/* hover */

.ev-partner-card:hover img {
    transform: scale(1.04);
}
.ev-partner-card__overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding-left: 0;
}

.ev-partner-card__overlay::before {
    content: '';

    position: absolute;
    top: 50%;
    left: 25%;

    transform: translate(-50%, -50%);

    width: 50%;
    height: 100%;

    background: rgba(55, 55, 55, 0.25);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(14px);
}

.ev-partner-card__overlay h2 {
    position: absolute;

    top: 50%;
    left: 25%;

    transform: translate(-50%, -50%);

    z-index: 2;

    width: 45%;

    margin: 0;

    color: #fff;

    text-align: center;

    font-size: 28px;
    line-height: 1.1;
    font-weight: bold;
}

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

@media (max-width: 768px) {

    .ev-partners-page {
        overflow: hidden;
    }

    .ev-partners-hero {
        padding: 18px 0 34px;
    }

    .ev-partners-hero .ev-container,
    .ev-partners-list .ev-container {
        width: 100%;
        padding-inline: 16px;
    }

    .ev-partners-title {
        font-size: 36px;
        letter-spacing: -0.04em;
        margin-bottom: 18px;
    
    }

    .ev-partners-intro {

        font-size: 28px;
        line-height: 1.02;
        letter-spacing: -0.03em;
    }
    .ev-partners-intro p {margin: 0}
    /* GRID */

    .ev-partners-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* CARD */

    .ev-partner-card {
        min-height: 180px;
    }

    .ev-partner-card__overlay {
        padding: 22px;
    }

    .ev-partner-card__overlay h2 {
        max-width: 240px;
        font-size: 26px;
        line-height: .95;
    }
	   .ev-partner-card__overlay::before {
        width: 56%;
        height: 100%;
        left: 28%;
    }

    .ev-partner-card__overlay h2 {
        left: 28%;
        width: 44%;
        font-size: 28px;
    }

}
/* SINGLE PARTNER */

.ev-partner-single__hero {
    padding: 0 0 48px;
}

.ev-partner-single__title {
    font-size: 50px;
    line-height: .95;
    margin: 0 0 8px;
}

.ev-partner-single__subtitle {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 25px;
    font-weight: 700;
    color: #404040;
}

.ev-partner-single__description {
    max-width: 1010px;
    font-size: 16px;
    line-height: 1.65;
    color: #404040;
    text-align: justify;
}
.ev-partner-single__description p {margin: 0}
.ev-partner-gallery {
    padding: 0 0 32px;
}

.ev-partner-gallery__grid {
    display: grid;
    grid-template-columns: 2fr .9fr;
    gap: 24px;
}

.ev-partner-gallery figure {
    margin: 0;
    overflow: hidden;
}

.ev-partner-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ev-partner-gallery__big {
    min-height: 440px;
}

.ev-partner-gallery__side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.ev-partner-red-line {
    width: 2px;
    height: 80px;
    background: var(--color-red);
    margin: 42px auto 0;
}



.ev-partner-info__box {
    background: var(--color-beige);
    padding: 62px 78px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 102px;
    align-items: flex-start;
}

.ev-partner-info__image {
    margin: 0;
}

.ev-partner-info__image img {
    width: 100%;
    display: block;
}

.ev-partner-info__content {
    max-width: 480px;
}

.ev-partner-info__item {
    padding: 0 0 22px;
    margin: 0 0 22px;
    border-bottom: 1px solid #D8D3CC;
}

.ev-partner-info__item:last-of-type {
    margin-bottom: 32px;
}
.ev-partner-info__item:last-child {border-bottom: none;margin-bottom: 0;}

.ev-partner-info__item h2 {
    font-size: 28px;
    line-height: 1.05;
    margin: 0 0 8px;
}

.ev-partner-info__item p {
    margin: 0;
    color: #404040;
    font-size: 16px;
    line-height: 1.8;
}

.ev-partner-info__cta {
    width: 100%;
    min-height: 48px;
}
.ev-partner-single__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.ev-partner-single__cta {
    min-width: 250px;
    min-height: 50px;
}

/* MOBILE */

@media (max-width: 768px) {

    .ev-partner-single__hero {
        padding: 18px 0 34px;
    }

    .ev-partner-single__hero .ev-container,
    .ev-partner-gallery .ev-container,
    .ev-partner-info .ev-container {
        width: 100%;
        padding-inline: 16px;
    }

    .ev-partner-single__title {
        font-size: 38px;

    
    }

    .ev-partner-single__subtitle {
        font-size: 28px;
        line-height: 1.05;
    }

    .ev-partner-gallery__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ev-partner-gallery__big {
        min-height: 280px;
    }

    .ev-partner-gallery__side {
        grid-template-rows: none;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ev-partner-gallery__side figure {
        aspect-ratio: 1.2 / 1;
    }

    .ev-partner-red-line {
        height: 50px;
        margin-top: 34px;
    }

    .ev-partner-info {
        padding-bottom: 70px;
    }

    .ev-partner-info__box {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 34px;
    }

    .ev-partner-info__content {
        max-width: none;
    }

    .ev-partner-info__item h2 {
        font-size: 26px;
    }

}
.ev-main-nav a {
    position: relative;
}

.ev-main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 0;
    height: 1px;
    background: var(--color-red);
    transition: width .25s ease;
}

.ev-main-nav a:hover::after,
.ev-main-nav a.is-active::after {
    width: 100%;
}
/* =========================================
COLLABORAZIONI ESCLUSIVE
========================================= */

.ev-collabs-page {
    /* padding-bottom: 140px; */

}

/* HERO */

.ev-collabs-hero {
    padding: 0 0 44px;
}

.ev-collabs-title {
    max-width: 980px;

  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  margin: 0px 0 15px;

    color: #1D1D1B;
}

/* LISTA */

.ev-collabs-grid {
    display: flex;
    flex-direction: column;
    gap: 43px;
}

/* CARD */

.ev-collab-card {
    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #FCFAF5;
    height: 413px;
}

.ev-collab-card__content {
    padding: 40px 42px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ev-collab-card__content h2 {
    margin: 0 0 16px;

    font-size: 28px;
    line-height: 1.15;
    font-weight: bold;

    color: #404040;
}

.ev-collab-card__content h3 {
    margin: 0px 0 15px;

    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;

    color: #404040;
}

.ev-collab-card__text {
    max-width: 520px;

    margin-bottom: 20px;

    font-size: 16px;
    line-height: 1.35;

    color: #4A4A4A;
}
.ev-collab-card__text p {margin: 0}

.ev-collab-card__btn {
    width: fit-content;
    min-width: 158px;
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 26px;

    background: #C40018;
    color: #fff;

    text-decoration: none;

    transition: opacity .25s ease;
}

.ev-collab-card__btn:hover {
    opacity: .8;
}

.ev-collab-card__image {
    display: block;
    overflow: hidden;
}

.ev-collab-card__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* LINEA ROSSA */
.ev-collab-separator:last-child {display: none}
.ev-collab-separator {
    width: 2px;
    height: 80px;

    margin: 0 auto;

    background: #C40018;
}

/* PAGINAZIONE */

.ev-collabs-pagination {
    margin-top: 40px;

    display: flex;
    justify-content: center;
    gap: 14px;
}

.ev-collabs-pagination a {
    min-width: 138px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border: 1px solid #1D1D1B;

    text-decoration: none;

    font-size: 15px;
    color: #1D1D1B;

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

.ev-collabs-pagination a:hover {
    background: #1D1D1B;
    color: #fff;
}

.ev-private-intro p {
  margin-top: 0;
}

/* MOBILE */

@media (max-width: 768px) {


    .ev-collabs-hero {
        padding: 12px 0 32px;
    
    }

    .ev-collabs-title {
        font-size: 36px;
    
    }

    .ev-collabs-grid {
        gap: 26px;
    }

    .ev-collab-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .ev-collab-card__content {
        order: 2;
        padding: 32px 20px;
    
    }

    .ev-collab-card__content h2 {
        font-size: 26px;
    
    }

    .ev-collab-card__content h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .ev-collab-card__text {
        margin-bottom: 26px;

        font-size: 15px;
        line-height: 1.65;
    }

    .ev-collab-card__image {
        order: 1;
    }

    .ev-collab-card__image img {
        aspect-ratio: 1.2 / 1;
    }

    .ev-collab-separator {
        height: 58px;
    }

    .ev-collabs-pagination {
        flex-direction: row;
        gap: 10px;
    }

    .ev-collabs-pagination a {
        min-width: 120px;
    }
	    .ev-private-hero .ev-container {
        width: 100%;
    }
    .ev-container {
        width: 100%;
        padding-inline: 24px;
        padding: 0px 16px;
    
    }
}
/* SINGLE COLLABORAZIONE */

.ev-collab-single__hero {
    padding: 30px 0 56px;
    text-align: center;
}

.ev-collab-single__title {
    max-width: 720px;
    margin: 0 auto 18px;
    font-size: 58px;
    line-height: .98;
    font-weight: 700;
    letter-spacing: -0.03em;
}
.ev-collab-single__title p {margin: 0}
.ev-collab-single__subtitle {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    color: #404040;
}

.ev-collab-single-gallery {
    padding: 0 0 34px;
}

.ev-collab-single-gallery__grid {
    display: grid;
    grid-template-columns: 2fr .9fr;
    gap: 24px;
}

.ev-collab-single-gallery figure {
    margin: 0;
    overflow: hidden;
}

.ev-collab-single-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ev-collab-single-gallery__big {
    min-height: 460px;
}

.ev-collab-single-gallery__side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}


.ev-collab-single-content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 82px;
    align-items: center;
}

.ev-collab-single-content__text {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.75;
    color: #404040;
}

.ev-collab-single-content__text p {
    margin: 0 0 28px;
}

.ev-collab-single-content__text strong {
    font-weight: 700;
}

.ev-collab-single-content__image {
    margin: 0;
}

.ev-collab-single-content__image img {
    width: 100%;
    display: block;
}

.ev-collab-single__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.ev-collab-single__cta {
    min-width: 250px;
    min-height: 48px;
}

/* MOBILE */

@media (max-width: 768px) {

    .ev-collab-single__hero {
        padding: 18px 0 34px;
        text-align: left;
    }

    .ev-collab-single__hero .ev-container,
    .ev-collab-single-gallery .ev-container,
    .ev-collab-single-content .ev-container {
        width: 100%;
        padding-inline: 16px;
    }

    .ev-collab-single__title {
        max-width: none;
        margin: 0 0 18px;
        font-size: 36px;
    
    }

    .ev-collab-single__subtitle {
        font-size: 24px;
    }

    .ev-collab-single-gallery__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ev-collab-single-gallery__big {
        min-height: 280px;
    }

    .ev-collab-single-gallery__side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        gap: 16px;
    }

    .ev-collab-single-gallery__side figure {
        aspect-ratio: 1.2 / 1;
    }



    .ev-collab-single-content__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ev-collab-single-content__text {
        max-width: none;
        font-size: 15px;
        line-height: 1.65;
    }

    .ev-collab-single__cta-wrap {
        margin-top: 40px;
    }

    .ev-collab-single__cta {
        width: 100%;
    }
}
.ev-collab-gallery-cover {
    position: relative;
}

.ev-collab-gallery-cover__link {
    position: relative;
    display: block;
    overflow: hidden;
}

.ev-collab-gallery-cover__link img {
    width: 100%;
    display: block;
}

.ev-collab-gallery-cover__label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    min-width: 130px;
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.62);
    color: #fff;

    font-size: 18px;
}
.ev-collab-readmore {
    display: none;
}

@media (max-width: 768px) {
    .ev-collab-readmore {
        display: inline-flex;
    }
}
/* MOBILE READ MORE */

@media (max-width: 768px) {

    .ev-collab-single-content__text {
        position: relative;

        max-height: 240px;
        overflow: hidden;

        transition: max-height .4s ease;
    }

    .ev-collab-single-content__text::after {
        content: '';

        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;

        height: 90px;

      background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.82) 45%,
    rgba(255,255,255,.96) 72%,
    #fff 100%
);

        pointer-events: none;

        transition: opacity .3s ease;
    }

    .ev-collab-single-content__text.is-open {
        max-height: 2000px;
    }

    .ev-collab-single-content__text.is-open::after {
        opacity: 0;
    }
.ev-collab-readmore {
    position: absolute;
    left: 50%;
    bottom: -11px;
    transform: translateX(-50%);

    z-index: 3;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(6px);

    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: #1D1D1B;

    cursor: pointer;

    min-width: 140px;
    height: 42px;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.ev-collab-readmore::after {
    content: '';

    position: absolute;
    left: 50%;
    bottom: 11px;

    width: 84px;
    height: 1px;

    background: #C40018;

    transform: translateX(-50%);
}

.ev-collab-readmore:hover {
    opacity: .7;
}

}
.ev-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    margin: 0 0 24px;

    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: .07em;

    color: #1C1C1C;
}

.ev-breadcrumb a,
.ev-breadcrumb span {
    position: relative;
    display: inline-flex;
    align-items: center;

    color: inherit;
    text-decoration: none;
}

.ev-breadcrumb a:not(:last-child),
.ev-breadcrumb span:not(:last-child) {
    margin-right: 14px;
    padding-right: 14px;

    border-right: 2px solid #D8D8D8;
}

.ev-breadcrumb span:last-child {
    font-weight: 700;
}

.ev-breadcrumb a:hover {
    color: var(--color-red);
}

@media (max-width: 768px) {

    .ev-breadcrumb {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 12px;

        margin-bottom: 34px;

        font-size: 13px;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .ev-breadcrumb a,
    .ev-breadcrumb span {
        min-width: 0;
        white-space: nowrap;
    }

    .ev-breadcrumb a:not(:last-child),
    .ev-breadcrumb span:not(:last-child) {
        margin-right: 0;
        padding-right: 12px;
        border-right: 1px solid #D8D8D8;
    }

    .ev-breadcrumb a:nth-child(2),
    .ev-breadcrumb span:nth-child(2) {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ev-breadcrumb a:nth-child(3),
    .ev-breadcrumb span:nth-child(3) {
        display: none;
    }
}	
.ev-site-footer__links a {
    position: relative;

    display: inline-flex;

    color: inherit;
    text-decoration: none;

    transition: color .25s ease;
}

.ev-site-footer__links a::after {
    content: '';

    position: absolute;
    left: 0;
    bottom: -14px;

    width: 0;
    height: 1px;

    background: #1C1C1C;

    transition: width .25s ease;
}

.ev-site-footer__links a:hover::after {
    width: 100%;
}
.ev-partner-card {
    transition:
        opacity .45s ease,
        transform .45s ease,
        max-height .45s ease,
        margin .45s ease,
        padding .45s ease;
}

.ev-partner-card.is-hidden {
    display: none;
}

.ev-partner-card.is-revealed {
    animation: evPartnerReveal .55s ease both;
}

@keyframes evPartnerReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ev-partners-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.ev-partners-loadmore {
    min-width: 280px;
    height: 48px;
    border: 0;
    background: #0D0D0D;
    color: #fff;
    font-family: var(--font-body);
    font-size: 17px;
    cursor: pointer;
}
.ev-collab-card.is-hidden,
.ev-collab-separator.is-hidden {
    display: none;
}

.ev-collab-card.is-revealed,
.ev-collab-separator.is-revealed {
    animation: evCollabReveal .55s ease both;
}

.ev-collabs-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.ev-collabs-loadmore {
    min-width: 220px;
    height: 48px;
    border: 0;
    background: #1C1C1C;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
}

@keyframes evCollabReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* DIVENTA NOSTRO PARTNER */

.ev-become-partner-hero {
    padding: 0 0 44px;
}

.ev-become-partner-title {
    max-width: 980px;
    margin: 0 0 18px;
    font-size: 50px;
    line-height: .95;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.ev-become-partner-intro {
    max-width: 1180px;
    font-family: var(--font-heading);
    font-size: 27px;
  line-height: 1.25;
  color: #404040;
  font-weight: bold;
}

.ev-become-partner-intro p {
    margin: 0;
}

.ev-become-partner-form-intro {
    margin: 44px 0 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: #404040;
}

.ev-become-partner-form-section {
    padding: 0 0 30px;
}

.ev-partner-form {
    background: var(--color-beige);
    padding: 62px 58px;
}

.ev-partner-form__grid {
    max-width: 920px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 82px;
    row-gap: 44px;
}

.ev-partner-form__field {
    display: flex;
    flex-direction: column;
}

.ev-partner-form__field--full {
    grid-column: 1 / -1;
}

.ev-partner-form label {
    margin-bottom: 26px;
    font-size: 16px;
    font-weight: 700;
    color: #7A7774;
}

.ev-partner-form input[type="text"],
.ev-partner-form input[type="email"],
.ev-partner-form input[type="tel"],
.ev-partner-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #926F69;
    background: transparent;
    border-radius: 0;
    padding: 0 0 12px;
    font-family: var(--font-body);
    font-size: 16px;
    color: #1C1C1C;
    outline: none;
}

.ev-partner-form textarea {
    resize: vertical;

}

.ev-partner-form input:focus,
.ev-partner-form textarea:focus {
    border-bottom-color: var(--color-red);
}

.ev-partner-form__privacy {
    margin: 48px 0 34px !important;
    display: inline-flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #7A7774 !important;
    display: block;
}

.ev-partner-form__privacy input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #1C1C1C;
}

.ev-partner-form__privacy a {
    color: inherit;
    text-decoration: underline;
}

.ev-partner-form__submit {
    min-width: 150px;
    height: 48px;
}

/* MOBILE */

@media (max-width: 768px) {

    .ev-become-partner-hero {
        padding: 18px 0 34px;
    }

    .ev-become-partner-title {
        font-size: 36px;
    }

    .ev-become-partner-intro {
        font-size: 23px;
        line-height: 1.08;
    }

    .ev-become-partner-form-intro {
        margin-top: 32px;
    }

    .ev-become-partner-form-section {
        padding-bottom: 80px;
    }

    .ev-partner-form {
        padding: 36px 24px;
    }

    .ev-partner-form__grid {
        grid-template-columns: 1fr;
        row-gap: 34px;
    }

    .ev-partner-form label {
        margin-bottom: 18px;
    }

    .ev-partner-form__privacy {
        margin-top: 38px !important;
    }

    .ev-partner-form__submit {
        width: 100%;
    }
}
/* THANK YOU PARTNER */

.ev-thank-partner-page {
    padding-bottom: 140px;
}

.ev-thank-partner-hero {
    padding: 0;
}

.ev-thank-partner-title {
    margin: 0 0 24px;
    font-size: 50px;
    line-height: .95;
    font-weight: 707;
    letter-spacing: -0.02em;
}

.ev-thank-partner-text {
    max-width: 1080px;
    margin: 0 0 70px;
font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.25;
  color: #404040;
  font-weight: bold;
}

.ev-thank-partner-text p {
    margin: 0;
}

.ev-thank-partner-image {
    margin: 0 0 48px;
}

.ev-thank-partner-image img {
    width: 100%;
    height: 210px;
    display: block;
    object-fit: cover;
}

.ev-thank-partner-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ev-thank-partner-btn {
    min-width: 170px;
    height: 48px;
}

.ev-thank-partner-btn--outline {
    border: 1px solid #1C1C1C;
    background: transparent;
    color: #1C1C1C;
}

.ev-thank-partner-btn--outline:hover {
    background: #1C1C1C;
    color: #fff;
}

/* MOBILE */

@media (max-width: 768px) {

    .ev-thank-partner-page {
        padding-bottom: 80px;
    }

    .ev-thank-partner-title {
font-size: 36px;
    line-height: .92;
    letter-spacing: -0.04em;
    }

    .ev-thank-partner-text {
        margin-bottom: 42px;
        font-size: 25px;
        line-height: 1.08;
    }

    .ev-thank-partner-image img {
        height: 180px;
    }

    .ev-thank-partner-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .ev-thank-partner-btn {
        width: 100%;
    }
}
.ev-instagram-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ev-instagram-btn__icon {
    position: relative;

    width: 20px;
    height: 20px;

    display: block;
}

.ev-instagram-btn__icon img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: opacity .25s ease;
}

.ev-instagram-btn__icon--white {
    opacity: 0;
}

.ev-instagram-btn:hover .ev-instagram-btn__icon--black {
    opacity: 0;
}

.ev-instagram-btn:hover .ev-instagram-btn__icon--white {
    opacity: 1;
}
.ev-partner-readmore {
    display: none;
}
.ev-partner-readmore {display: none}
@media (max-width: 768px) {

    .ev-partner-single__description {
        position: relative;
        max-height: 240px;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    .ev-partner-single__description::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 160px;
        background: linear-gradient(
            to bottom,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,.82) 45%,
            rgba(255,255,255,.96) 72%,
            #fff 100%
        );
        pointer-events: none;
        transition: opacity .3s ease;
    }

    .ev-partner-single__description.is-open {
        max-height: 2000px;
    }

    .ev-partner-single__description.is-open::after {
        opacity: 0;
    }

    .ev-partner-readmore {
        position: absolute;
        left: 50%;
        bottom: 6px;
        transform: translateX(-50%);

        z-index: 3;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        min-width: 140px;
        height: 42px;

        padding: 0;
        border: 0;
        background: rgba(255,255,255,.9);
        backdrop-filter: blur(6px);

        font-size: 13px;
        font-weight: 500;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #1D1D1B;

        cursor: pointer;
    }

    .ev-partner-readmore::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 8px;
        width: 84px;
        height: 1px;
        background: #C40018;
        transform: translateX(-50%);
    }

    .ev-partner-single__description.is-open .ev-partner-readmore {
        position: static;
        transform: none;
        margin: 20px auto 0;
        display: flex;
    }
}