.concept_grid {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.concept_grid .layout {
  margin-top: 2.5rem;
  flex: 1;
}

.concept_grid .layout figure {
  height: 100%;
  max-height: 25rem;
}

.concept_grid .layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.concept_grid .link_section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: var(--color-primary);
  color: white;
}

.concept_grid .link_section a {
  text-decoration: none !important;
  white-space: nowrap;
}

.concept_grid .link_section a:hover {
  text-decoration: underline !important;
}

.concept_grid .link_section a::before {
	content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10.309' height='21.544' viewBox='0 0 16.309 27.544'><path d='M14.516,27.544a1.787,1.787,0,0,1-1.268-.525L0,13.772,13.247.525A1.793,1.793,0,1,1,15.784,3.06L5.072,13.772,15.784,24.483a1.793,1.793,0,0,1-1.268,3.061' fill='white'/></svg>");
	margin-right: 0.5rem;
	vertical-align: middle;
	transform: translateY(3px);
}

@media (max-width: 992px) {
  .concept_grid .layout figure {
    max-height: 15rem;
  }

  .concept_grid .link_section a {
    font-size: 0.9rem;
  }

  .concept_grid {
    gap: 1rem;
  }
}

@media (max-width: 530px) {
  .concept_grid {
    display: flex;
    flex-direction: column;
  }

  .concept_grid .layout figure {
    max-height: unset;
    height: 100%;
  }

  .concept_grid .link_section a {
    font-size: 1rem;
  }

  .concept_grid {
    gap: 0;
  }

  .concept_grid .link_section a::before {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16.309' height='21.544' viewBox='0 0 16.309 27.544'><path d='M14.516,27.544a1.787,1.787,0,0,1-1.268-.525L0,13.772,13.247.525A1.793,1.793,0,1,1,15.784,3.06L5.072,13.772,15.784,24.483a1.793,1.793,0,0,1-1.268,3.061' fill='white'/></svg>");
    margin-right: 0.5rem;
    vertical-align: middle;
    transform: translateY(0);
    width: 10px;
    height: 10px;
  }
}
