/**
*   eateries.css
*   /themes/rtcc/blocks/eateries/eateries.css
*
*   Custom styles for the Eateries Block
*/

.eateries .row {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}
.eateries .row .col {
    flex: 0 0 50%;
}
.eateries .row .eatery-image picture,
.eateries .row .eatery-image {
    height: 550px;
}
.eateries .row .eatery-image img {
    display: block;
}
.eateries .row .eatery-info {
    padding: 20px;
    text-align: left;
    margin: auto;
    max-width: 600px;
}
.eateries .row .eatery-info p {
    margin-top: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 180%;
    margin-bottom: 50px;
}
.eateries .row .eatery-info a {
    background: #DA2C2A;
    border-radius: 10px;
    color: white;
    text-align: center;
    display: inline-block;
    padding: 16px 80px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}
.eateries .row .eatery-info .home-logos{
    max-height: 120px;
    width: auto;
}
.eateries .row:nth-child(even) .eatery-image {
    order: 2;
}
.eateries .row:nth-child(even) .eatery-info {
    order: 1;
}


/** Responsive - Eateries block **/
@media screen and (max-width: 1460px) {}
@media screen and (max-width: 1160px) {}
@media screen and (max-width: 992px) {
  .eateries .row .eatery-image {
      height: auto;
  }
}
@media screen and (max-width: 768px) {
  .eateries .row .col {
    flex: 0 0 100%;
  }
  .eateries .row .eatery-image {
    background: none !important;
  }
  .eateries .row .eatery-image img {
    display: block;
  }
  .eateries .row .eatery-info {
  padding: 25px;
  text-align: center;
  }
  .eateries .row .eatery-info p {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 35px;
    margin-top: 5px;
  }
  .eateries .row:nth-child(even) .eatery-image {
    order: 1;
  }
  .eateries .row:nth-child(even) .eatery-info {
    order: 2;
  }
  .eateries .eatery-info {
    text-align: center;
    margin: auto;
  }
  #eatery-1 .eatery-info img {
    max-width: 339px;
  }
  #eatery-2 .eatery-info img {
    max-width: 260px;
  }
  #eatery-3 .eatery-info img {
    max-width: 339px;
  }
  #eatery-4 .eatery-info img {
    max-width: 339px;
  }
  #eatery-5 .eatery-info img {
    max-width: 130px;
  }
  #eatery-6 .eatery-info img {
    max-width: 260px;
  }
}
@media screen and (max-width: 400px) {} 