/* =========================================================
   AREA DEL MEDITERRANEO – STRUTTURA FULL WIDTH
   ========================================================= */

.area-page {
    display: block !important;

    position: relative;
    left: 50%;

    width: 100vw;
    max-width: 100vw;

    margin-left: -50vw;

    padding: 0;
}

.area-page > * {
    display: block;
    width: 100%;
    max-width: none;
}

.area-page .area-hero,
.area-page .area-info-bar {
    width: 100%;
    max-width: none;
    float: none;
    clear: both;
}

/* =========================================================
   AREA DEL MEDITERRANEO – HERO
   ========================================================= */

.area-hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    color: #fff;
}

.area-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.area-hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.area-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(5, 25, 50, 0.78) 0%,
        rgba(5, 25, 50, 0.48) 45%,
        rgba(5, 25, 50, 0.12) 100%
    );
}

.area-hero-content {
    position: relative;
    z-index: 2;

    width: min(1200px, calc(100% - 40px));
    min-height: 560px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 100px 0 70px;
}

/* Breadcrumb */

.area-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 32px;

    font-size: 14px;
    line-height: 1.4;
}

.area-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.area-breadcrumb a:hover {
    color: #35b5ce;
}

.area-breadcrumb span {
    color: rgba(255,255,255,0.75);
}

/* Label */

.area-hero-label {
    margin-bottom: 14px;

    color: #35b5ce;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Titolo */

.area-hero-title {
    max-width: 800px;
    margin: 0 0 18px;

    color: #fff;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 700;
}

/* Descrizione */

.area-hero-description {
    max-width: 700px;

    color: rgba(255,255,255,0.92);

    font-size: 19px;
    line-height: 1.55;
}

/* =========================================================
   AREA DEL MEDITERRANEO – INFO BAR
   ========================================================= */

.area-info-bar {
    width: 100%;
    background: #ffffff;

    border-bottom: 1px solid rgba(20, 55, 90, 0.10);
    box-shadow: 0 4px 18px rgba(15, 40, 70, 0.06);

    position: relative;
    z-index: 3;
}

.area-info-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    min-height: 110px;
}

.area-info-item {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 20px 22px;

    border-right: 1px solid rgba(20, 55, 90, 0.10);
}

.area-info-item:first-child {
    border-left: 1px solid rgba(20, 55, 90, 0.10);
}

.area-info-label {
    margin-bottom: 7px;

    color: #35b5ce;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.area-info-value {
    color: #111a2d;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

@media (max-width: 900px) {

    .area-hero {
        min-height: 500px;
    }

    .area-hero-content {
        min-height: 500px;
        padding-top: 90px;
    }

    .area-info-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-info-item:nth-child(2n) {
        border-right: none;
    }

}


@media (max-width: 600px) {

    .area-hero {
        min-height: 520px;
    }

    .area-hero-content {
        width: min(100% - 30px, 1100px);
        min-height: 520px;

        padding-top: 90px;
        padding-bottom: 50px;

        justify-content: flex-end;
    }

    .area-hero-img {
        object-position: 65% center;
    }

    .area-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(5, 25, 50, 0.30) 0%,
            rgba(5, 25, 50, 0.72) 65%,
            rgba(5, 25, 50, 0.88) 100%
        );
    }

    .area-breadcrumb {
        margin-bottom: 22px;
        font-size: 13px;
    }

    .area-hero-label {
        font-size: 12px;
    }

    .area-hero-title {
        font-size: 40px;
    }

    .area-hero-description {
        font-size: 16px;
        line-height: 1.45;
    }

    .area-info-inner {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .area-info-item,
    .area-info-item:first-child {
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(20, 55, 90, 0.10);
    }

}

/* =========================================================
   AREA DEL MEDITERRANEO – INTRODUZIONE
   ========================================================= */

.area-intro {
    width: 100%;
    background: #fff;
}

.area-intro-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;

    padding: 90px 0 80px;
}

.area-section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.area-section-label {
    display: block;

    margin-bottom: 12px;

    color: #35b5ce;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.area-section-heading h2 {
    margin: 0;

    color: #111a2d;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
}

.area-intro-content {
    max-width: 900px;
    margin: 0 auto;

    color: #4b5565;

    font-size: 17px;
    line-height: 1.75;

    text-align: center;
}

.area-intro-content p {
    margin: 0 0 1em;
}

.area-intro-content p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   IMPORTANZA ECOLOGICA
   ========================================================= */

.area-section {
    width: 100%;
    background: #fff;
}

.area-section-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0;
}

.area-section-heading {
    max-width: 850px;
    margin: 0 auto 35px;
    text-align: center;
}

.area-section-label {
    display: block;
    margin-bottom: 12px;

    color: #35b5ce;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.area-section-heading h2 {
    margin: 0;

    color: #111a2d;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
}

.area-section-text {
    max-width: 900px;
    margin: 0 auto;

    color: #4b5565;

    font-size: 17px;
    line-height: 1.75;
}

.area-section-text p {
    margin-bottom: 1.2em;
}

.area-section-text p:last-child {
    margin-bottom: 0;
}

.area-importance {
    background: #ffffff;
}

.area-importance-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.area-importance-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 70px;
}

.area-importance-content {
    padding: 20px 0;
}

.area-importance-content h2 {
    margin: 0 0 28px;

    color: #111a2d;

    font-size: clamp(32px, 3.2vw, 46px);
    line-height: 1.12;
}

.area-importance-content .area-section-label {
    margin-bottom: 14px;
}

.area-importance-content .area-section-text {
    max-width: none;
    margin: 0;

    text-align: left;
}

.area-importance-image {
    width: 100%;
}

.area-importance-image img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 14px;
}

@media (max-width: 900px) {

    .area-importance-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .area-importance-content .area-section-text {
        max-width: 850px;
    }

}


@media (max-width: 600px) {

    .area-importance-grid {
        gap: 30px;
    }

    .area-importance-content h2 {
        font-size: 32px;
    }

}

/* =========================================================
   DALLA PRODUTTIVITÀ ALLA PRESENZA DEI GRANDI CETACEI
   ========================================================= */

.area-ecological-chain {
    width: 100%;
    background: #f1f8fa;
    border-top: 1px solid rgba(20, 55, 90, 0.08);
    border-bottom: 1px solid rgba(20, 55, 90, 0.08);
}

.area-ecological-chain-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 75px 0 80px;
}

.area-ecological-chain-intro {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.area-ecological-chain-intro .area-section-label {
    display: block;
    margin-bottom: 12px;

    color: #35b5ce;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.5;
    text-transform: uppercase;
}

.area-ecological-chain-intro h2 {
    margin: 0;

    color: #111a2d;

    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
}


/* =========================================================
   STEPS
   ========================================================= */

.ecological-chain-steps {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: start;
    gap: 18px;
}


.ecological-chain-step {
    text-align: center;
}


.ecological-chain-number {
    margin-bottom: 12px;

    color: #35b5ce;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.ecological-chain-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 20px;

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

    border: 1px solid #35b5ce;
    border-radius: 50%;

    color: #168baa;

    font-size: 28px;
    font-weight: 400;

    background: #fff;
}


.ecological-chain-step h3 {
    margin: 0 0 12px;

    color: #111a2d;

    font-size: 17px;
    line-height: 1.25;
}


.ecological-chain-step p {
    margin: 0;

    color: #536174;

    font-size: 14px;
    line-height: 1.55;
}


.ecological-chain-arrow {
    align-self: center;

    margin-top: 35px;

    color: #35b5ce;

    font-size: 28px;
    line-height: 1;
}

@media (max-width: 1000px) {

    .ecological-chain-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px 30px;
    }

    .ecological-chain-arrow {
        display: none;
    }

}

@media (max-width: 600px) {

    .area-ecological-chain-inner {
        width: min(100% - 30px, 1200px);
        padding: 60px 0;
    }

    .area-ecological-chain-intro {
        margin-bottom: 40px;
    }

    .ecological-chain-steps {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .ecological-chain-step {
        max-width: 420px;
        margin: 0 auto;
    }

}

.area-importance-image a {
    display: block;
    position: relative;
}

.area-importance-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-importance-image a:hover img {
    transform: scale(1.015);
    box-shadow: 0 12px 35px rgba(10, 35, 60, 0.15);
}

/* =========================================================
   IMMAGINE INFOGRAFICA – ZOOM
   ========================================================= */

.area-importance-image {
    position: relative;
}

.area-image-zoom {
    position: relative;

    display: block;

    width: 100%;

    margin: 0;
    padding: 0;

    border: 0;

    background: transparent;

    cursor: zoom-in;

    text-align: left;
}

.area-image-zoom img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.area-image-zoom:hover img {
    transform: scale(1.01);

    box-shadow:
        0 15px 40px rgba(10, 35, 60, 0.18);
}


/* =========================================================
   PULSANTE INGRANDIMENTO
   ========================================================= */

.area-image-zoom-icon {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    background: rgba(10, 30, 50, 0.78);

    color: #ffffff;

    font-size: 24px;
    line-height: 1;

    pointer-events: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.area-image-zoom:hover .area-image-zoom-icon {
    transform: scale(1.08);

    background: #35b5ce;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.area-image-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

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

    padding: 40px;

    background: rgba(5, 18, 32, 0.92);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.area-image-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.area-image-lightbox-content {
    position: relative;

    max-width: 1400px;
    max-height: 90vh;

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

.area-image-lightbox-content img {
    display: block;

    max-width: 100%;
    max-height: 90vh;

    width: auto;
    height: auto;

    border-radius: 8px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45);
}


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

.area-image-lightbox-close {
    position: fixed;

    top: 25px;
    right: 30px;

    z-index: 2;

    width: 48px;
    height: 48px;

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

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    background: rgba(10, 30, 50, 0.65);

    color: #ffffff;

    font-size: 32px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.area-image-lightbox-close:hover {
    background: #35b5ce;
    transform: rotate(90deg);
}


/* Blocca lo scroll della pagina quando la lightbox è aperta */

body.area-lightbox-open {
    overflow: hidden;
}

/* =========================================================
   HABITAT
   ========================================================= */

.area-habitat {
    background: #ffffff;
}

.area-habitat-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 75px;

    margin-bottom: 75px;
}

.area-habitat-content {
    padding: 20px 0;
}

.area-habitat-content h2 {
    margin: 0 0 28px;

    color: #111a2d;

    font-size: clamp(32px, 3.2vw, 46px);
    line-height: 1.12;
}

.area-habitat-content .area-section-text {
    max-width: none;
    margin: 0;

    text-align: left;
}

.area-habitat-image {
    width: 100%;
}

.area-habitat-image img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 14px;
}

/* =========================================================
   TIPOLOGIE DI HABITAT
   ========================================================= */

.area-habitat-types {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    padding-top: 10px;
}

.area-habitat-type {
    position: relative;

    padding: 30px 28px 32px;

    border-top: 2px solid #35b5ce;

    background: #f6fafb;
}

.area-habitat-number {
    display: block;

    margin-bottom: 15px;

    color: #35b5ce;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.area-habitat-type h3 {
    margin: 0 0 14px;

    color: #111a2d;

    font-size: 20px;
    line-height: 1.25;
}

.area-habitat-type p {
    margin: 0;

    color: #536174;

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

@media (max-width: 900px) {

    .area-habitat-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .area-habitat-types {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .area-habitat-grid {
        gap: 30px;
        margin-bottom: 50px;
    }

    .area-habitat-content h2 {
        font-size: 32px;
    }

    .area-habitat-type {
        padding: 25px;
    }

}

/* =========================================================
   SPECIE ASSOCIATE
   ========================================================= */

.area-species {
    background: #f5f9fa;
}

.area-species-intro {
    max-width: 700px;
    margin: 20px auto 0;

    color: #536174;

    font-size: 16px;
    line-height: 1.7;
}

.area-species-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}


.area-species-card {
    overflow: hidden;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 8px 30px rgba(15, 40, 65, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.area-species-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(15, 40, 65, 0.14);
}


/* IMMAGINE */

.area-species-card-image {
    display: block;

    aspect-ratio: 16 / 10;

    overflow: hidden;
}

.area-species-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.area-species-card:hover .area-species-card-image img {
    transform: scale(1.04);
}


/* CONTENUTO */

.area-species-card-content {
    padding: 25px 26px 28px;
}


/* IUCN */

.area-species-card-iucn {
    display: flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.species-iucn-dot {
    width: 9px;
    height: 9px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: currentColor;
}

.species-iucn-separator {
    opacity: 0.5;
}

/* =========================================================
   COLORI STATI IUCN
   ========================================================= */

.area-species-card-iucn.species-iucn-lc {
    color: #3a9b5f;
}

.area-species-card-iucn.species-iucn-nt {
    color: #8aa63b;
}

.area-species-card-iucn.species-iucn-vu {
    color: #d49a28;
}

.area-species-card-iucn.species-iucn-en {
    color: #d45b4c;
}

.area-species-card-iucn.species-iucn-cr {
    color: #b72f3c;
}

.area-species-card-iucn.species-iucn-ew {
    color: #7b4a9e;
}

.area-species-card-iucn.species-iucn-ex {
    color: #3f3f3f;
}

.area-species-card-iucn.species-iucn-dd {
    color: #7d8791;
}

.area-species-card-iucn.species-iucn-ne {
    color: #9a9a9a;
}

/* TITOLO */

.area-species-card h3 {
    margin: 0 0 5px;

    font-size: 22px;
    line-height: 1.2;
}

.area-species-card h3 a {
    color: #111a2d;

    text-decoration: none;
}

.area-species-card h3 a:hover {
    color: #168baa;
}


/* NOME SCIENTIFICO */

.area-species-card-scientific {
    margin: 0;

    color: #6b7685;

    font-size: 14px;
    font-style: italic;
}


/* LINK */

.area-species-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;

    color: #168baa;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-decoration: none;
}

.area-species-card-link span {
    font-size: 17px;

    transition: transform 0.2s ease;
}

.area-species-card-link:hover span {
    transform: translateX(4px);
}

@media (max-width: 1000px) {

    .area-species-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .area-species-grid {
        grid-template-columns: 1fr;
    }

    .area-species-card-content {
        padding: 22px 22px 25px;
    }

}

/* ==========================================
   MAPPA ATLANTE
========================================== */

.atlante-map {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}


/* Immagine */

.atlante-map img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}


/* ==========================================
   LAYER MARKER
========================================== */

.atlante-marker-layer {
    position: absolute !important;

    z-index: 50 !important;

    pointer-events: none !important;

    width: 0;
    height: 0;
}


/* Marker cliccabili */

.atlante-marker-layer .atlante-marker {
    pointer-events: auto !important;
}


/* ==========================================
   MARKER
========================================== */

.atlante-marker {
    position: absolute !important;

    left: 36%;
    top: 28%;

    z-index: 10;
}


/* ==========================================
   PUNTO
========================================== */

.atlante-marker-dot {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #ffffff;

    border: 3px solid #3BA9C7;

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

    position: relative;

    box-shadow: 0 3px 12px rgba(0, 50, 80, 0.20);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

    text-decoration: none;
}


.atlante-marker-dot span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #3BA9C7;

    display: block;
}


/* ==========================================
   HOVER
========================================== */

.atlante-marker-dot:hover {
    transform: scale(1.15);

    box-shadow: 0 5px 18px rgba(0, 50, 80, 0.28);
}


/* ==========================================
   PULSAZIONE
========================================== */

.atlante-marker-dot::before {
    content: "";

    position: absolute;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(59, 169, 199, 0.45);

    border-radius: 50%;

    animation: atlante-marker-pulse 2.5s infinite;
}


@keyframes atlante-marker-pulse {

    0% {
        transform: scale(.75);
        opacity: .8;
    }

    70% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }

}


/* ==========================================
   CARD
========================================== */

.atlante-marker-card {
    position: absolute;

    left: 50%;
    bottom: 42px;

    transform: translateX(-50%);

    width: 270px;

    padding: 22px 24px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow: 0 10px 35px rgba(10, 45, 70, 0.18);

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

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


.atlante-marker-card::after {
    content: "";

    position: absolute;

    bottom: -8px;
    left: 50%;

    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}


.atlante-marker:hover .atlante-marker-card {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%)
        translateY(-5px);
}


/* ==========================================
   CARD — TESTI
========================================== */

.atlante-marker-card-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #3BA9C7;

    font-weight: 600;

    margin-bottom: 8px;
}


.atlante-marker-card h3 {
    margin: 0 0 9px;

    font-size: 21px;
    line-height: 1.15;

    color: #101C35;
}


.atlante-marker-card p {
    margin: 0 0 15px;

    font-size: 13px;
    line-height: 1.55;

    color: #526170;
}


/* ==========================================
   LINK
========================================== */

.atlante-marker-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #3BA9C7;

    text-decoration: none;
}


.atlante-marker-link span {
    font-size: 16px;

    line-height: 1;

    transition: transform .2s ease;
}


.atlante-marker-link:hover span {
    transform: translateX(4px);
}


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

@media (max-width: 1024px) {

    .atlante-marker-dot {
        width: 25px;
        height: 25px;
    }

    .atlante-marker-dot span {
        width: 8px;
        height: 8px;
    }

    .atlante-marker-dot::before {
        width: 38px;
        height: 38px;
    }

    .atlante-marker-card {
        width: 250px;
        padding: 20px 22px;
    }

    .atlante-marker-card h3 {
        font-size: 20px;
    }

}


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

@media (max-width: 767px) {

    .atlante-marker-dot {
        width: 22px;
        height: 22px;

        border-width: 2px;
    }

    .atlante-marker-dot span {
        width: 7px;
        height: 7px;
    }

    .atlante-marker-dot::before {
        width: 34px;
        height: 34px;
    }

    .atlante-marker-card {
        width: 220px;
        padding: 18px 20px;
        border-radius: 7px;
    }

    .atlante-marker-card-label {
        font-size: 9px;
        letter-spacing: 1.7px;
    }

    .atlante-marker-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .atlante-marker-card p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 13px;
    }

    .atlante-marker-link {
        font-size: 10px;
    }

}


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

@media (max-width: 480px) {

    .atlante-marker-dot {
        width: 20px;
        height: 20px;
    }

    .atlante-marker-dot span {
        width: 6px;
        height: 6px;
    }

    .atlante-marker-dot::before {
        width: 30px;
        height: 30px;
    }

    .atlante-marker-card {
        width: 205px;
        padding: 16px 18px;
    }

    .atlante-marker-card h3 {
        font-size: 17px;
    }

}