.block-restaurant {
  h1, h2 {
    display: block;
    text-align: center;
    font-size: 20px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
  }


  hr {
    margin: 20px auto;
    width: 80px;
    border: none;
    height: 1px;
    background: #acbebb;
  }

  .redactor {
    font-size: 16px;
  }
}

.block-restaurant-top {
  display: flex;
  flex-direction: column-reverse;

  @media (min-width: 768px) {
    flex-direction: row;
  }
}

.block-restaurant-top-visual {
  flex: 1 1 50%;

  .shared-image {
    width: 100%;
    height: 100%;

    img {
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 100%;
    }
  }
}

.block-restaurant-top-info {
  flex: 1 1 50%;
  
}

.block-restaurant-top-saying {
  position: relative;
  background-image: url("/assets/backgrounds/saying-760dcf01.jpg");
  background-size: cover;
  background-position: center center;
  height: 300px;
  display: none;

  @media (min-width: 992px) {
    display: block;
  }
}

.block-restaurant-top-saying-quote {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 75px;

  .redactor {
    font-size: 20px;
    color: var(--color-white);
    font-style: italic;
    font-family: serif;
    line-height: 50px;

    @media (min-width: 1200px) {
      font-size: 24px;
    }

    @media (min-width: 1400px) {
      font-size: 32px;
    }
  }
}

.block-restaurant-top-restaurant {
  padding: 100px 30px;
  text-align: center;
  background-image: url("/assets/backgrounds/our_restaurant-0717ca1b.jpg");
  background-size: cover;
  background-position: center center;

  a {
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none; 

    &:hover, &:focus {
      text-decoration: underline;
    }
  }
}

.block-restaurant-bottom {
  display: flex;
  position: relative;
  flex-direction: column;

  @media (min-width: 768px) {
    flex-direction: row;

    &::after {
      display: block;
    }
  }

  &::after {
    content: "";
    display: none;
    position: absolute;
    width: 1px;
    height: calc(100% - 100px);
    left: 50%;
    top: 50px;
    background: #acbebb;
  }
}

.block-restaurant-bottom-pratical {
  padding: 50px;
  text-align: center;
  flex: 1 1 50%; 

  @media (min-width: 768px) {
    padding: 100px 50px;
  }
}


.block-restaurant-bottom-opening-hours {
  padding: 50px;
  text-align: center;
  flex: 1 1 50%; 

  table {
    width: 100%;
  }

  @media (min-width: 768px) {
    padding: 100px 50px;
  }
}
