
   /* ==============================
   Suite Page - Studio Graffiti
============================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.suite-area-sg {
    position: relative;
    padding-top: 110px;
    padding-bottom: 130px;
    background-color: #171717;
    overflow: hidden;
    z-index: 2;
}

.suite-area-sg::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background-color: rgba(220, 45, 23, 0.13);
    pointer-events: none;
}

.suite-area-sg::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -220px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

/* ==============================
   Header testo SEO
============================== */

.suite-header-sg {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin-bottom: 64px;
}

.suite-header-sg .section-subtitle {
    display: inline-block;
    margin-bottom: 24px;
    color: #dc2d17;
    font-weight: 700;
}

.suite-header-sg .section-title {
    margin-bottom: 30px;
    color: #ffffff;
}

.suite-intro-sg {
    max-width: 920px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 19px;
    line-height: 1.65;
}

.suite-intro-sg:last-child {
    margin-bottom: 0;
}

/* ==============================
   Grid
============================== */

.suite-grid-sg {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 100%;
}

/* ==============================
   Card
============================== */

.suite-card-sg {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    border-radius: 28px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.suite-card-sg:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 45, 23, 0.75);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

/* ==============================
   Immagini intere, non tagliate
============================== */

.suite-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    min-height: 280px;
    padding: 0;
    margin: 0;
    background-color: var(--suite-accent, #dc2d17);
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.suite-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0) 55%,
        rgba(17, 17, 17, 0.10) 100%
    );
    pointer-events: none;
}

.suite-card-image img {
    position: relative;
    z-index: 1;
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    padding: 0;
    margin: 0;

    transition: none;
    transform: none;
}

/* Nessuno zoom immagine al rollover */
.suite-card-sg:hover .suite-card-image img {
    transform: none;
}

/* ==============================
   Contenuto card
============================== */

.suite-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    padding: 32px 28px 28px;
}

.suite-card-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background-color: rgba(220, 45, 23, 0.08);
    color: #dc2d17;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.suite-card-content h3 {
    margin-bottom: 18px;
    color: #111111;
    font-size: 31px;
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 800;
    overflow-wrap: break-word;
}

.suite-card-content p {
    margin-bottom: 24px;
    color: #555555;
    font-size: 16px;
    line-height: 1.58;
}

.suite-card-content ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.suite-card-content ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 23px;
    color: #333333;
    font-size: 15px;
    line-height: 1.4;
}

.suite-card-content ul li:last-child {
    margin-bottom: 0;
}

.suite-card-content ul li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #dc2d17;
}

/* ==============================
   Bottone card
============================== */

.suite-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    margin-top: auto;
    padding: 13px 18px;
    border-radius: 999px;
    background-color: #171717;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.suite-card-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.suite-card-link svg {
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.suite-card-link:hover {
    background-color: #dc2d17;
    color: #ffffff;
}

.suite-card-link:hover svg {
    transform: translateX(4px);
}

/* ==============================
   Box finale
============================== */

.suite-bottom-box-sg {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 70px;
    padding: 42px 44px;
    border-radius: 30px;
    background-color: #ffffff;
}

.suite-bottom-box-sg span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #dc2d17;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.suite-bottom-box-sg h3 {
    margin-bottom: 0;
    color: #111111;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.suite-bottom-box-sg p {
    margin-bottom: 0;
    color: #555555;
    font-size: 18px;
    line-height: 1.6;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 1399px) {
    .suite-grid-sg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }

    .suite-card-image {
        height: 270px;
        min-height: 270px;
    }

    .suite-bottom-box-sg {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 991px) {
    .suite-area-sg {
        padding-top: 90px;
        padding-bottom: 110px;
    }

    .suite-card-image {
        height: 250px;
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .suite-area-sg {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .suite-header-sg {
        margin-bottom: 42px;
    }

    .suite-intro-sg {
        font-size: 16px;
        line-height: 1.6;
    }

    .suite-grid-sg {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .suite-card-sg {
        border-radius: 22px;
    }

    .suite-card-image {
        height: 230px;
        min-height: 230px;
        padding: 0;
    }

    .suite-card-image img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
        transform: none;
    }

    .suite-card-content {
        padding: 26px 22px 22px;
    }

    .suite-card-content h3 {
        font-size: 27px;
        line-height: 1;
    }

    .suite-card-content p {
        font-size: 16px;
    }

    .suite-card-content ul li {
        font-size: 14px;
    }

    .suite-card-link {
        min-height: 46px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .suite-bottom-box-sg {
        margin-top: 46px;
        padding: 30px 24px;
        border-radius: 22px;
    }

    .suite-bottom-box-sg h3 {
        font-size: 27px;
        line-height: 1.05;
    }

    .suite-bottom-box-sg p {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .suite-card-image {
        height: 210px;
        min-height: 210px;
    }

    .suite-card-content {
        padding: 24px 20px 20px;
    }

    .suite-card-content h3 {
        font-size: 25px;
    }
}
  