@php
$bg = $section['section_settings_background'] ?? 'primary';
$section['section_settings_background'] = null;
@endphp
@extends('partials.components.section', ['header' => false, 'ctaAfter' => false])
@section('section')
{!! ResponsivePics::get_image($section['section_fields_image'], 'xs:200', 0, 'w-36 h-auto', false, true) !!}
@include('partials.components.section-header', ['section' => $section])
@if ($section['section_fields_buttons'] ?? false)
@include('partials.components.ctas', [
'ctas' => $section['section_fields_buttons'],
'class' => 'whitespace-nowrap',
'align' => $align ?? 'left',
])
@endif
@overwrite