﻿/*$branding: map-merge($branding, (
    primary: #0d2777,
    primary-alt: #284ab3,
    primary-font-color: #fff,
    secondary: #0d2777,
    secondary-alt: #0b2267,
    secondary-font-color: #fff,
    tertiary: #3f5798,
    tertiary-alt: #354c89,
    tertiary-font-color: #fff,
    accent: #ffce00,
    accent-alt: #fdbf10,
    accent-font-color: map-get($font-colors, 'heading'),
    offset: #f4f5f9,
    offset-alt: #e5e7ed,
    offset-font-color: map-get($font-colors, 'body')
));*/
/*$box-shadows: map-merge($box-shadows, (
    card: 0 2px 6px 0 rgba(0,0,0,.08),
    content-top: 0 -2px 6px 0 rgba(0,0,0,.08),
    content-inset: inset 16px 46px 16px -46px rgba(32,76,136,0.15)  
));*/
/*$blog: map-merge($blog, ( 
    grid-max-width: 1231px,
    grid-gutter: 2rem
));*/
/*$cards: map-merge($cards, (
    padding-x: $grid-gutter-gap,
    padding-y: $grid-gutter-gap,
    border-color: $border-color,
    border-radius: $border-radius,
    border-radius-inner : $border-radius-inner,
    box-shadow: map-get($box-shadows, 'card'),
    bavkground-color: #fff
));*/
/* --- Base layout --- */
.bento-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.bento-item {
  flex: 1 1 auto;
}

.bento-row {
  display: flex;
  flex-direction: row;
  margin: -8px;
}

.bento-item-large,
.bento-item-small {
  padding: 8px;
}

.bento-main {
  position: relative;
  width: 100%;
}

.bento-grid picture,
.bento-grid img {
  border-radius: 6px;
  z-index: 0;
}

/* --- Text --- */
.bento-text {
  position: absolute;
  bottom: 8%;
  margin-left: 10%;
  margin-right: 10%;
  text-align: left;
  color: #03217D;
}

.bento-text h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 5rem;
}

.bento-text p {
  font-size: 2.5rem;
  line-height: 3rem;
  margin-top: 10px;
  margin-bottom: 0;
}

.bento-promo {
  font-size: 1.8rem !important;
  font-weight: 400;
  font-style: italic;
}

.discount-colour {
  font-weight: bold;
  color: #EC4E42;
}

/* --- Buttons --- */
.bento-buttons a {
  border-radius: 28px;
  min-height: 56px;
  line-height: 56px;
  padding: 0 24px;
  font-size: 1.8rem;
  margin-top: 20px;
}

/* =========================
   Breakpoints (max-width)
   ========================= */
@media (max-width: 995px) {
  .bento-text {
    bottom: 5%;
  }
  .bento-text p {
    font-size: 2rem;
    margin-top: 0;
  }
  .bento-promo {
    font-size: 1.5rem !important;
  }
  .bento-text h1 {
    font-size: 4rem;
  }
  .bento-buttons a {
    min-height: 32px;
    line-height: 32px;
    padding: 6px 16px;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .bento-text {
    bottom: 20%;
  }
  .bento-row {
    flex-wrap: wrap;
  }
  .bento-item-large {
    flex: 0 0 100%;
    width: 100%;
  }
  .bento-item-small {
    width: 50%;
  }
}
@media (max-width: 560px) {
  .bento-text {
    bottom: 10%;
  }
  .bento-text h1 {
    font-size: 3.3rem;
  }
  .bento-text p {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .bento-promo {
    font-size: 1.2rem !important;
  }
  .bento-buttons a {
    padding: 4px 16px;
    font-size: 1.2rem;
  }
}
@media (max-width: 440px) {
  .bento-text {
    bottom: 8%;
  }
  .bento-text h1 {
    font-size: 2.5rem;
    margin-bottom: 2px;
  }
  .bento-text p {
    font-size: 1.3rem;
  }
  .bento-promo {
    font-size: 1rem !important;
  }
  .bento-buttons a {
    padding: 2px 12px;
    margin-top: 2px;
  }
}
