/* ============================================================
   FRG BLOG — archivio e singolo articolo
   divi-child/assets/frg-blog.css v1.5.0
   ============================================================ */

:root {
    --frg-nero:      #131620;
    --frg-bianco:    #FFFFFF;
    --frg-giallo:    #FFD616;
    --frg-arancione: #F15411;
}

body.page-template-page-approfondimenti,
body.category {
    background: var(--frg-nero);
}

/* ── ARCHIVIO WRAP ── */
.frg-archive-wrap {
    background: var(--frg-nero);
    min-height: 100vh;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.frg-archive-hero {
    padding: clamp(120px, 12vw, 180px) 0 clamp(24px, 3vw, 36px);
}

.frg-archive-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(11px, 0.19vw + 10.3px, 13px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b2b2b2;
    margin-bottom: 10px;
}
.frg-archive-eyebrow::before { content: '— '; }

.frg-archive-title {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--frg-bianco);
    line-height: 1.05;
    margin: 0 0 6px;
}

.frg-archive-sub {
    font-size: clamp(13px, 1vw + 11px, 16px);
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ── FILTER BAR ── */
.frg-archive-cats {
    padding: 0 0 clamp(24px, 3vw, 36px);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.frg-cat-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(11px, 0.19vw + 10.3px, 13px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}
.frg-cat-btn:hover {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.8);
}
.frg-cat-btn.is-active {
    background: linear-gradient(90deg, #FFD616, #F15411);
    border-color: transparent;
    color: var(--frg-nero);
}

/* ── BENTO GRID ── */
.frg-bento {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: clamp(60px, 8vw, 100px);
}

.frg-bento-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
    min-height: clamp(520px, 52vw, 640px);
}

.frg-bento-row--rtl {
    grid-template-columns: 1fr 1.2fr;
}
.frg-bento-row--rtl .frg-card-main { order: 2; }
.frg-bento-row--rtl .frg-bento-col  { order: 1; }

.frg-bento-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.frg-bento-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-height: clamp(280px, 28vw, 340px);
}

/* ── CARD PRINCIPALE ── */
.frg-card-main {
    background: #1c2030;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: opacity 0.2s;
    height: 100%;
}
.frg-card-main:hover { opacity: 0.88; }

.frg-card-main__img {
    width: 100%;
    flex: 1 1 0;
    min-height: 0;
    background-size: cover;
    background-position: center center;
    background-color: #1e2d3d;
    background-repeat: no-repeat;
}

.frg-card-main__body {
    flex: 0 0 auto;
    padding: clamp(28px, 3.5vw, 48px) clamp(28px, 3.5vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.frg-card-main__cat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(10px, 0.19vw + 9.3px, 12px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--frg-giallo);
    display: block;
}

.frg-card-main__title {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.frg-card-main__excerpt {
    font-size: clamp(12px, 0.8vw + 10px, 14px);
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.frg-card-main__meta {
    font-size: clamp(11px, 0.5vw + 10px, 13px);
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 4px;
}

/* ── CARD IMMAGINE PURA ── */
.frg-card-img {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display: block;
    transition: opacity 0.2s;
    height: 100%;
}

.frg-card-img__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1e2d3d;
    background-repeat: no-repeat;
}

.frg-card-img__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(19,22,32,0.95) 0%,
        rgba(19,22,32,0.70) 50%,
        rgba(19,22,32,0.45) 100%
    );
    transition: background 0.3s;
}
.frg-card-img:hover .frg-card-img__overlay {
    background: linear-gradient(
        to top,
        rgba(19,22,32,0.96) 0%,
        rgba(19,22,32,0.55) 50%,
        rgba(19,22,32,0.15) 100%
    );
}

.frg-card-img__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(20px, 2.5vw, 32px) clamp(20px, 2.5vw, 28px);
}

.frg-card-img__cat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(10px, 0.19vw + 9.3px, 12px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--frg-giallo);
    display: block;
    margin-bottom: 6px;
}

.frg-card-img__title {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(14px, 1.2vw + 11px, 17px);
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.frg-card-img__meta {
    font-size: clamp(11px, 0.5vw + 10px, 13px);
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 5px;
}

.frg-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--frg-giallo);
    flex-shrink: 0;
    display: inline-block;
}

/* ── PAGINAZIONE ── */
.frg-archive-pagination {
    text-align: center;
    padding-bottom: clamp(60px, 8vw, 100px);
}

.frg-load-more {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(11px, 0.19vw + 10.3px, 13px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.frg-load-more:hover {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.8);
}

.frg-archive-empty {
    padding: 48px 0;
    color: rgba(255,255,255,0.4);
    font-size: clamp(13px, 1vw + 11px, 16px);
}

/* ============================================================
   SINGOLO ARTICOLO
   ============================================================ */

body.single-post { background: var(--frg-nero); }

.frg-single-hero {
    background: var(--frg-nero);
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(120px, 12vw, 180px) 0 clamp(40px, 5vw, 64px);
}

/* Forza colore testo su sfondo bianco */
.frg-single-body,
.frg-single-content,
.frg-single-content p,
.frg-single-content li,
.frg-single-content td {
    color: #3a3a3a;
}

.frg-single-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: stretch;
}

.frg-single-cat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(11px, 0.19vw + 10.3px, 13px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b2b2b2;
    display: block;
    margin-bottom: 14px;
}

.frg-single-cat a {
    color: #b2b2b2;
    text-decoration: none;
    transition: color 0.2s;
}

.frg-single-cat a:hover { color: #fff; }

.frg-single-cat::before { content: '— '; }

.frg-single-hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(16px, 2vw, 24px);
}

.frg-single-title {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}

.frg-single-excerpt {
    font-size: clamp(13px, 1vw + 11px, 15px);
    line-height: 1.75;
    color: rgba(255,255,255,0.58);
    margin: 0;
}

.frg-single-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}

.frg-single-meta__row {
    font-size: clamp(13px, 0.8vw + 11px, 16px);
    color: rgba(255,255,255,0.38);
}
.frg-single-meta__row span {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.frg-single-hero__right {
    display: flex;
    align-items: stretch;
}

.frg-single-featured {
    width: 100%;
    display: block;
    line-height: 0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0;
}
.frg-single-featured img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 280px;
}

.frg-single-body { background: #fff; }

.frg-single-body__inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    grid-template-rows: auto;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    align-items: start;
}

/* Fix overflow: il contenuto non sfora dalla sua colonna */
.frg-single-content {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.frg-single-sidebar {
    min-width: 0;
    position: sticky;
    top: 100px;
}

.frg-single-content {
    padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 48px) 72px 0;
    border-right: 1px solid #eee;
    font-size: clamp(14px, 1.5vw + 11px, 20px) !important;
    line-height: 1.7 !important;
    color: #3a3a3a !important;
}

.frg-single-content * {
    line-height: inherit;
}

.frg-single-content p,
.frg-single-content span,
.frg-single-content div:not([class]) {
    font-size: clamp(14px, 1.5vw + 11px, 20px) !important;
    line-height: 1.7 !important;
    color: #3a3a3a !important;
}

.frg-single-content h2 {
    font-size: clamp(22px, 2.5vw, 30px) !important;
    font-weight: 700 !important;
    color: var(--frg-nero) !important;
    margin: 2.5em 0 0.6em !important;
    padding: 0 0 0 20px !important;
    position: relative !important;
    line-height: 1.3 !important;
}
.frg-single-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(to bottom, #F15411, #82070D);
}

.frg-single-content h3 {
    font-size: clamp(19px, 2vw, 25px) !important;
    font-weight: 700 !important;
    color: var(--frg-nero) !important;
    margin: 2em 0 0.5em !important;
    padding: 0 0 0 16px !important;
    position: relative !important;
    line-height: 1.3 !important;
}
.frg-single-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(to bottom, #F15411, #82070D);
}

.frg-single-content p { margin: 0 0 1.4em; }

/* Link gradientati senza sottolineatura */
.frg-single-content a { text-decoration: none; }
.frg-single-content a:not(.fr-btn-text) {
    background: linear-gradient(90deg, #F15411, #82070D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.frg-single-content a:not(.fr-btn-text):hover {
    background: linear-gradient(90deg, #FFD616, #F15411);
    -webkit-background-clip: text;
    background-clip: text;
}

.frg-single-content ul,
.frg-single-content ol { padding-left: 1.5em !important; margin-bottom: 1.4em !important; }
.frg-single-content ul { list-style-type: disc !important; }
.frg-single-content ol { list-style-type: decimal !important; }
.frg-single-content li {
    margin-bottom: 0.4em !important;
    color: #3a3a3a !important;
    font-size: clamp(14px, 1.5vw + 11px, 20px) !important;
    line-height: 1.7 !important;
}
.frg-single-content ul li::marker,
.frg-single-content ol li::marker {
    color: var(--frg-nero) !important;
}
.frg-single-content blockquote {
    border-left: 3px solid var(--frg-giallo);
    padding: 12px 18px;
    margin: 1.8em 0;
    background: #fafafa;
    font-style: italic;
    color: #555;
}
.frg-single-content img { max-width: 100%; height: auto; border-radius: 3px; margin: 1em 0; }

/* Box didascalia */
.frg-single-content .wp-caption {
    max-width: 100%;
    margin: 1.8em 0 2.4em;
	padding: 20px !important;
    background: #f7f7f5;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ececec;
}

.frg-single-content .wp-caption img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    border-radius: 0;
}

.frg-single-content .wp-caption-text {
    font-size: clamp(12px, 0.8vw + 10px, 16px) !important;
    line-height: 1.5 !important;
    color: #888 !important;
    padding: 20px 30px 0px 30px !important;
    margin: 0;
    font-style: italic;
}
.frg-single-content pre { background: #f4f4f4; border-radius: 3px; padding: 16px; overflow-x: auto; margin-bottom: 1.4em; font-size: 13px; }
.frg-single-content code { background: #f4f4f4; border-radius: 3px; padding: 2px 5px; font-size: 13px; }

.frg-single-tags {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.frg-tag {
    font-size: clamp(11px, 0.5vw + 10px, 13px);
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 2px;
    color: #888;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.frg-tag:hover { border-color: var(--frg-giallo); color: var(--frg-nero); }

.frg-single-sidebar {
    padding: clamp(32px, 4vw, 52px) 0 72px clamp(20px, 3vw, 32px);
}
.frg-sb-block { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid #f0f0f0; }
.frg-sb-block:last-child { border-bottom: none; padding-bottom: 0; }

.frg-sb-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(11px, 0.19vw + 10.3px, 13px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #F15411, #82070D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.frg-sb-label::before { content: '— '; }

.frg-toc { list-style: none; padding: 0; margin: 0; }
.frg-toc li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.frg-toc li:last-child { border-bottom: none; }
.frg-toc li::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--frg-giallo);
    flex-shrink: 0;
}
.frg-toc li.frg-toc__sub { padding-left: 12px; }
.frg-toc li.frg-toc__sub::before { background: #ddd; }
.frg-toc li a {
    font-size: clamp(12px, 0.8vw + 10px, 14px);
    color: #666;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}
.frg-toc li a:hover { color: var(--frg-nero); }

.frg-sb-cats { display: flex; flex-wrap: wrap; gap: 6px; }
.frg-sb-cat-pill {
    font-size: clamp(11px, 0.5vw + 10px, 13px);
    padding: 5px 12px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 20px;
    background: transparent;
    color: #666;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.frg-sb-cat-pill:hover {
    border-color: rgba(0,0,0,0.25);
    color: var(--frg-nero);
    background: rgba(0,0,0,0.05);
}

.frg-sb-recent { list-style: none; padding: 0; margin: 0; }
.frg-sb-recent li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.frg-sb-recent li:last-child { border-bottom: none; }
.frg-sb-recent a { text-decoration: none; display: flex; flex-direction: column; gap: 3px; }
.frg-sb-recent__title {
    font-size: clamp(12px, 0.8vw + 10px, 14px);
    color: #333;
    line-height: 1.45;
    transition: color 0.2s;
}
.frg-sb-recent a:hover .frg-sb-recent__title { color: var(--frg-nero); }
.frg-sb-recent__date { font-size: clamp(11px, 0.5vw + 10px, 13px); color: #888; }

.frg-sb-cta {
    background: var(--frg-nero);
    border-radius: 4px;
    padding: clamp(20px, 2.5vw, 28px);
}
.frg-sb-cta__title {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(15px, 1.2vw + 12px, 18px);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}
.frg-sb-cta__text {
    font-size: clamp(12px, 0.8vw + 10px, 14px);
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 18px;
}
/* fr-btn-text inside dark CTA box */
.frg-sb-cta .fr-btn-text {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: clamp(13px, 0.19vw + 12.3px, 15px) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #b2b2b2 !important;
    text-decoration: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 4px 0 !important;
    padding-right: 1.8em !important;
    position: relative !important;
    display: inline-block !important;
    background-image: linear-gradient(#ffffff, #ffffff) !important;
    background-size: 0% 1px !important;
    background-position: left bottom !important;
    background-repeat: no-repeat !important;
    transition: color 350ms ease, background-size 350ms ease !important;
}
.frg-sb-cta .fr-btn-text:hover {
    color: #ffffff !important;
    background-size: 100% 1px !important;
}
.frg-sb-cta .fr-btn-text::after {
    content: '' !important;
    display: block !important;
    width: 1.1em !important;
    height: 1.1em !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b2b2b2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M17 7H7M17 7V17'/%3E%3C%2Fsvg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    transition: background-image 350ms ease, transform 350ms ease !important;
}
.frg-sb-cta .fr-btn-text:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M17 7H7M17 7V17'/%3E%3C%2Fsvg%3E") !important;
    transform: translateY(-50%) translate(2px, -2px) !important;
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 768px) {

    /* Tutte le righe a colonna singola */
    .frg-bento-row,
    .frg-bento-row--rtl,
    .frg-bento-row--half {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 10px;
    }

    .frg-bento-row--rtl .frg-card-main { order: 0; }
    .frg-bento-row--rtl .frg-bento-col  { order: 0; }

    /* Altezza uniforme tutte le card */
    .frg-bento-col {
        grid-template-rows: 280px 280px;
        gap: 10px;
    }
    .frg-card-img  { min-height: 280px; height: 280px; }

    /* Card principale mobile: fullbleed come frg-card-img */
    .frg-card-main {
        position: relative;
        height: 280px;
        min-height: 280px;
        overflow: hidden;
        background: #1e2d3d;
    }

    /* Immagine occupa tutto */
    .frg-card-main__img {
        position: absolute;
        inset: 0;
        flex: none;
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    /* Overlay night blue */
    .frg-card-main::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(19,22,32,0.95) 0%,
            rgba(19,22,32,0.70) 50%,
            rgba(19,22,32,0.45) 100%
        );
        pointer-events: none;
        z-index: 1;
    }

    /* Box testo in overlay in basso */
    .frg-card-main__body {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        padding: 16px 20px 20px;
        gap: 6px;
        background: none;
    }

    /* Nascondi excerpt su mobile */
    .frg-card-main__excerpt { display: none; }

    /* Singolo articolo */
    .frg-single-hero__inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    /* Su mobile l'immagine esce dall'hero e diventa divisorio fullwidth */
    .frg-single-hero__right {
        display: none;
    }

    .frg-single-featured--mobile {
        display: block;
        width: 100%;
        line-height: 0;
    }

    .frg-single-featured--mobile img {
        width: 100%;
        height: auto;
        display: block;
        max-height: 320px;
        object-fit: cover;
    }

    .frg-single-body__inner {
        grid-template-columns: 1fr;
        padding: 0 5%;
        width: 100%;
    }

    .frg-single-content { border-right: none; padding-right: 0; }

    .frg-single-sidebar {
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 32px;
    }
}

/* Featured mobile: nascosto su desktop, visibile solo mobile */
.frg-single-featured--mobile { display: none; }

@media (max-width: 768px) {
    .frg-single-featured--mobile {
        display: block !important;
        width: 100%;
        line-height: 0;
        background: var(--frg-nero);
    }
    .frg-single-featured--mobile img {
        width: 100%;
        height: auto;
        display: block;
        max-height: 320px;
        object-fit: cover;
    }
}