* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2{
  font-size: 16px;
}

.content-wrapper {
  width: 100%;
  flex-direction: column;
  margin: 0;
  padding: 0;
  display: flex;

}

/*
#text-article-box-section-noexcerpt {
  display: flex;
  flex-direction: column;
}*/

.text-article-box {
  h3 {
    font-size: 17px;
  }
}

/*
#article-boxes-with-images-section {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
  gap: 30px;
}*/

/* General layout */
#distributor-top-section {
  display: flex;
  gap: 20px;
  height: 100%;
  padding-bottom: 15px;

  @media only screen and (max-width:1120px) {
      flex-direction: column;
  }

}

/* Top Section: columnas */
#text-article-box-section-noexcerpt {
  @media only screen and (min-width:1121px) {
    width: 25%;
  }
  /*display: flex;
  flex-direction: column;
  gap: 50px;
  height: 100%;*/
}

#right-column {
  @media only screen and (min-width:1121px) {
    width: 25%;
  }

  display: flex;
  /*justify-content: center;*/
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}

/*
.read-more {
  display: inline;
  margin-top: 5px;
  color: blue;
  text-decoration: underline;
}
  */

.article-boxes-text-section {
  display: grid;
  justify-content: space-between;  
  
  @media only screen and (min-width: 1120px) {
    gap: 30px 20px;
    /*height: 325px;  */
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
  }

}

#load-more-articles {
  background-color: var(--excerpt-bg);
  color: white;
  text-align: center;
  padding: 0 30px;
  height: 44px;
  line-height: 44px;
  border-radius: 35px;
  align-self: center;
  margin: 50px 0;
  cursor: pointer;

  @media only screen and (max-width: 1120px) {
    margin: 20px 0 40px 0;
  }
}

.article-box-text-only {
  height: 100%;
}

#quote-container {
  height: 450px;

  @media only screen and (max-width: 1120px) {
    height: 482px;
    width: 390px;
  }
  
}


#quote-container-content {
  top: 100px;
  position: relative;
  background-color: var(--light-bg);
  height: 283px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  @media only screen and (max-width: 1120px) {
    flex-direction: column;
    top: 274px;
  }
}

#quote-text {
  margin: 50px 100px;
  flex-direction: column;
  display: flex;

  @media only screen and (max-width: 1120px) {
    margin: auto;
  }
}

#quote-phrase {
  font-size: 36px;
  line-height: 120%;
  font-style: italic;
  font-weight: bold;
  color: black;
  margin-bottom: 30px;

  @media only screen and (max-width: 1120px) {
    font-size: 24px;
  }

  
}

#quote-author {
  font-size: 25px;
  line-height: 44px;
  text-align: right;
}

#quotation-marks {
  position: relative;
  left: 100px;
  top: 60px;
  width: 50%;
  font-size: 175px;
  color: var(--excerpt-bg);
  height: 30px;
  z-index: 9999;
  font-weight: 700;

  @media only screen and (max-width: 1120px) {
    left: 20px; 
    font-size: 120px;
  }
  
}

#quote-image {
  right: 50px;
  object-fit: contain;

    /*
  @media only screen and (max-width: 1120px) {
    position: relative;
    right: 45px;
    bottom: 57px;
  } */
  
}

#quote-image-obj {
  height: 396px;
  width: 357px;
  
  position: relative;
  right: 45px;
  bottom: 57px;

  @media only screen and (max-width: 1120px) {
    height: 274px;
    width: 247px;

    position: relative;
  
    /*top: -277px;
    right: 150px;
    */
  }
}

/* right column banner */
.provider-banner-container {
    @media only screen and (min-width: 1120px) {
      margin: 0 0 0 auto;
    }

    @media only screen and (max-width: 1120px) {
      margin: auto;
    }
}

/* trading view widget */
.tradingview-widget-container {

    @media only screen and (min-width: 1120px) {
      margin: 0 0 0 auto;
    }
    
}