:root {
    --font-main: 'Montserrat', sans-serif;
    --color-primary: #1B79B7;
    --color-accent: #8FBF45;
    --color-white: #ffffff;
    --color-dark: #000000;
    --color-link-hover: #A7E6FF;
    --color-primary-hover: #15669B;
    --color-border-soft: #e8e8e8;
    --shadow-card: 0 2px 8px rgba(27, 121, 183, .10);
    --shadow-card-hover: 0 6px 20px rgba(27, 121, 183, .18);
    --page-title-size: 45px;
    --page-title-size-md: 36px;
    --page-title-size-sm: 30px;
    --page-text-size: 17px;
    --page-title-weight: 600;
    --page-title-color: var(--color-primary)
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden
}

.custom-header {
    background: var(--color-primary);
    min-height: 110px;
    display: flex;
    align-items: center
}

.header-container {
    max-width: 1440px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.navbar {
    width: 100%;
    position: relative
}

.navbar-collapse {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 0
}

.site-logo {
    width: 160px;
    height: 63px;
    object-fit: contain
}

.main-menu {
    gap: clamp(12px, 2vw, 40px);
    font-weight: 700
}

    .main-menu .nav-link {
        color: var(--color-white);
        font-size: 16px;
        transition: .3s;
        white-space: nowrap
    }

        .main-menu .nav-link:hover {
            color: var(--color-link-hover)
        }

.active-link {
    color: var(--color-link-hover) !important
}

.facebook-link {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none
}

    .facebook-link i {
        font-size: 40px
    }

.navbar-toggler {
    color: #fff
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1)
}

@media (max-width:1199px) {
    .header-container {
        padding: 20px;
        justify-content: space-between
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        margin-left: 0;
        background: var(--color-primary);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .main-menu {
        gap: 0;
        padding: 20px 0;
        text-align: center;
        justify-content: center
    }

        .main-menu .nav-item {
            margin: 10px 0
        }

    .facebook-link {
        justify-content: center;
        margin-bottom: 20px
    }
}

@media (max-width:576px) {
    .site-logo {
        width: 130px;
        height: auto
    }

    .custom-header {
        min-height: 90px
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    min-width: 320px;
    font-family: var(--font-main)
}

.breadcrumb-section {
    position: relative;
    overflow: hidden
}

.breadcrumb-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.home-hero-section {
    position: relative;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(24px, 4vw, 72px);
    z-index: 2;
    pointer-events: none;
}

.home-hero-title {
    margin: 0;
    color: var(--color-white);
    font-size: 50px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-transform: uppercase;
}

.home-hero-line {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.home-hero-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-style: italic;
}

.page-breadcrumb {
    position: absolute;
    left: clamp(20px, 3vw, 48px);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-weight: 500;
    font-size: clamp(16px, 2.2vw, 30px);
    margin: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    line-height: 1.2;
}

    .page-breadcrumb a {
        color: var(--color-white);
        text-decoration: none;
    }

        .page-breadcrumb a:hover {
            text-decoration: underline;
        }

    .page-breadcrumb .breadcrumb-separator {
        color: var(--color-white);
        font-weight: 600;
    }

@media (max-width: 991.98px) {
    .home-hero-title {
        font-size: clamp(34px, 6vw, 50px);
    }
}

@media (max-width: 575.98px) {
    .page-breadcrumb {
        left: 18px;
        gap: 8px;
        font-size: 15px;
    }

    .home-hero-overlay {
        padding-left: 20px;
    }

    .home-hero-title {
        font-size: 32px;
    }
}

.page-title {
    font-size: var(--page-title-size);
    font-weight: var(--page-title-weight);
    color: var(--page-title-color);
    line-height: 1.1;
    margin-bottom: 50px
}

@media (max-width:991.98px) {
    .page-title {
        font-size: var(--page-title-size-md)
    }
}

@media (max-width:575.98px) {
    .page-title {
        font-size: var(--page-title-size-sm)
    }
}

.site-footer {
    background: var(--color-primary);
    padding: 70px 0 40px;
    color: var(--color-white)
}

.footer-row {
    align-items: flex-start
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px
}

    .footer-item i {
        font-size: 20px;
        line-height: 1;
        height: 24px; /* = 16px * 1.5 (line-height dello span) */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0
    }

    .footer-item span {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5
    }

    .footer-item strong {
        font-weight: 800
    }

    .footer-item a {
        color: var(--color-white)
    }

        .footer-item a:hover {
            color: var(--color-white)
        }

.footer-center {
    text-align: center
}

.footer-policy {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 18px
}

    .footer-policy:hover {
        color: #fff
    }

.footer-credit {
    width: 360px;
    max-width: 100%;
    margin: 50px auto 0;
    background: var(--color-accent);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.footer-credit-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0
}

.footer-credit span {
    font-size: 18px;
    font-weight: 500
}

.footer-credit a,
.footer-credit a:visited,
.footer-credit a:hover,
.footer-credit a:active {
    color: var(--color-white)
}

.footer-credit strong {
    font-weight: 800;
    text-decoration: underline
}

.footer-right {
    text-align: right
}

.footer-company {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5
}

    .footer-company strong {
        font-weight: 800
    }

.footer-area {
    display: inline-block;
    margin-top: 22px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline
}

    .footer-area:hover {
        color: #fff
    }

@media (max-width:1199px) {
    .footer-col {
        text-align: center;
        margin-bottom: 50px
    }

    .footer-item {
        justify-content: center;
        text-align: left
    }

    .footer-right {
        text-align: center
    }
}

@media (max-width:576px) {
    .site-footer {
        padding: 50px 20px
    }

    .footer-item {
        gap: 10px;
        flex-wrap: wrap
    }

        .footer-item i {
            font-size: 17px;
            height: 22.5px
        }

        .footer-item span {
            font-size: 15px;
            white-space: normal
        }

    .footer-policy {
        font-size: 16px
    }

    .footer-credit {
        padding: 10px 20px
    }

        .footer-credit span {
            font-size: 15px
        }

    .footer-company {
        font-size: 16px
    }

    .footer-area {
        font-size: 16px
    }
}
/* ── Global ──────────────────────────────────────────────────── */
body {
    color: var(--color-primary);
    background: var(--color-white);
}

/* ── Section wrapper ─────────────────────────────────────────── */
.servizi-section {
    padding: 50px;
}

/* ── Main title  "I NOSTRI SERVIZI" ─────────────────────────── */

/* ── Service group title (green headings) ────────────────────── */
.service-title {
    font-size: 35px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 20px;
}

/* ── Feature cards layout ───────────────────────────────────── */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
}

.feature-item {
    width: calc(33.333% - 16px);
    min-width: 260px;
    max-width: 330px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 22px;
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .feature-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card-hover);
        border-color: var(--color-primary-hover);
    }

/* ── Feature block header (icon + title) ─────────────────────── */
.feature-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: contain;
}

.feature-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.2;
}

/* ── Body text ───────────────────────────────────────────────── */
.feature-text,
.service-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: 0;
}

    .feature-text strong,
    .service-text strong {
        font-weight: 800;
    }

/* ── Service images (fixed size, never stretch) ──────────────── */
.service-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

.service-img-sm {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

/* ── Separator between service groups ────────────────────────── */
.service-group {
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid var(--color-border-soft);
}

    .service-group:first-of-type {
        border-top: none;
        padding-top: 0;
    }

/* ── Side-by-side layout helpers ─────────────────────────────── */
.img-text-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

    .img-text-row .img-col {
        flex-shrink: 0;
    }

    .img-text-row .text-col {
        flex: 1;
        min-width: 240px;
    }

/* ── Bullet list inside service text ─────────────────────────── */
.service-list {
    list-style: disc;
    padding-left: 22px;
    margin: 0;
}

    .service-list li {
        font-size: 15px;
        font-weight: 400;
        color: var(--color-primary);
        line-height: 1.7;
    }

        .service-list li strong {
            font-weight: 800;
        }

/* ── Responsive tweaks ───────────────────────────────────────── */
@media (max-width: 991.98px) {
    .feature-item {
        width: calc(50% - 12px);
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .service-title {
        font-size: 30px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-text,
    .service-text,
    .service-list li {
        font-size: 15px;
    }

    .img-text-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .service-title {
        font-size: 26px;
    }

    .feature-item {
        width: 100%;
        min-width: 0;
    }

    .feature-title {
        font-size: 19px;
    }
}

body {
    font-family: var(--font-main);
    background: var(--color-white);
    color: var(--color-primary)
}

.sec-realizzazioni {
    padding: 50px;
}

.loc-card {
    height: 100%;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--color-link-hover)
}

@media (min-width:768px) {
    .col:nth-last-child(-n+2) .loc-card {
        border-bottom: none;
        padding-bottom: 0
    }
}

.loc-title {
    font-size: 25px;
    line-height: 1.15;
    color: var(--color-primary);
    margin-bottom: 20px
}

@media (max-width:575.98px) {
    .loc-title {
        font-size: 26px
    }
}

.loc-title .prefix {
    font-weight: 600
}

.loc-title .place {
    font-weight: 800
}

.loc-title a {
    color: inherit;
    text-decoration: none;
    transition: .2s all linear;
}

    .loc-title a:hover,
    .loc-title a:focus {
        color: var(--color-link-hover)
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 504px
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    background-color: #c6dce9
}

.gallery-more {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--color-white, #fff);
    text-decoration: none;
    border-radius: 4px;
    background-color: var(--color-primary);
    transition: opacity 0.2s ease
}

    .gallery-more:hover,
    .gallery-more:focus {
        opacity: .85;
        color: var(--color-white, #fff)
    }
/* ── Section wrapper ── */

.localita-gallery-section {
    padding: 50px;
    background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
}

    .localita-gallery-section .section-title h1,
    .localita-gallery-section .section-title h2 {
        color: #1B79B7;
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        letter-spacing: -0.02em;
    }

    .localita-gallery-section .localita-intro {
        max-width: 720px;
        margin: 12px auto 0;
        font-size: var(--page-text-size);
        font-weight: 400;
        line-height: 1.6;
        color: var(--color-dark);
    }

.masonry-gallery {
    column-count: 1;
    column-gap: 1.25rem;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 1.25rem;
    break-inside: avoid;
}

    .masonry-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 1rem;
        object-fit: cover;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .masonry-item img:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
        }

@media (min-width: 768px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (min-width: 1200px) {
    .masonry-gallery {
        column-count: 3;
    }
}

.about-section {
    padding: 50px 0 0;
    background: var(--color-white)
}

    .about-section .container {
        max-width: 1320px; /* oppure lo stesso valore usato nelle altre sezioni */
        margin: 0 auto;
        padding: 0 24px;
    }

.about-text {
    max-width: 760px
}

    .about-text p {
        font-family: var(--font-main);
        font-size: var(--page-text-size);
        font-weight: 400;
        line-height: 1.35;
        color: var(--color-primary);
    }

    .about-text strong {
        font-weight: 700
    }

.about-collage {
    max-width: 470px;
    width: 100%;
    height: auto
}

@media (max-width:991px) {
    .about-section {
        padding: 60px 0
    }

    .about-text {
        max-width: 100%;
        text-align: center
    }

        .about-text p {
            font-size: 20px
        }

    .about-collage {
        margin-top: 40px;
        max-width: 390px
    }
}

@media (max-width:576px) {
    .about-section {
        padding: 50px 20px
    }

    .about-text p {
        font-size: var(--page-text-size);
        line-height: 1.5;
        margin-bottom: 20px
    }

    .about-collage {
        max-width: 310px;
        margin-top: 30px;
    }
}

.realizzazioni-section {
    background: linear-gradient( 180deg, var(--color-white) 0%, #f5f5f5 20%, var(--color-primary) 100% );
    padding: 50px 0;
}

.home-realizzazioni-title {
    color: var(--color-primary);
}

.realizzazione-card p {
    color: var(--color-white);
}

.realizzazione-carousel {
    position: relative;
    /*overflow: hidden; /* nasconde le card fuori dall'area visibile */
    --visible-count: 3; /* desktop: 3 card visibili */
}

.realizzazione-item {
    flex: 0 0 calc(100% / var(--total-items, 11));
    box-sizing: border-box;
    padding: 0 20px;
}

/* .realizzazione-card resta invariata */

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    position: absolute;
    z-index: 2;
}

.carousel-control-prev {
    left: -70px
}

.carousel-control-next {
    right: -70px
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    filter: brightness(0) invert(1)
}

@media (max-width: 991px) {
    .realizzazione-carousel {
        --visible-count: 2;
    }
    /* "metà" */
    .realizzazione-card {
        max-width: 380px
    }

        .realizzazione-card img {
            height: 260px
        }

        .realizzazione-card p {
            font-size: 18px
        }

    .carousel-control-prev {
        left: -40px
    }

    .carousel-control-next {
        right: -40px
    }
}

@media (max-width: 576px) {
    .realizzazione-carousel {
        --visible-count: 1;
    }
    /* mobile */

    .realizzazione-item {
        padding: 0 8px
    }

    .realizzazione-card {
        max-width: 78%;
        margin: 0 auto
    }

        .realizzazione-card img {
            height: 180px
        }

        .realizzazione-card p {
            font-size: 15px
        }

    .carousel-control-prev {
        left: -5px
    }

    .carousel-control-next {
        right: -5px
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.8rem;
        height: 1.8rem
    }
}

.serviziofferti-section {
    background: var(--color-white);
    padding: 50px 0
}

.servizio-card {
    text-align: center;
    padding: 20px 35px;
    height: 100%
}

.servizio-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 0 auto 25px auto
}

.servizio-title {
    color: var(--color-accent);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px
}

.servizio-text {
    color: var(--color-primary);
    font-size: var(--page-text-size);
    font-weight: 400;
    line-height: 1.5
}

.servizio-card {
    transition: transform .3s ease
}

    .servizio-card:hover {
        transform: translateY(-5px)
    }

.servizi-btn {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--page-text-size);
    font-weight: 600;
    text-decoration: none;
    padding: 16px 42px;
    border-radius: 50px;
    transition: all .3s ease
}

    .servizi-btn:hover {
        background: var(--color-primary-hover);
        color: var(--color-white);
        transform: translateY(-2px)
    }

@media (max-width:991px) {
    .serviziofferti-section {
        padding: 60px 0
    }

    .servizio-img {
        height: 240px
    }

    .servizio-title {
        font-size: 24px
    }

    .servizio-text {
        font-size: 18px
    }
}

@media (max-width:576px) {
    .serviziofferti-section {
        padding: 50px 20px
    }

    .servizio-card {
        max-width: 320px;
        margin: auto
    }

    .servizio-img {
        height: 200px
    }

    .servizio-title {
        font-size: 20px
    }

    .servizio-text {
        font-size: 16px;
        line-height: 1.6
    }
}

@media (max-width:991px) {

}

@media (max-width:576px) {

}
/* ─── Base ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: var(--color-white);
    color: var(--color-dark);
}

/* ─── Section wrapper ──────────────────────────────────────── */
.contacts-section {
    padding: 50px;
}

/* ─── Section headings (56 px, Semibold) ──────────────────── */
.section-title {
    font-size: var(--page-title-size);
    font-weight: var(--page-title-weight);
    color: var(--page-title-color);
    line-height: 1.1;
    margin-bottom: 48px;
}

/* ─── Contact block ────────────────────────────────────────── */
.contact-block {
    margin-bottom: 48px;
}

/* "Telefono" / "Email" subtitle (41 px, Semibold, lowercase) */
.contact-label {
    font-size: 30px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

/* Individual phone / email text (35 px, Semibold) */

/* Actual contact value (21 px, Medium) */
.contact-value {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    margin-bottom: 4px;
}

    .contact-value a {
        color: var(--color-dark);
        text-decoration: none;
    }

/* E-mail must be underlined */
.contact-value--email a,
.contact-value--email {
    text-decoration: underline;
}

/* ─── Map / right column ───────────────────────────────────── */
.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    /* Fixed height so the map keeps its proportions */
    height: 460px;
}

    .map-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* ─── Responsive tweaks ────────────────────────────────────── */
@media (max-width: 991.98px) {

    .contact-label {
        font-size: 28px;
    }

    .contact-value {
        font-size: var(--page-text-size);
    }

    .map-wrapper {
        height: 320px;
        margin-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        margin-bottom: 32px;
    }

    .contact-label {
        font-size: 22px;
    }

    .contact-value {
        font-size: 15px;
    }

    .contacts-section {
        padding: 40px 0 56px;
    }

    .map-wrapper {
        height: 260px;
        margin-top: 32px;
    }
}

.itec-chi-siamo {
    background-color: var(--color-white);
    padding: 50px;
}

.itec-chi-siamo__text {
    font-weight: 400;
    font-size: var(--page-text-size);
    color: var(--color-primary);
    line-height: 1.8;
    margin-bottom: 1.1rem
}

    .itec-chi-siamo__text:last-child {
        margin-bottom: 0
    }

    .itec-chi-siamo__text strong {
        font-weight: 600;
        color: var(--color-primary)
    }

.itec-chi-siamo__logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

.itec-chi-siamo__logo {
    max-width: 380px;
    width: 100%;
    height: auto
}

@media (max-width:991.98px) {

    .itec-chi-siamo__logo-wrap {
        margin-top: 2.5rem
    }

    .itec-chi-siamo__logo {
        max-width: 220px
    }
}

@media (max-width:575.98px) {

    .itec-chi-siamo {
        padding-top: 2rem;
        padding-bottom: 2.5rem
    }

    .itec-chi-siamo__logo {
        max-width: 180px
    }
}
/* ─────────────────────────────────────────────────────
       ROOT & BASE
    ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: var(--color-white);
    color: var(--color-dark);
}

/* ─────────────────────────────────────────────────────
       SECTION 1 – Intestazione articolo
    ───────────────────────────────────────────────────── */

/* Immagine: dimensioni fisse in CSS */

/* Colonna testo */

/* Titolo – Semibold 56px */

/* Breadcrumb – Medium 14px */

/* Data – Regular 23px */

/* ─────────────────────────────────────────────────────
       SECTION 2 – Corpo articolo + Condivisione
    ───────────────────────────────────────────────────── */

/* Testo – Regular/ExtraBold 23px nero */

    /* ExtraBold in-line = <strong> */

/* Barra di condivisione */

/*Icone social – stessa dimensione, colore brand*/

/* ─────────────────────────────────────────────────────
       SECTION 3 – Articoli correlati
    ───────────────────────────────────────────────────── */

/* Titolo sezione – Bold 33px */

/* ─────────────────────────────────────────────────────
       RESPONSIVE – Sezioni 1 e 2 (le card NON si scalano)
    ───────────────────────────────────────────────────── */

/* ≤ 991 px: immagine sopra, testo sotto */
@media (max-width: 991.98px) {

}

/* ≤ 767 px: scala tutti i testi */
@media (max-width: 767.98px) {

}

/* ≤ 575 px: ulteriore compressione */
@media (max-width: 575.98px) {

}
