.gc-employee {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: row;
  gap: 24px;
  padding: 16px;
  border-bottom: solid 0.5px #c8d3da;
}
@media all and (min-width: 790px) {
  .gc-employee {
    padding: 20px;
  }
}
.gc-employee figure {
  width: 78px;
  height: 78px;
  margin: 0;
  border-radius: 4px;
  min-width: 78px;
}
@media all and (min-width: 790px) {
  .gc-employee figure {
    width: 43px;
    height: 43px;
    min-width: 43px;
  }
}
.gc-employee figure img {
  object-fit: cover;
  width: 78px;
  height: 78px;
  aspect-ratio: 1/1;
  border-radius: 4px;
}
@media all and (min-width: 790px) {
  .gc-employee figure img {
    width: 43px;
    height: 43px;
  }
}
.gc-employee header {
  flex: 1 1 auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 4px;
}
.gc-employee header h2 {
  font-size: 16px;
  font-weight: 500;
}
.gc-employee header p.position {
  color: #5a5858;
  margin-bottom: 10px;
}
.gc-employee header a {
  cursor: pointer;
  text-decoration: none;
  transition: all 250ms ease-in-out;
}
.gc-employee header a svg {
  margin-right: 10px;
  vertical-align: text-top;
}
.gc-employee header a:hover {
  text-decoration: underline;
}
.gc-employee header p,
.gc-employee header a {
  font-size: 14px;
  font-weight: 400;
}
.gc-employee header * {
  margin: 0;
}

.gc-employee-large {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 15px;
  padding: 0;
}
.gc-employee-large figure {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 4px;
}
.gc-employee-large figure img {
  object-fit: cover;
  width: 321px;
  height: 321px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  max-width: 100%;
}
.gc-employee-large header {
  width: 100%;
  max-width: 321px;
}
.gc-employee-large h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.gc-employee-large p.position {
  color: #5a5858;
  margin-bottom: 0;
  margin-top: 0;
}
.gc-employee-large p.contact {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
  margin-top: 8px;
  margin-bottom: 0;
}
.gc-employee-large a {
  cursor: pointer;
  text-decoration: none;
  transition: all 250ms ease-in-out;
}
.gc-employee-large a svg {
  margin-right: 10px;
  vertical-align: middle;
}
.gc-employee-large a:hover, .gc-employee-large a:focus {
  text-decoration: underline;
}
.gc-employee-large a.email {
  text-decoration: underline;
}
.gc-employee-large a.email:hover, .gc-employee-large a.email:focus {
  text-decoration: none;
}
.gc-employee-large p,
.gc-employee-large a {
  font-size: 16px;
  font-weight: 400;
}
.gc-employee-large * {
  margin: 0;
}

.gc-post {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
  /* important so that backend also follows the rule */
  text-decoration: none !important;
  color: #1e2229;
  cursor: pointer;
}
.gc-post figure {
  overflow: hidden;
  aspect-ratio: 7/4;
  width: 100%;
  margin: 0;
  border-radius: 16px;
  position: relative;
}
.gc-post figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gc-post figure .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #adc8ff;
  opacity: 0;
  z-index: 9999;
  transition: all 250ms ease-in-out;
}
.gc-post header {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}
.gc-post header * {
  margin: 0;
}
.gc-post header h2,
.gc-post header .cats {
  font-weight: 500;
}
.gc-post header h2 {
  padding: 10px 0;
  font-size: 24px;
}
.gc-post header .cats {
  font-size: 16px;
  text-transform: UPPERCASE;
}
.gc-post header .fake-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
  padding-bottom: 5px;
}
.gc-post header .summary {
  text-wrap: balance;
  font-weight: 300;
}
.gc-post header .summary,
.gc-post header .fake-link {
  font-size: 20px;
}
.gc-post:hover .fake-link {
  text-decoration-thickness: 2px;
  font-weight: 500;
}
.gc-post:hover .overlay {
  opacity: 0.3;
}

.gc-partner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  /* important to make backend respect style */
  text-decoration: none !important;
  padding: 25px;
  background-color: #dbe7ff;
  border-radius: 16px;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}
.gc-partner h2,
.gc-partner p {
  color: #333a45;
}
.gc-partner h2 {
  grid-area: 1/1/2/2;
  font-size: 24px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.gc-partner p {
  grid-area: 1/2/2/4;
  font-size: 20px;
  font-weight: 300;
}
.gc-partner:hover {
  background-color: #bad0ff;
}

.gc-service {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
  padding: 16px 0;
  border-bottom: solid 1px #c8d3da;
  margin: 0;
}
@media all and (min-width: 768px) {
  .gc-service {
    padding: 32px 0;
    margin: 0;
  }
}
.gc-service header h2 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 28.8px;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
}
@media all and (min-width: 768px) {
  .gc-service header h2 {
    font-size: 24px;
  }
}
.gc-service header h2 svg {
  margin-right: 20px;
  transition: all 300ms ease-in-out;
}
.gc-service:focus {
  box-shadow: 0 0 0 1px #f8f7f7;
}
.gc-service:hover {
  text-decoration: none;
}
.gc-service:hover h2 {
  text-decoration: underline;
}
.gc-service:hover h2 svg {
  transform: translateX(10px);
}

.gc-project {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.gc-project figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.gc-project figure img {
  transition: all ease 0.3s;
  object-fit: cover;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.gc-project figure .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gc-project figure:hover .overlay {
  opacity: 1;
}
.gc-project header h2 {
  font-size: 20px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 28.8px;
}
@media screen and (min-width: 790px) {
  .gc-project header h2 {
    font-size: 24px;
  }
}
.gc-project header .summary {
  font-size: 20px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 2px;
  line-height: 28.8px;
}
@media screen and (min-width: 790px) {
  .gc-project header .summary {
    font-size: 24px;
  }
}
.gc-project header .industry {
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 16px;
}
.gc-project:focus {
  box-shadow: 0 0 0 1px #f8f7f7;
}
.gc-project:hover {
  text-decoration: none;
}
.gc-project:hover h2 {
  text-decoration: underline;
}
.gc-project:hover figure img {
  transform: scale(1.03);
}

.gc-news {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.gc-news figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.gc-news figure img {
  transition: all ease 0.3s;
  object-fit: cover;
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
}
.gc-news figure .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gc-news figure:hover .overlay {
  opacity: 1;
}
.gc-news header {
  background-color: #ffffff;
  padding: var(--wp--preset--spacing--24);
}
.gc-news header h2 {
  font-size: 20px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 28.8px;
}
@media screen and (min-width: 790px) {
  .gc-news header h2 {
    font-size: 24px;
  }
}
.gc-news header .post-date {
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 16px;
}
.gc-news:focus {
  box-shadow: 0 0 0 1px #f8f7f7;
}
.gc-news:hover {
  text-decoration: none;
}
.gc-news:hover h2 {
  text-decoration: underline;
}
.gc-news:hover figure img {
  transform: scale(1.03);
}

.gc-industry {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: clamp(20px, 2vw, 36px);
  background-color: #ffffff;
  width: auto !important;
}
.gc-industry figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.gc-industry figure img {
  transition: all ease 0.3s;
  object-fit: cover;
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
}
.gc-industry figure .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gc-industry figure:hover .overlay {
  opacity: 1;
}
.gc-industry header h2 {
  font-size: var(--wp--preset--font-size--xx-large);
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 28px;
  line-height: 28.8px;
}
.gc-industry header .summary {
  font-size: 16px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 28.8px;
}
.gc-industry header .fake-link {
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  margin-top: 28px;
  margin-bottom: 0;
}
.gc-industry:focus {
  box-shadow: 0 0 0 1px #f8f7f7;
}
.gc-industry:hover p {
  text-decoration: none;
}
.gc-industry:hover h2 {
  text-decoration: underline;
}
.gc-industry:hover figure img {
  transform: scale(1.03);
}

.gc-product {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: clamp(15px, 2vw, 20px);
  background-color: transparent;
  border: solid 1px var(--wp--preset--color--light-blue);
  width: auto !important;
}
.gc-product figure {
  position: relative;
  margin: 28px 0 0;
  overflow: hidden;
  text-align: center;
}
.gc-product figure img {
  transition: all ease 0.3s;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 250px;
}
.gc-product figure .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gc-product figure:hover .overlay {
  opacity: 1;
}
.gc-product header h2 {
  font-size: var(--wp--preset--font-size--x-large);
  font-weight: 500;
  margin-bottom: 28px;
  margin-top: 28px;
  line-height: 28.8px;
}
.gc-product header .summary {
  font-size: 16px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 28.8px;
  margin-top: 28px;
}
.gc-product header .price {
  font-size: var(--wp--preset--font-size--x-large);
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 28.8px;
}
.gc-product header .month_price {
  font-size: 14px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 28.8px;
}
.gc-product:focus {
  box-shadow: 0 0 0 1px #f8f7f7;
}
.gc-product:hover p {
  text-decoration: none;
}
.gc-product:hover h2 {
  text-decoration: underline;
}
.gc-product:hover figure img {
  transform: scale(1.03);
}

@media screen and (max-width: 800px) {
  .gc-post {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .gc-post header h2 {
    font-size: 20px;
    padding: 5px 0;
  }
  .gc-post header .sumamry,
  .gc-post header .fake-link {
    font-size: 16px;
  }
  .gc-post header .cats {
    padding-top: 16px;
    font-size: 12px;
    font-weight: 300;
  }
  .post-type-multi-bc_service {
    gap: 0 !important;
  }
}
.post-type-multi.display-row {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 30px;
}
.post-type-multi.display-row > * {
  width: 100%;
  overflow: hidden;
}
.post-type-multi.display-row#row-2, .post-type-multi.display-row[data-columns="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.post-type-multi.display-row#row-3, .post-type-multi.display-row[data-columns="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.post-type-multi.display-row#row-4, .post-type-multi.display-row[data-columns="4"] {
  grid-template-columns: repeat(4, 1fr);
}
.post-type-multi.display-row#row-5, .post-type-multi.display-row[data-columns="5"] {
  grid-template-columns: repeat(5, 1fr);
}
.post-type-multi.display-row#row-6, .post-type-multi.display-row[data-columns="6"] {
  grid-template-columns: repeat(6, 1fr);
}

@media screen and (max-width: 1000px) {
  .post-type-multi.display-row#row-5, .post-type-multi.display-row[data-columns="5"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .post-type-multi.display-row#row-6, .post-type-multi.display-row[data-columns="6"] {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .post-type-multi.display-row#row-2, .post-type-multi.display-row#row-3, .post-type-multi.display-row[data-columns="2"], .post-type-multi.display-row[data-columns="3"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-type-multi.display-row#row-4, .post-type-multi.display-row#row-5, .post-type-multi.display-row#row-6, .post-type-multi.display-row[data-columns="4"], .post-type-multi.display-row[data-columns="5"], .post-type-multi.display-row[data-columns="6"] {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .post-type-multi.display-row#row-2, .post-type-multi.display-row#row-3, .post-type-multi.display-row#row-4, .post-type-multi.display-row#row-5, .post-type-multi.display-row#row-6, .post-type-multi.display-row[data-columns="2"], .post-type-multi.display-row[data-columns="3"], .post-type-multi.display-row[data-columns="4"], .post-type-multi.display-row[data-columns="5"], .post-type-multi.display-row[data-columns="6"] {
    grid-template-columns: repeat(1, 1fr);
  }
}
