/*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./project_src/assets/css/components/blocks/item-details.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* breaks and gaps */
/* Font sizes and weight user friendly callers */
/* Animations defaults */
/* figma defined font styles */
.item-details__copy {
  font-size: min(max(20px, 1.25vw), 24px);
  line-height: 144%;
  font-weight: 400;
}

.item-details__title {
  font-size: min(max(32px, 3.3333333333vw), 64px);
  font-weight: 500;
  line-height: 112%;
  margin-block: 0 0.625em;
}

/* end figma defined font styles */
/*
	Improved screen reader only CSS class
	@author Gaël Poupard
		@note Based on Yahoo!'s technique
		@author Thierry Koblentz
		@see https://www.cssmojo.com/hide-content-from-sighted-users/
	* 1.
		@note `clip` is deprecated but works everywhere
		@see https://developer.mozilla.org/en-US/docs/Web/CSS/clip
	* 2.
		@note `clip-path` is the future-proof version, but not very well supported yet
		@see https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path
		@see http://caniuse.com/#search=clip-path
		@author Yvain Liechti
		@see https://twitter.com/ryuran78/status/778943389819604992
	* 3.
		@note preventing text to be condensed
		author J. Renée Beach
		@see https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
		@note Drupal 8 goes with word-wrap: normal instead
		@see https://www.drupal.org/node/2045151
		@see http://cgit.drupalcode.org/drupal/commit/?id=5b847ea
	* 4.
		@note !important is important
		@note Obviously you wanna hide something
		@author Harry Roberts
		@see https://csswizardry.com/2016/05/the-importance-of-important/
*/
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  border: 0 !important;
  white-space: nowrap !important; /* 3 */
  clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
  clip-path: inset(50%) !important; /* 2 */
}

/*
	Use in conjunction with .sr-only to only display content when it's focused.
	@note Useful for skip links
	@see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
	@note Based on a HTML5 Boilerplate technique, included in Bootstrap
	@note Fixed a bug with position: static on iOS 10.0.2 + VoiceOver
		@author Sylvain Pigeard
		@see https://github.com/twbs/bootstrap/issues/20732
*/
.sr-only-focusable:focus,
.sr-only-focusable:active {
  clip: auto !important;
  clip-path: none !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  width: auto !important;
  white-space: normal !important;
}

.item-details {
  padding-block: min(max(40px, 6.25vw), 120px);
}
.item-details__wrapper {
  position: relative;
  grid-template-columns: subgrid;
  display: grid;
  grid-template-rows: min(max(40px, 4.1666666667vw), 80px) auto min(max(40px, 4.1666666667vw), 80px);
  align-items: center;
  grid-template-areas: ". image image image image . . . . . . . ." ". image image image image . copy copy copy copy copy . ." ". image image image image . . . . . . . .";
}
.flipped .item-details__wrapper {
  grid-template-areas: ". . . . . . .  image image image image . ." ". copy copy copy copy copy .  image image image image . ." ". . . . . . .  image image image image . .";
}

@media only screen and (max-width: 1024px) {
  .item-details__wrapper {
    grid-template-rows: 40px auto auto 40px;
    grid-template-columns: 24px 1fr 1fr 24px;
    grid-template-areas: ". . . ." ". copy copy ." ". image image ." ". . . .";
  }
  .flipped .item-details__wrapper {
    grid-template-areas: ". . . ." ". copy copy ." ". image image ." ". . . .";
  }
  .same-height .item-details__wrapper {
    grid-template-rows: 40px auto auto 0;
  }
}
.item-details__wrapper:before {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  z-index: -1;
  align-self: center;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-gray-100);
  border-radius: 16px;
  grid-row: 2/-2;
  grid-column: 1/-1;
}
.same-height .item-details__wrapper:before {
  grid-row: 1/-1;
}

@media only screen and (max-width: 1024px) {
  .item-details__wrapper:before {
    grid-column: 1/-1;
    grid-row: 1/-1;
  }
}
.item-details.same-height .item-details__wrapper {
  grid-template-rows: auto;
  grid-template-areas: ". image image image image . copy copy copy copy copy . .";
}
@media only screen and (max-width: 1024px) {
  .item-details.same-height .item-details__wrapper {
    grid-template-areas: ". copy copy ." ". image image .";
    grid-template-columns: 24px 1fr 1fr 24px;
  }
}
.item-details.same-height.flipped .item-details__wrapper {
  grid-template-areas: ". copy copy copy copy copy .  image image image image . .";
}
@media only screen and (max-width: 1024px) {
  .item-details.same-height.flipped .item-details__wrapper {
    grid-template-areas: ". copy copy ." ". image image .";
    grid-template-columns: 24px 1fr 1fr 24px;
  }
}
.item-details__image {
  grid-area: image;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  max-width: 100%;
}
.same-height .item-details__image {
  align-self: end;
}

.item-details__content {
  grid-area: copy;
  padding-block: min(max(40px, 4.1666666667vw), 80px);
}
.item-details__copy {
  position: relative;
  height: auto;
}
.item-details__copy ::marker {
  color: var(--color-primary);
  font-size: 0.7em;
}

/*# sourceMappingURL=item-details.min.css.map*/