/**
 * The base file that should be imported by every file.
 * There should be no CSS generation in this or from imported scss files at all!
 */
/**
 * Library
 */
/**
 * Variables and functions
 */
@font-face {
  font-family: 'Jazmin';
  font-weight: 700;
  src: url("/app/themes/florent/assets/fonts/Jazmin-Bold.otf"); }

@font-face {
  font-family: 'Jazmin';
  font-weight: 600;
  src: url("/app/themes/florent/assets/fonts/Jazmin-SemiBold.otf"); }

@font-face {
  font-family: 'Cera Pro';
  font-weight: 400;
  src: url("/app/themes/florent/assets/fonts/Cera-Pro-Regular.otf"); }

@font-face {
  font-family: 'Cera Pro';
  font-weight: 400;
  font-style: italic;
  src: url("/app/themes/florent/assets/fonts/Cera-Pro-Regular-Italic.otf"); }

@font-face {
  font-family: 'Cera Pro';
  font-weight: 500;
  src: url("/app/themes/florent/assets/fonts/Cera-Pro-Medium.otf"); }

@font-face {
  font-family: 'Cera Pro';
  font-weight: 500;
  font-style: italic;
  src: url("/app/themes/florent/assets/fonts/Cera-Pro-Medium-italic.otf"); }

@font-face {
  font-family: 'Cera Pro';
  font-weight: 700;
  src: url("/app/themes/florent/assets/fonts/Cera-Pro-Bold.otf"); }

@font-face {
  font-family: 'Cera Pro';
  font-weight: 700;
  font-style: italic;
  src: url("/app/themes/florent/assets/fonts/Cera-Pro-Bold-italic.otf"); }

.section-related .container .h3 {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  text-transform: uppercase; }
  .section-related .container .h3:before {
    content: '';
    height: 2px;
    width: 100%;
    background-color: var(--blue);
    flex: 1; }
  .section-related .container .h3:after {
    content: '';
    height: 2px;
    width: 100%;
    background-color: var(--blue);
    flex: 1; }

.section-related .container .related-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  padding: 4em 0 8em; }
  @media (min-width: 768px) {
    .section-related .container .related-posts {
      grid-template-columns: repeat(3, 1fr); } }
  .section-related .container .related-posts .post {
    display: flex;
    flex-direction: column;
    gap: 2em;
    position: relative; }
    .section-related .container .related-posts .post .image {
      height: 375px;
      width: 100%;
      overflow: hidden;
      position: relative; }
      .section-related .container .related-posts .post .image img {
        position: absolute;
        inset: 0;
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        transform: scale(1);
        transition: transform .3s ease-in-out; }
    .section-related .container .related-posts .post .content {
      display: flex;
      flex-direction: column;
      gap: 1em; }
      .section-related .container .related-posts .post .content h3 {
        margin: 0; }
      .section-related .container .related-posts .post .content .overlay-link {
        margin-top: auto;
        text-transform: uppercase; }
      .section-related .container .related-posts .post .content .info {
        text-transform: uppercase;
        color: var(--blue-light); }
    .section-related .container .related-posts .post:hover .image img {
      transform: scale(1.03); }

/*# sourceMappingURL=related.css.map */
