<section class="author-intro content-block slide container-narrow container js-fade-in {{ styleModifier | default(null) }}">
<div class="row">
<div class="col-md">
<h1 class="author-intro__title">
{{ author.name }}
</h1>
</div>
<div class="col-md-auto d-flex justify-content-center">
{% if author.website %}
<a href="{{ author.website }}" class="author-intro__social-link">
<span class="icon icon-link" aria-label="Website" title="Website"></span>
</a>
{% endif %}
{% if author.instagram %}
<a href="{{ author.instagram }}" class="author-intro__social-link">
<span class="icon icon-instagram" aria-label="Instagram" title="Instagram"></span>
</a>
{% endif %}
{% if author.pinterest %}
<a href="{{ author.pinterest }}" class="author-intro__social-link">
<span class="icon icon-pinterest" aria-label="Pinterest" title="Pinterest"></span>
</a>
{% endif %}
{% if author.facebook %}
<a href="{{ author.facebook }}" class="author-intro__social-link">
<span class="icon icon-facebook" aria-label="Facebook" title="Facebook"></span>
</a>
{% endif %}
</div>
</div>
<div class="row mt-4 mb-md-5 mb-4">
<div class="col-md-3">
{% if author.image %}
{% do jsConfig().add('lazyImg', true) %}
<div class="embed-responsive-1by1 embed-responsive author-intro__media-wrapper">
{{ author.image.thumbnail('author-intro').html({
imgAttributes: {
class: 'js-lazy-img embed-responsive-item'
},
lowQualityPlaceholder: true,
}) | raw }}
</div>
{% endif %}
</div>
<div class="col-md-9">
<div class="wysiwyg">
{{ author.description | raw }}
</div>
</div>
</div>
{% if author.quote %}
<div class="row">
<div class="col-md-10 mx-auto">
<section class="quote-area quote-area--small js-fade-in">
<blockquote class="quote-area__text">
„{{ author.quote }}“
</blockquote>
</section>
</div>
</div>
{% endif %}
</section>