@extends('partials.components.section', ['header' => false, 'ctaAfter' => false, 'sectionClass' => 'z-100 ' . ($index == 1 && is_front_page() ? 'md:!-mt-40' : '!mt-0')])
@section('section')
@if ((!empty($section['section_fields_title']) ?? false) || (!empty($section['section_fields_introduction']) ?? false))
@include('partials.components.section-header')
@endif
@if (($section['section_fields_buttons'] ?? false) && ($ctaAfter ?? true))
@include('partials.components.ctas', [
'ctas' => $section['section_fields_buttons'],
])
@endif
@if ($section['section_fields_image'] ?? false)
{!! ResponsivePics::get_image(
$section['section_fields_image'],
'xs:600, md:1024',
0,
'h-full w-full md:absolute rounded-bl-xl max-md:max-h-48 md:rounded-tr-xl object-cover',
false,
true,
) !!}
@endif
@overwrite