.text-block {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 30% 70%; 
  box-sizing: border-box;
}

.text-block .color-box {
  width: 100%;
  height: 100%;
  background: #cfd3d7;
  display: block;
  background-position: center!important;
  background-size: cover!important;
}

.text-block .content {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 4rem 2.5rem;
  box-sizing: border-box;
}

.text-block .content p {
  font-family: 'Lato', sans-serif; 
  color: #666666;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

.text-block .content p.overline {
  font-family: 'Lato', sans-serif; 
  font-size: 12px;
  color: #95949e;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.1;
  text-transform: uppercase; 
}

.text-block .content p > a {
  text-decoration: none;
  color: #666666;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.text-block .content p > strong {
  text-decoration: none;
  color: #666666;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.text-block .content h1,
.text-block .content h2,
.text-block .content h3,
.text-block .content h4,
.text-block .content h5
{
  font-family: 'Vidaloka-Regular';
  font-size: 36px;
  line-height: 1.2;
  font-weight: 400; 
  color: #b5a167; 
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 600px;
}

@media only screen and (max-width: 768px) {
  .text-block .content h1,
  .text-block .content h2,
  .text-block .content h3,
  .text-block .content h4,
  .text-block .content h5
  { 
    font-size: 26px; 
  }
}


.text-block .content ul {
  margin: 0 0 12px;
  display: grid;
  gap: 5px;
  padding: 1rem;
  box-sizing: border-box;
}

.text-block .content ul li {
 list-style: inside;
 font-family: 'Lato', sans-serif;
 color: #666666;
 font-size: 16px;
 display: flex;
 align-items: center;
}

.text-block .content ul li::before {
  content: '–';
  padding-right: 5px;
}

.text-block .content ul li > a {
  text-decoration: none;
  color: #666666;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
} 

@media only screen and (max-width: 1280px) {
  .text-block .content {
    width: 100%; 
  }
}

@media only screen and (max-width: 768px) {
  .text-block {
    display: flex;
    flex-direction: column; 
    padding: 2rem;
  }
  
  body.single .text-block {
    padding: 0;
  } 

  .text-block .color-box {
    display: none;
  }
  .text-block.image .color-box {
    display: flex;
    width: 100%;
    min-height: 300px;
    margin-bottom: 1rem;
  }
  .text-block .content { 
    padding: 0px; 
  }

  body.single .text-block .content {
    width: 100%;
    padding: 1rem 0 0;
  }
}