/* Scope wrapper optimized for a 1200px Elementor workspace */
    .fg-winery-wrapper {
        font-family: 'Montserrat', sans-serif;
        color: #1a1a1a;
        line-height: 1.8;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .fg-winery-header {
        text-align: center;
        margin-bottom: 70px;
        padding: 0 40px;
    }

    .fg-winery-header h2 {
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: -0.03em;
        margin-bottom: 20px;
        color: #1a1a1a;
        line-height: 1.2;
    }

    .fg-winery-header p {
        font-size: 1.1rem;
        color: #4a4a4a;
        max-width: 800px;
        margin: 0 auto 20px auto;
        font-weight: 400;
        line-height: 1.7;
    }

    /* Asymmetric & Dynamic Grid Row */
    .fg-winery-row {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr; /* Creates slight size asymmetry */
        gap: 80px;
        align-items: center;
        margin-bottom: 100px;
    }

    /* Reverse layout for alternating rows */
    .fg-winery-row.fg-reverse {
        grid-template-columns: 0.9fr 1.1fr;
    }

    /* Content Chunk Details */
    .fg-winery-chunk {
        position: relative;
        padding: 20px 0;
    }

    /* Large elegant number layout */
    .fg-winery-num {
        font-size: 4rem;
        font-weight: 300;
        color: #806792;
        line-height: 1;
        margin-bottom: -10px;
        letter-spacing: -0.05em;
    }

    .fg-winery-chunk h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 20px;
        color: #000000;
        letter-spacing: -0.01em;
    }

    .fg-winery-chunk p {
        color: #4a4a4a;
        margin: 0 0 15px 0;
        font-size: 1rem;
    }
    .fg-winery-chunk p:last-child {
        margin-bottom: 0;
    }

    /* Irregular Organic Shapes for Image Frames */
    .fg-winery-shape {
        width: 100%;
        aspect-ratio: 4 / 3;
        background: #f3f3f3;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Unique irregular smooth curves for Winnica Moderna elements */
    .fg-shape-5 { border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%; }
    .fg-shape-6 { border-radius: 42% 58% 40% 60% / 45% 50% 50% 55%; }
    .fg-shape-7 { border-radius: 58% 42% 55% 45% / 40% 60% 40% 60%; }

    .fg-winery-row:hover .fg-winery-shape {
        transform: scale(1.02) rotate(1deg);
    }
    .fg-winery-row.fg-reverse:hover .fg-winery-shape {
        transform: scale(1.02) rotate(-1deg);
    }

    .fg-winery-shape img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Responsive adjustments for mid & mobile viewports */
    @media (max-width: 992px) {
        .fg-winery-header h2 { font-size: 2.4rem; }
        .fg-winery-row, .fg-winery-row.fg-reverse {
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 70px;
        }
        .fg-winery-header { padding: 0; margin-bottom: 50px; }
        .fg-winery-shape { aspect-ratio: 16 / 10; max-width: 550px; margin: 0 auto; }

        /* Flow image underneath text chunk blocks on small viewports */
        .fg-mob-text { order: 1; }
        .fg-mob-img  { order: 2; }
    }

    @media (max-width: 768px) {
        .fg-winery-header h2 { font-size: 2rem; }
        .fg-winery-chunk h3 { font-size: 1.4rem; }
        .fg-winery-chunk p { font-size: 0.98rem; }
    }

/* ---------------------------------- */

/* Continuous styling matching the workspace tokens */
    .fg-shape-8  { border-radius: 45% 55% 40% 60% / 50% 45% 55% 50%; }
    .fg-shape-9  { border-radius: 52% 48% 60% 40% / 40% 55% 45% 60%; }
    .fg-shape-10 { border-radius: 47% 53% 35% 65% / 55% 40% 60% 45%; }