/* ============ Hero Installazione ============ */
.installazione-hero-section {
    background: #FFF;
    padding: 30px 0 60px 0;
}

.installazione-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
    background: #FFF;
    color: #2063C8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.share-btn:hover {
    background: #F5F5F5;
}

.installazione-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.installazione-hero-content {
    flex: 0 0 45%;
    max-width: 45%;
}

.installazione-hero-content h1 {
    color: #2E2E2E;
    font-family: "Abhaya Libre";
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;
    margin-bottom: 24px;
}

.installazione-hero-content p {
    color: #636363;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 32px;
}

.installazione-hero-content .btn-outline {
    border-color: #1B1E3D;
    color: #1B1E3D;
}

.installazione-hero-content .btn-outline:hover {
    background: #1B1E3D;
    color: #FFF;
}

.installazione-hero-image {
    flex: 1;
}

.installazione-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* ============ Contenuto testuale ============ */
.installazione-content-section {
    background: #FFF;
    padding: 20px 0;
}

.installazione-content-section h2 {
    color: #2E2E2E;
    font-family: "Open Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.installazione-content-section p {
    color: #2E2E2E;
    font-family: "Open Sans";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 24px;
}

.installazione-content-section p:last-child {
    margin-bottom: 0;
}

.installazione-section-alt {
    background: #f4f4f4;
}

.installazione-content-section-alt {
    background: #f4f4f4;
    padding: 20px 0;
}

.installazione-content-section-alt h2 {
    color: #2E2E2E;
    font-family: "Open Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.installazione-content-section-alt p {
    color: #2E2E2E;
    font-family: "Open Sans";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 24px;
}

.installazione-content-section-alt p:last-child {
    margin-bottom: 0;
}

.share-btn {
    position: relative;
}

.share-btn-feedback {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    transform: translateY(-50%);
    background: #1B1E3D;
    color: #FFF;
    font-family: "Open Sans";
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.share-btn.copied .share-btn-feedback {
    opacity: 1;
}

/* ============================================= */
/* DARK MODE — Pagina Installazioni               */
/* ============================================= */

body.dark-mode .breadcrumb {
    color: #FFF;
}

body.dark-mode .breadcrumb a {
    color: #FFF;
}

body.dark-mode .installazione-hero-section {
    background: #0F192E;
}

body.dark-mode .installazione-hero-content h1 {
    color: #FFF;
}

body.dark-mode .installazione-hero-content p {
    color: #C7D0DE;
}

body.dark-mode .installazione-hero-content .btn-outline {
    border-color: #FFF;
    color: #FFF;
}

body.dark-mode .installazione-hero-content .btn-outline:hover {
    background: #FFF;
    color: #0F192E;
}

body.dark-mode .installazione-content-section {
    background: #0F192E;
}

body.dark-mode .installazione-content-section-alt {
    background: #1F2E47;
}

body.dark-mode .installazione-content-section h2 {
    color: #FFF;
}

body.dark-mode .installazione-content-section p {
    color: #C7D0DE;
}

body.dark-mode .installazione-content-section-alt h2 {
    color: #FFF;
}

body.dark-mode .installazione-content-section-alt p {
    color: #C7D0DE;
}

body.dark-mode .share-btn {
    background: #27354A;
    border-color: #3A4A63;
    color: #FFF;
}

body.dark-mode .share-btn:hover {
    background: #32405A;
}

body.dark-mode .installazione-section-alt {
    background: #1F2E47;
}

/* Responsive */
@media (max-width: 1024px) {
    .installazione-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .installazione-hero-content {
        max-width: 100%;
    }

    .installazione-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 540px) {
    .installazione-hero-content h1 {
        font-size: 30px;
    }

    .installazione-content-section h2 {
        font-size: 26px;
    }
}