<div class="js-component relative z-0 container component-spacer-margin">

    <div class="text-center mb-10 lg:mb-16">
        <div>

            <div class="uppercase text-grey-600 mb-3 font-semibold">
                <p>Heading Label</p>
            </div>

            <h2 class="text-4xl lg:text-8xl block font-heading font-extrabold leading-tight text-bravo  mb-4 lg:mb-6">Discover more</h2>
        </div>
        <div class="">

            <div class="prose prose-p:leading-snug prose-ul:leading-normal prose-ol:leading-normal prose-xl lg:prose-2xl  max-w-screen-sm mx-auto">
                <p>Lorem ipsum dolor sit amet consectetur. Nunc nunc pulvinar adipiscing vitae. Lorem convallis lorem diam ornare. Sed ornare et diam risus arcu id.</p>
            </div>

        </div>
    </div>

    <div class="block space-y-6 md:space-y-0 md:flex md:gap-6 md:justify-center">

        <div class="flex-1 md:max-w-lg">

            <div class="pt-6 h-full">
                <a class="w-full h-full rounded-2xl group shadow-card-lg gap-8 flex flex-col border border-grey-200 card-hover relative bg-grey-50 px-10 pb-7  flex flex-col gap-7 items-stretch" href="#">
                    <div class="bg-brand-gradient-2 absolute top-0 left-0 w-full h-28 angled-mask-mega-card z-0 rounded-t-2xl"></div>
                    <div class="flex justify-center w-full">
                        <div class="relative z-10 overflow-hidden rounded-lg w-full max-w-[270px] -mt-6">

                            <picture class="block overflow-hidden transition ease-in-out duration-300 group-hover:scale-110 w-full">

                                <img class="lazyload  w-full" alt="" width="1200" height="1200" data-sizes="auto" data-srcset="/front-end/images/test-imagery/example1@1-1@1200w.jpg 1200w" data-src="/front-end/images/test-imagery/example1@1-1@1200w.jpg">

                            </picture>
                        </div>
                    </div>
                    <div class="flex flex-col gap-7 justify-between h-full">
                        <div class="relative z-10">
                            <h2 class="text-center text-bravo font-extrabold mb-2 text-xl xl:text-2xl leading-tight group-hover:underline">Giga-powered speeds</h2>
                            <p class="text-grey-600 text-base xl:text-lg text-center leading-normal">Download up to 15x faster and upload up to 77x faster than part fibre - no sweat</p>
                        </div>
                    </div>
                </a>
            </div>

        </div>

        <div class="flex-1 md:max-w-lg">

            <div class="pt-6 h-full">
                <a class="w-full h-full rounded-2xl group shadow-card-lg gap-8 flex flex-col border border-grey-200 card-hover relative bg-grey-50 px-10 pb-7  flex flex-col gap-7 items-stretch" href="#">
                    <div class="bg-brand-gradient-2 absolute top-0 left-0 w-full h-28 angled-mask-mega-card z-0 rounded-t-2xl"></div>
                    <div class="flex justify-center w-full">
                        <div class="relative z-10 overflow-hidden rounded-lg w-full max-w-[270px] -mt-6">

                            <picture class="block overflow-hidden transition ease-in-out duration-300 group-hover:scale-110 w-full">

                                <img class="lazyload  w-full" alt="" width="1200" height="1200" data-sizes="auto" data-srcset="/front-end/images/test-imagery/example2@1-1@1200w.jpg 1200w" data-src="/front-end/images/test-imagery/example2@1-1@1200w.jpg">

                            </picture>
                        </div>
                    </div>
                    <div class="flex flex-col gap-7 justify-between h-full">
                        <div class="relative z-10">
                            <h2 class="text-center text-bravo font-extrabold mb-2 text-xl xl:text-2xl leading-tight group-hover:underline">Multi-device happy</h2>
                            <p class="text-grey-600 text-base xl:text-lg text-center leading-normal">Download up to 15x faster and upload up to 77x faster than part fibre - no sweat</p>
                        </div>
                    </div>
                </a>
            </div>

        </div>

        <div class="flex-1 md:max-w-lg">

            <div class="pt-6 h-full">
                <a class="w-full h-full rounded-2xl group shadow-card-lg gap-8 flex flex-col border border-grey-200 card-hover relative bg-grey-50 px-10 pb-7  flex flex-col gap-7 items-stretch" href="#">
                    <div class="bg-brand-gradient-2 absolute top-0 left-0 w-full h-28 angled-mask-mega-card z-0 rounded-t-2xl"></div>
                    <div class="flex justify-center w-full">
                        <div class="relative z-10 overflow-hidden rounded-lg w-full max-w-[270px] -mt-6">

                            <picture class="block overflow-hidden transition ease-in-out duration-300 group-hover:scale-110 w-full">

                                <img class="lazyload  w-full" alt="" width="1200" height="1200" data-sizes="auto" data-srcset="/front-end/images/test-imagery/example3@1-1@1200w.jpg 1200w" data-src="/front-end/images/test-imagery/example3@1-1@1200w.jpg">

                            </picture>
                        </div>
                    </div>
                    <div class="flex flex-col gap-7 justify-between h-full">
                        <div class="relative z-10">
                            <h2 class="text-center text-bravo font-extrabold mb-2 text-xl xl:text-2xl leading-tight group-hover:underline">Smart Wi-fi</h2>
                            <p class="text-grey-600 text-base xl:text-lg text-center leading-normal">Provides complete coverage so say goodbye to poor signal strength</p>
                        </div>
                    </div>
                </a>
            </div>

        </div>

    </div>
</div>
<div class="js-component relative z-0 container component-spacer-margin">
    {% if headline %}
        {% render "@headline", headline %}
    {% endif %}
    <div class="block space-y-6 md:space-y-0 md:flex md:gap-6 md:justify-center">
        {% for item in ctaCardList %}
            <div class="flex-1 md:max-w-lg">
                {% render "@content-card-square", { 
                    heading: item.heading, 
                    image: item.image, 
                    copy: item.copy, 
                    buttonText: item.buttonText,
                    bgContrast: bgContrast }, true 
                %}
            </div>
        {% endfor %}
    </div>
</div>
{
  "siteName": "Gigaclear Pattern Library",
  "headline": {
    "heading": "Discover more",
    "summary": "Lorem ipsum dolor sit amet consectetur. Nunc nunc pulvinar adipiscing vitae. Lorem convallis lorem diam ornare. Sed ornare et diam risus arcu id.",
    "preheading": "Heading Label"
  },
  "ctaCardList": [
    {
      "heading": "Giga-powered speeds",
      "copy": "Download up to 15x faster and upload up to 77x faster than part fibre - no sweat",
      "buttonText": "Blast off",
      "image": {
        "src": "images/test-imagery/example1@1-1@1200w.jpg",
        "srcSet": [
          {
            "url": "images/test-imagery/example1@1-1@1200w.jpg",
            "size": "1200"
          }
        ]
      }
    },
    {
      "heading": "Multi-device happy",
      "copy": "Download up to 15x faster and upload up to 77x faster than part fibre - no sweat",
      "buttonText": "That's entertainment",
      "image": {
        "src": "images/test-imagery/example2@1-1@1200w.jpg",
        "srcSet": [
          {
            "url": "images/test-imagery/example2@1-1@1200w.jpg",
            "size": "1200"
          }
        ]
      }
    },
    {
      "heading": "Smart Wi-fi",
      "copy": "Provides complete coverage so say goodbye to poor signal strength",
      "buttonText": "What is full fibre?",
      "image": {
        "src": "images/test-imagery/example3@1-1@1200w.jpg",
        "srcSet": [
          {
            "url": "images/test-imagery/example3@1-1@1200w.jpg",
            "size": "1200"
          }
        ]
      }
    }
  ]
}

No notes defined.