/* Default & Left */
.block-highlighted{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 2rem auto;
}
@media(min-width: 48rem){
  .block-highlighted{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media(min-width: 62rem){
  .block-highlighted{
    gap: 4.5rem;
  }
}

.block-highlighted img{
  border-radius: var(--border-radius);
  width: 100%;
  height:auto
}

.block-highlighted .text{
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 0.55rem;
  hyphens: auto;
  padding: 0 1.5rem;
}
@media(min-width: 48rem){
  .block-highlighted .text{
    align-items: flex-start;
    padding: initial;
    text-align: left;
  }
}

.block-highlighted .text h3{
  color: var(--orange);
  font: var(--f-Poppins-24-700);
  margin-block: 0;
}
@media(min-width: 48rem){
  .block-highlighted .text h3{
    font: var(--f-Poppins-36-700);
  }
}
@media(min-width: 62rem){
  .block-highlighted .text h3{
    font: var(--f-Poppins-36-700);
  }
}

.block-highlighted .text a{
  font: var(--f-Poppins-18-700);
  /* text-transform: uppercase; */
  padding: 0.5rem 0.65rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  color: var(--blue);
  border: 3px solid var(--blue);
  display: inline-block;
  width: fit-content;
  margin-top: 0.5rem;
  cursor: pointer;
}
@media (min-width:48rem) {
  .block-highlighted .text a {
    padding: 0.75rem 1.125rem;
  }
}

.block-highlighted .text a:hover{
  background-color: var(--blue);
  color: white;
}

/* Variation Top */
@media(min-width: 48rem){
  .block-highlighted.with_top_image{
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
  }
  .block-highlighted.with_top_image .text{
    text-align: center;
    align-items: center;
    padding: 0 1.5rem;
  }
  .block-highlighted.with_top_image .text h3{
    font: var(--f-Poppins-36-700);
  }
}

/* Variation Right */
@media(min-width: 48rem){
  .block-highlighted.with_right_image{
    grid-template-areas: 'text image';
  }
  .block-highlighted.with_right_image .text{
    grid-area: text;
    padding-left: 4rem;
  }
  .block-highlighted.with_right_image .image{
    grid-area: image;
  }
}
