/*!*****************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-2.use[3]!./web/themes/uw/un2_theme/scss/libraries/un-image-left-layout.scss ***!
  \*****************************************************************************************************************************************************************************************************************************/
/********
 * Colors
 ********/
/************
 * Typography
 ************/
/*
 * We can use the font weight fot the bold styling example below
 * .test-font { font-family: $font-default; } regular
 * .test-font-bold { font-family: $font-default; font-weight: $font-weight-bold; }
 * @see: _typography.scss
*/
/*****************
 * Global elements
 *****************/
/****************
 * Sizing/Spacing
 ****************/
/*******
 * Forms
 ******/
/***********
 * Bootstrap
 ***********/
/**********
 * Mappings
 *********/
/*
 * IMPORTANT:
 *   - This file should *only contain* variables not considered UN style guide *
 */
/**
  Help theming for rtl languages.
*/
/*
 * This handles indentation for the depth of child levels for accordion
 * TODO: improve this implementation, overly complex due to previous design
 */
/*
 * Reset the button appearance to make it look like regular text.
 *
 * The padding can be optionally passed, as it is usually overriden.
 *
 * @param {Number} $padding - The padding to apply to the button.
 */
/*
 * Adds color & text-shadow-based outline to type.
 *
 * @param {color} $color - Color of the marker.
 * @param {color} $border-color - Color for the outline, or border.
 * @param {percent} $border-alpha - Value used in sass:color.scale().
 */
/*
 * Encapsulates the styles for the WYSIWYG editor.
 *
 * We use a mixin in order to be able to reuse these rules inside the
 * CKEditor5 stylesheet to provide the same styles for the editor content.
 * @see un2_theme/scss/admin/_ckeditor5.scss.
 * @see un2_theme/scss/components/_wysiwyg.scss.
 */
.uw-left-image-layout {
  display: grid;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  grid-template: "item2" auto "item1" auto "item3" auto "item4" auto/1fr;
}
.uw-left-image-layout .uw-left-image-layout__image {
  grid-area: item1;
  margin-block-end: 1rem;
}
.uw-left-image-layout .uw-left-image-layout__header {
  grid-area: item2;
  margin-block-end: 1rem;
}
.uw-left-image-layout .uw-left-image-layout__header .pattern-headline {
  margin-block-start: 0;
}
.uw-left-image-layout .uw-left-image-layout__body {
  grid-area: item3;
}
.uw-left-image-layout .uw-left-image-layout__footer {
  display: flex;
  grid-area: item4;
  flex-direction: column;
  gap: 1rem;
}
.uw-left-image-layout .uw-left-image-layout__footer .block-field-blockmediauw-documentuw-file {
  border-block-end: 1px solid #bfbfbf;
  padding-block-end: 1rem;
}
@media (min-width: 576px) {
  .uw-left-image-layout {
    grid-template: "item2 item2" auto "item1 item3" auto "item4 item4" auto/1fr 1fr;
  }
  .uw-left-image-layout .uw-left-image-layout__footer {
    flex-direction: row;
    align-items: center;
  }
  .uw-left-image-layout .uw-left-image-layout__footer .block-field-blockmediauw-documentuw-file {
    border-inline-end: 1px solid #bfbfbf;
    border-block-end: 0;
    padding-inline-end: 1rem;
    padding-block-end: 0;
  }
}
@media (min-width: 992px) {
  .uw-left-image-layout {
    grid-template: "item1 item2" auto "item1 item3" auto "item1 item4" auto/1fr 4fr;
  }
  .uw-left-image-layout .uw-left-image-layout__image {
    margin-block-end: 0;
  }
}
