.featured-post-heading {
  text-transform: uppercase;
}

section.featured-post {
  display: flex;
  max-width: unset;
  position: relative;
}
section.featured-post .block-content {
  flex-basis: 50%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

section.featured-post .block-content .post-title a
{
  text-decoration: none;
}

section.featured-post .block-content .post-title a:hover,
section.featured-post .block-content .post-title a:focus
{
  text-decoration: underline;
}

section.featured-post .block-content .block-content-inner {
  padding: 40px 40px var(--wp--preset--spacing--large);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
}

section.featured-post:is(.featured-events, .featured-insight, .featured-news, .featured-deals-cases) .block-content .block-content-inner {
  padding: 0px 40px var(--wp--preset--spacing--large);
}

section.featured-post .block-content .block-content-inner .featured-post-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
}
section.featured-post .block-content .block-content-inner .post-date {
  position: absolute;
  top: 0;
  background-color: #101820;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 16px 22px;
  text-transform: uppercase;
  white-space: nowrap;
  width: 125px;
}
section.featured-post .block-content .block-content-inner .post-terms {
  margin: var(--wp--preset--spacing--small) 0;
}
section.featured-post .block-content .block-link {
  text-align: right;
  width: 100%;
  position: relative;
  z-index: 1;
}
section.featured-post .block-content .block-link::before {
  content: "";
  display: block;
  height: 25px;
  width: 0;
  background-color: var(--wp--preset--color--accent);
  z-index: -1;
  transition: width 0.2s linear;
  position: absolute;
  right: 0;
}
section.featured-post .block-content .block-link:has(> a:hover, > a:focus, > a:active)::before {
  width: 100%;
}
section.featured-post .block-image {
  flex-basis: 50%;
  align-self: stretch;
  position: relative;
}

section.featured-post .block-image img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.featured-post .block-image.crop-image {
  height: calc(100% - 40px);
  position: absolute;
  top: 40px;
  right: 0;
}
section.featured-post.image-left {
  flex-direction: row-reverse;
}
section.featured-post.image-left .block-image.crop-image {
  right: unset;
  left: 0;
}
section.featured-post.image-left .block-content {
  justify-content: flex-start;
}
section.featured-post.image-left .block-content .block-content-inner {
  padding: 60px 0 60px 30px;
}
section.featured-post.image-left .block-content .block-link {
  text-align: left;
}
section.featured-post.image-left .block-content .block-link::before {
  right: unset;
  left: 0;
}
section.featured-post:not(.alignwide, .alignfull) {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
}

section.featured-post.featured-industries .block-link::before {
  background-color: var(--wp--preset--color--accent-4) !important;
}

section.featured-post.featured-expertise .block-content .block-link::before {
  background-color: var(--wp--preset--color--accent-5) !important;
}

@media screen and (max-width: 1023px) {
  section.featured-post {
    flex-direction: column-reverse;
  }
  section.featured-post .block-content {
    width: 100%;
    justify-content: flex-start;
  }
  section.featured-post .block-content .block-content-inner {
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  section.featured-post .block-image {
    width: 100%;
    aspect-ratio: calc(16 / 9);
    position: relative;
  }
  section.featured-post .block-image.crop-image {
    top: 5vw;
    position: relative;
  }
  section.featured-post.image-left {
    flex-direction: column-reverse;
  }
  section.featured-post.image-left .block-content {
    justify-content: flex-end;
  }
  section.featured-post.image-left .block-image {
    left: 0;
  }
}