/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  --body-text-colour: #4d4d4d;

  font-size: 1em;
  line-height: 1.4;
  font-family: 'Noto Sans', sans-serif;
  color: var(--body-text-colour);
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* =============================================================================
                                          Variables
 */
body {
  --colour-gold: #bf8216;

  --colour-primary-hue: 215.5;
  --colour-primary: hsl(var(--colour-primary-hue), 86.2%, 28.4%);
  --colour-secondary: var(--colour-gold);
  --link-colour: var(--colour-primary);
  --header-colour: hsl(var(--colour-primary-hue), 57.4%, 21.2%);
  --pale-grey: #f0f0f0;

  --site-max-width: 1000px;
  --site-h-padding: 6%;
}

/* =============================================================================
                                          HTML elements
 */
h1, h2, h3, h4 {
  clear: both;
  line-height: 1.1;
  margin-block-start: 1.4em;
  margin-block-end: .9em;
}
:is(h1, h2, h3, h4) a {
  display: block;
  color: inherit;
  text-decoration: inherit;
}
:is(h2, h3):last-child {
  margin-bottom: 0;
}
h1 {
  margin-top: 1.4em;
  line-height: 1;
}
figcaption {
  font-size: 0.7em;
  text-align: center;
}
table {
  border-spacing: 0;
  border-collapse: separate;
}
td, th {
  padding: 0.6em 0.8em;
}
th {
  text-align: inherit;
  border-bottom: solid 1px #c2c2c2;
}
td {
  border-bottom: solid 1px #eee;
}
li + li {
  margin-top: 0.5em;
}
textarea,
select,
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
  background: #f5f5f5;
  padding: 0.3em 0.5em;
  box-sizing: border-box;
  border-radius: 4px;
  vertical-align: middle;
  padding: 0.3em 0.5em;
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.06);
  border: solid 1px #d3d3d3;
  overflow: hidden;
  margin: 0.3em 0.5em 0.3em 0;
}
label:first-child {
  display: inline-block;
  min-width: 4em;
}


header[role="banner"],
footer[role="contentinfo"] {
}
header[role="banner"] {
  padding-top: 12px;
  padding-bottom: 12px;
  background: var(--header-colour);
  color: white;
}
header[role="banner"] a {
  color: inherit;
}
header[role="banner"] > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
@media all and (min-width: 650px) {
  header[role="banner"] > div {
    flex-direction: row;
  }
}
header[role="banner"] [id="site-logo"] {
  /*max-width: 200px;*/
}
header[role="banner"] [id="site-logo"] img {
  max-height: calc(30px + 2vw);
  width: auto;
  font-size: 1em;
}
details[open] summary :is(a, span).more {
  display: none;
}
p.more {
  text-align: right;
  margin-top: 0.3em;
  margin-bottom: 0;
}
figure {
  margin: 0 2em 1.5em 0;
  float: left;
}
:is(button,
  .button,
  input[type="reset"],
  input[type="submit"],
  input[type="button"]) {
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 4px;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--link-colour);
  color: white;
  padding: 0.5em 0.8em;
  border: solid 1px var(--link-colour);
}
:is(button, .button) + :is(button, .button) {
  margin-left: 0.5em;
}
:is(button, .button):is(.flat, .outlined) {
  background: none;
  color: var(--link-colour);
  /*border: solid 1px #e6e6e6;*/
}
:is(button, .button).flat {
  padding: 0.2em 0em;
  border: none;
}
:is(button, .button).outlined:is(:hover, :focus) {
  background: var(--link-colour);
  color: white;
}
:is(button, .button).top-right {
  position: absolute;
  top: 4px;
  right: 4px;
  background: none;
  border: none;
  padding: 0.5em;
}

body[class*="agent-"] header[role="banner"] {
  background: white;
  color: inherit;
  border-bottom: solid 1px #d9d9d9;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.1);
}
header[role="banner"] #agent-info-display {
  font-size: 0.85em;
}



/* =============================================================================
                                          Links
 */
a {
  color: var(--link-colour);
}
a:focus {
  outline: dotted 2px #2c7cf5;
  outline-offset: 2px;
}
a.block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
:is(a, span).more {
  color: var(--link-colour);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 600;
}
nav a {
  text-decoration: none;
}
nav a:is(:hover, :focus) {
  text-decoration: underline;
}



/* =============================================================================
                                          Layout
 */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  align-items: flex-start;
}
@media all and (min-width: 440px) and (max-width:  800px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 800px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 315px));
  }
}
.cols-2 {
  display: grid;
  /*grid-template-columns: 1fr;*/
  grid-gap: 20px;
}
@media all and (min-width: 800px) {
  .cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}



/* =============================================================================
                                          Components
 */
/*.align-center {
  text-align: center;
}*/

/* -------------------------------------------------------
                      Columns
 */
[class*="columns-"] {
  display: grid;
  gap: 20px;
}
.columns-2 {
  grid-template-columns: 1fr 1fr;
}
.columns-3 {}
@media all and (min-width: 520px) {
  .columns-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 850px) {
  .columns-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.text-colums-4 {
  columns: 4 200px;
  column-gap: 4em;
  margin-top: 2.6vw;
}
.text-colums-4 > :first-child {
  margin-top: 0;
}

/* -------------------------------------------------------
                      Layout utilities
 */
.page-max-width,
.text-max-width {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-h-padding);
  padding-right: var(--site-h-padding);
}
.page-max-width {
  max-width: var(--site-max-width);
}
.text-max-width {
  max-width: 40em;
}

/* -------------------------------------------------------
                      Lists
 */
.non-list {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.non-list li {
  list-style-type: none;
}

/* -------------------------------------------------------
                      Other
 */
.label {
  font-weight: bold;
  margin-right: 0.6em;
}
.label::after {
  content: ":";
}
section.per-country p {
  /*margin: 0;*/
}
p.info-per-country {
  display: inline-block;
  float: left;
  margin: 0 0.5em 0 0;
  text-transform: uppercase;
}
details,
.field-group {
  margin: 1em 0;
  border: none; /*solid 1px grey;*/
  background: var(--pale-grey);
  /*border-radius: 5px;*/
  padding: 1em;
}
.field-group > :first-child {
  margin-top: 0;
}
.field-group > :last-child {
  margin-bottom: 0;
}
summary {
  font-size: 1.2em;
  font-weight: bold;
}
summary:hover {
  cursor: pointer;
}
.inline.icon {
  width: auto;
  height: 1.1em;
  margin-bottom: 0.1em;
}

/* -------------------------------------------------------
                      Cities and regions
 */
/* Eg. "city" or "region" */
:is(.type,
  .parent) {
  font-size: 0.85em;
  margin-bottom: 0.2em;
  text-transform: uppercase;
  /*font-weight: 600;*/
}
:is(.type,
  .parent) .icon {
  height: 1.4em;
  opacity: 70%;
  vertical-align: middle;
}
:is(.type,
  .parent) a {
  color: inherit;
  text-decoration: inherit;
}
:is(.type,
  .parent) a:is(:hover, :focus) {
  text-decoration: underline;
}
.type {
  text-transform: uppercase;
  color: inherit;
}

/* -------------------------------------------------------
                      Messages
 */
.message.error {
  background: hsl(0, 44.4%, 89.4%); /* red */
  padding: 0.8em 1em;
  max-width: 40em;
  margin: 0.5em auto;
  border-radius: 5px;
  border: solid 1px hsl(0, 78.6%, 43.9%); /* red */
  color: #2d2d2d;
}

/* -------------------------------------------------------
                      Tabs
 */
.tabs {}
[role="tablist"] {
  background: var(--colour-primary);
  color: white;
  margin-top: 0;
  margin-bottom: 3.2vw;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100vw;
  font-size: 0.85em;
}
@media all and (min-width: 500px) {
  [role="tablist"] {
    font-size: inherit;
  }
}
[role="tablist"] nav {
  display: flex;
  /*flex-wrap: wrap;*/
  padding-left: 3vw;
  padding-right: 3vw;
}
[role="tab"],
[role="tablist"] a {
  background: none;
  color: inherit;
  /*margin: 0 0 -1px 0;*/
  border: none;
  border-radius: 0;
  border-width: 3px 0;
  border-style: solid;
  border-color: transparent;
  padding: 1em;
  font-size: 0.9em;
}
[role="tablist"] a {
  text-decoration: initial;
  text-transform: uppercase;
}
[role="tablist"] a:is(:hover, :focus) {
  text-decoration: initial;
}
:is([role="tab"], [role="tablist"] a):is(:hover, :focus) {
  border-bottom-color: #2c7cf5;
  cursor: pointer;
}
:is([role="tab"], [role="tablist"] a)[aria-selected="true"] {
  border-bottom-color: #2c7cf5;
  background: #0d48a1;
}

/* -------------------------------------------------------
                      Site search
 */
[id="site-search"] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1em;
  /*margin: 10px;*/
  position: relative;
}
[id="site-search"] img.icon {
  height: 1.5em;
  width: 1.5em;
  position: absolute;
  right: 10px;
}
[id="site-search"] [id="ss-link"]:not([hidden]) ~ img.icon {
  display: none;
}
[id="site-search"] .autocomplete-container {
  flex: 1 1 auto;
}
[id="site-search"] input[type="text"] {
  background: hsla(0, 0%, 0%, 0.24);
  border: none;
  box-shadow: none;
  padding: 0.8em 1em;
  padding-right: 2.4em;
}
.autocomplete__input--focused {
  outline: 2px solid var(--colour-secondary);
}
header.page [id="site-search"] > * {
  flex: 1 1 auto;
}
header.page .search {
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  padding: 1em 2em;
  margin-bottom: 20px;

  /* dark */
  /*background: hsla(0, 0%, 0%, 0.6);*/
  /*color: white;*/

  /* light */
  background:  hsla(0, 0%, 100%, 0.85);
  color: inherit;
}
header.page .search h2 {
  margin-top: 0;
  margin-bottom: 0.4em;
  text-align: center;
}
header.page .search input[type="text"] {
  max-width: none;
  /*border: solid 1px hsla(0, 0%, 100%, 0.6);*/
  background: hsla(0, 0%, 0%, 0.13);
}

.autocomplete__input {
  border: none;
  border-radius: 5px;
  font-size: inherit;
  max-width: 300px;
  background: #0003;
  color: inherit;
  padding: 0.3em 0.6em;
  background: 
}
.autocomplete__menu {
  border: solid 1px #c8c8c8;
  border-radius: 5px;
  color: var(--body-text-colour);
}
.autocomplete__option {
  margin: 0;
  font-size: 1em;
}
.autocomplete__option .type {
  text-transform: uppercase;
  color: grey;
  vertical-align: baseline;
  font-size: 0.9em;
}

/* -------------------------------------------------------
                      Dialogs
 */
/* It is expected to have width set using inline CSS */
[role="dialog"].nonmodal {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: white;
  min-width: 10em;
  max-width: 82vw;
  padding: 1em 1em;
  border-radius: 4px;
  box-shadow: 1px 1px 5px hsla(0, 0%, 0%, 0.1);
  border: solid 1px #d7d7d7;
}

/* -------------------------------------------------------
                      Page types
 */
[data-page-type="basic"] h1 {
  text-align: center;
}
[data-page-type="listing"] {}
[data-page-type="entity"] {}
[data-page-type="landing"] {}



/* =============================================================================
                                          Areas / regions
 */
body.no-tabs main {
  margin-top: 3vw;
}
nav ul {
  /*display: flex;*/
  /*flex-wrap: wrap;*/
}
nav ul li {
  /*padding: 0.3em 0.5em;*/
}
nav li > :is(a, span) {
  text-decoration: none;
  padding: 0.2em 0;
  display: block;
}
nav a:is(:hover, :focus) {
  text-decoration: underline;
}
[id="prefooter"] {
  margin-top: 3.2vw;
  margin-bottom: 1.2vw;
}
footer[role="contentinfo"] {
  background: #1c2e4a;
  font-size: 0.85em;
  padding: 50px 0;
  color: hsla(0, 0%, 100%, 0.5);
}
footer[role="contentinfo"] a,
footer[role="contentinfo"] button.flat {
  color: white;
}
footer[role="contentinfo"] > .page-max-width {
  max-width: 45em;
}
footer[role="contentinfo"] > .page-max-width > * {
  margin-bottom: 1.5em;
}
[id="disclaimer"] {
  font-size: 0.85em;
}

header.page {
  position: relative;
  display: grid;
  max-height: 80vh;
  grid-template-areas: 
    "top"
    "middle"
    "bottom";
  grid-template-rows: auto 1fr auto;
}
@media all and (min-width: 600px) {
  header.page {
    height: 38vw;
  }
  header.page[data-has-hero=""] {
    height: auto;
  }
}
header.page > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  /*max-height: 50vh;*/
  object-fit: cover;
  grid-row-start: top;
  grid-row-end: bottom;
  grid-column: 1;
}
header.page .text {
  /*text-align: center;*/
  grid-area: bottom;
  background-color: rgba(218, 218, 218, 0.7);
  color: #333;
}
header.page h1 {
  margin-top: 0;
  font-weight: normal;
}
header.page .callout {
  text-align: center;
  font-size: 2em;
  color: white;
  grid-area: top;
  font-weight: bold;

  /* on a light background */
  /*opacity: 80%;*/
  /*color: black;*/
  /*text-shadow: none;*/

  /* on a dark background */
  color: white;
  text-shadow: 1px 1px 0.3em black;
}



/* =============================================================================
                                          Lightboxes / dialogs
 */
[role="dialog"] [data-layout="lightbox-content"] {
  --slide-max-width: 40em;
  background: white;
  border-radius: 5px;
}
[role="dialog"] .tell {
  padding: 1.4em 1.5em;
}
[role="dialog"] :is(h2, h3):first-child {
  margin-top: 0;
}
[role="dialog"] p:last-child {
  margin-bottom: 0;
}
[aria-label="Close lightbox"] {
  top: 0;
  right: 4px;
}
[aria-label="Close lightbox"] svg {
  width: 40px;
}



/* =============================================================================
                                          Types of content
 */

details[data-type],
[data-display-mode="teaser"] {
  /* details-destyle */
  padding: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  /* teaser */
  background: var(--pale-grey);
  clear: both;
  margin-bottom: 1.5em;
  position: relative;
  padding-bottom: 1px;
}


[data-display-mode="card"] {
  text-align: center;
}
[data-display-mode="card"],
[data-layout="card"] {
  position: relative;
  margin: 0; /* Because it's in a grid */
  border: solid 1px #d2d2d2;
  box-shadow: 0 0 4px hsla(0, 0%, 0%, 0.13);
  border-radius: 4px;
  overflow: hidden;
  max-width: 360px;
}
[data-display-mode="card"]:hover {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.14);
}
[data-display-mode="card"].padding,
[data-layout="card"].padding {
  padding: 0.8em 1em;
}
[data-display-mode="card"] figure,
[data-layout="card"] figure {
  margin: 0;
  float: none;
}
[data-display-mode="card"] figure img,
[data-layout="card"] figure img {
  width: 100%;
  object-fit: cover;
  max-height: 220px;
  aspect-ratio: 3 / 2;
}
[data-display-mode="card"] .tell,
[data-layout="card"] .tell {
  padding: 1.1em 1.4em;
}
[data-display-mode="card"] h3,
[data-layout="card"] h3 {
  margin: 0;
  font-size: 1em;
}
[data-display-mode="card"] p,
[data-layout="card"] p {
  font-size: 0.85em;
}

[data-display-mode="teaser"]::after {
  /* Clearfix */
  content: " ";
  display: table;
  clear: both;
}
[data-display-mode="teaser"] .tell {
  padding: 1.5em 2em;
}
[data-display-mode="teaser"] .tell h3 {
  clear: none;
  margin-top: 0;
}
details[data-type] > summary {
  /* details-destyle */
  font-weight: inherit;
  font-size: inherit;
  list-style: none;
}
details:not([open]) summary figcaption {
  display: none;
}
details:not([open]) .if-open {
  display: none;
}
details[open] .if-not-open {
  display: none;
}
details summary :is(img, figure) {
  width: 200px;
  height: auto;
}
details summary.tell,
details summary > .tell {
  padding: 1.4em 2em 0;
  margin-bottom: 1.4em; /* Using margin to inter-mesh with following paragraphs */
}
details .rest {
  padding: 0 2em 1.4em;
}
details summary :is(h2, h3) {
  clear: none;
  margin-top: 0;
  margin-bottom: 0.1em;
}
details summary p {
  margin-top: 0.1em;
  margin-bottom: 0;
}

details :is(
[data-type="restaurant"],
[data-type="resort"],
[data-type="tourOperator"],
[data-type="airport"]) {
}

.news {
  border: solid 1px #d9d9d9;
  padding: 1em;
  border-radius: 4px;
}
.news h3 {
  margin-top: 0;
}
.news-story .field.title {
  /*font-weight: bold;*/
}



/* =============================================================================
                                          Unique pages
 */
.home header.page .text {
  background: none;
}
.home h2 {
  text-align: center;
  font-weight: normal;
  margin-top: 2.4em;
  margin-bottom: 1.4em;
}





/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  /* Print URL in brackets after links, eg. "(/cities)" */
  main a[href]::after {
    content: " (" attr(href) ")";
    text-transform: initial;
    color: gray !important;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }


  body {
    --site-h-padding: 0;
  }
  header.page {
    overflow: hidden;
  }
  :is(.type, .parent) {
    display: none;
  }
  footer {
    border-top: solid 1px grey;
  }
  .grid {
    grid-template-columns: initial !important;
  }
  [data-layout="card"] {
    max-width: initial;
  }
  [data-layout="card"] .show {
    max-width: 300px;
    float: left;
    padding: 0 1.5em 1em 0;
  }
  h1, h2, h3, h4 {
    clear: none;
  }
  h1 {
    margin: 0.5em 0 !important;
  }
}