.hero-header {
  background-color: #2D589C;
  text-align: center;
  margin-bottom: 50px;
}

.calculator-box {
  padding: 15px; 
  width: 400px; 
  height: 250px; 
  border-radius: 5px; 
  background-color: #F1F6FE; 
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  text-decoration: none;
 
}

.calculator-box:hover {
  background-color: #c8dcfa;
  cursor: pointer;
}

.calculator-box h2 {
  margin: 0px;
  text-align: left;
}

.calculator-box p {
  font-size: 16px; 
  margin: 0px;
}

.arrow {
  font-size: 24px;
}

.calculator-box__content {
  font-size: 14px;
}

.grid-container {
  max-width: 1000px;
  margin: 20px auto;
  display: grid;
  grid-template-areas: 
    "box1 box2"
    "box1 box3";
  column-gap: 20px;
  row-gap: 20px;
  }

.box-1 {
  grid-area: box1;
  height: 100%;
  width: 100%;
}
.box-2 {
  grid-area: box2;
  height: 100%;
  width: 100%;
}
.box-3 {
  grid-area: box3;
  height: 100%;
  width: 100%;
}

.tagline h2 {
  margin-top: 20px; 
      color: white; 
      font-size: 34px; 
      font-weight: 700;
      /* line-height: 20; */
}
.tagline {
  display: flex;
  justify-content: center;
}
.tagline-description {
  margin-top: 20px;
}

/* Responsive */

@media (max-width: 767px) {
  /* .box-3 {
    background-color: blue;
  } */

  .grid-container {
    max-width: 1000px;
    margin: 20px auto;
    display: grid;
    grid-template-areas: 
      "box1 box1"
      "box2 box3";
    column-gap: 20px;
    row-gap: 15px;
    margin-left: 15px;
    margin-right: 15px;
    }

    .box-1 {
      grid-area: box1;
      height: 100%;
      min-height: 300px;
      width: 100%;
    }
    .box-2 {
      grid-area: box2;
      height: 100%;
      width: 100%;
    }
    .box-3 {
      grid-area: box3;
      height: 100%;
      width: 100%;
    }

    .tagline {
      display: block;
    }
    .tagline-description {
      margin-top: 35px;
    }
    .hero-header {
      margin-bottom: 20px;
    }
    
}

@media (min-width: 660px) {
  .calculator-box__content p{
    line-height: 25px;
  }
  
}



/* <div class="statistic-box">
      <div class="statistic-box__content">
        <p class="title">Mortgage Rate</p>
        <p class="statistic">4.55%</p>
        <a class="link" href="/">more</a>
      </div>
    </div> */



.statistic-row {
  display:flex; 
  margin: auto; 
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: center;
}

.statistic-box {
  max-width: 275px;
  min-width: 145px;
  padding: 10px;
  margin: 10px;
}

.statistic-box__content {
  text-align: center;
}

.statistic-box__content .title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.statistic-box__content .statistic {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0px;
}

.statistic-box__content .link {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 14px;
}


.article-row {
  display:flex; 
  margin: auto; 
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: center;
}

.article-box {
  max-width: 800px;
  min-width: 145px;
  padding: 10px;
  margin: 10px;
}

.article-box__content {
  text-align: center;
}

.article-box__content .title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.article-box__content .date {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0px;
}

.article-box__content .link {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 14px;
}