.container {
  max-width: 1292px;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

.devocional-content {
  font-family: "Montserrat", Sans-serif;
  position: relative;

  /* .banner-fundo__content,
  .main-content{
    width: 47%;
    max-width: 553px;
    margin-left: auto;
  } */

  .banner-fundo {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #2e2e22;
    inset: 0;
    background-position: center;
    background-size: cover;
  }

  .banner-fundo__content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 44px;

    .tema {
      font-size: 15px;
      font-weight: 600;

      span {
        color: #a06f13;
      }
    }

    .title {
      font-weight: 600;
      font-size: 30px;
      color: inherit;
      font-family: inherit;
    }
  }

  .content__left,
  .content__right {
    flex-grow: 1;
  }

  /* .container--showcase{
    z-index: 30;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 114px;
  } */

  .showcase {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    z-index: 20;

    .image {
      width: 100%;
      max-width: 440px;

      img {
        box-shadow: -11px 11px 37px 0px rgba(0, 0, 0, 0.5);
      }

      a {
        color: #7c3811;
        border: 1px solid #7c3811;
        border-radius: 9px;
        padding: 22px;
        width: 100%;
        text-transform: uppercase;
        font-size: 15px;
        margin-top: 36px;
        display: block;
        text-align: center;
        transition: all 0.3s;
        font-weight: 600;
      }

      a:hover {
        color: #fff;
        background-color: #7c3811;
        transition: all 0.3s;
        border-width: 2px;
      }
    }
  }

  .related {
    display: flex;
    gap: 12px;
    flex-direction: row;

    li {
      background-position: center;
      background-size: cover;
      background-color: #2e2e22;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      min-height: 120px;
      width: 100%;
      color: #fff;
      font-size: 13px;
      padding: 12px;
      text-align: center;
    }

    li:hover a {
      transform: scale(1.1);
    }
  }

  .main-content {
    padding-top: 37px;

    * {
      font-size: 15px;
      color: #2e2e22;
    }
  }
}

@media (width < 768px) {
  .devocional-content {
    .related {
      white-space: nowrap;
      overflow-x: scroll;

      li {
        white-space: normal;
        width: 150px;
        min-height: 90px;
      }
    }
  }
}

@media (width >= 768px) {
  .devocional-content {
    .banner-fundo {
      padding-top: 114px;
      min-height: 350px;
    }

    .banner-fundo__content {
      padding-right: 44px;
    }

    .banner-fundo__content,
    .main-content {
      width: 47%;
      max-width: 553px;
      margin-left: auto;
    }

    .container--showcase {
      z-index: 30;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 114px;
    }

    .related {
      flex-direction: column;
      width: 28%;
      max-width: 186px;
    }

    .showcase {
      position: absolute;
      max-width: 660px;
      width: 48%;
      flex-direction: row;
      gap: 6.5%;

      .image {
        width: 66%;
      }
    }
  }
}
