:root {
  --brandon-grotesque: brandon-grotesque, sans-serif;
  --proxima-nova: proxima-nova, sans-serif;
  --blue: #005E9C;
  --orange: #F07824;
  --light-blue: #32AEE4;
  --very-dark-blue: #002535;
  --background-gray: #F1F3F4;
  --max-width: calc(1200px + 30px * 2);
  --content-width: 1200px;
  --content-padding: 30px;
  --phone: 768px;
  --tablet: 1280px;
  --columns-collapse: 781px;
}
@media screen and (max-width: 768px) {
  :root {
    --content-padding: 20px;
  }
}
@media screen and (max-width: 350px) {
  :root {
    --content-padding: 15px;
  }
}

.wp-block-showcase-posts {
  display: flex;
  gap: 26px;
}
@media screen and (max-width: 1024px) {
  .wp-block-showcase-posts {
    flex-direction: column;
  }
}
.wp-block-showcase-posts .post {
  border-radius: 10px;
  background: var(--background-gray);
  padding-block: 43px;
  padding-inline: 43px 26px;
  display: flex;
  position: relative;
  color: var(--blue);
}
@media screen and (max-width: 768px) {
  .wp-block-showcase-posts .post {
    padding-inline: 20px;
  }
}
.wp-block-showcase-posts .post .hover-diamond {
  display: none;
  position: absolute;
  z-index: 0;
  opacity: 0.1;
  height: 100%;
  margin: auto;
  right: 35px;
  top: 0;
  bottom: 0;
}
.wp-block-showcase-posts .post .post-content {
  width: min(434px, 100%);
  align-self: center;
}
.wp-block-showcase-posts .post .post-content .post-date {
  color: #005E9C;
  font-size: 16px;
  margin-bottom: 15px;
}
.wp-block-showcase-posts .post .post-content .post-link {
  text-decoration: none;
}
.wp-block-showcase-posts .post .post-content .post-excerpt {
  margin-block: 20px;
}
.wp-block-showcase-posts .post .post-content .read-more {
  position: absolute;
  right: 26px;
  bottom: 20px;
}
@media screen and (max-width: 768px) {
  .wp-block-showcase-posts .post .post-content .read-more {
    display: none;
  }
}
.wp-block-showcase-posts .post .post-content .read-more img, .wp-block-showcase-posts .post .post-content .read-more svg {
  width: 31px;
  aspect-ratio: 1/1;
}
.wp-block-showcase-posts .post .post-content .read-more:hover .read-more-circle {
  fill: white;
}
.wp-block-showcase-posts .post .post-content .read-more:hover .read-more-arrow {
  stroke: var(--blue);
}
.wp-block-showcase-posts .post-1 {
  height: 100%;
  position: relative;
}
.wp-block-showcase-posts .post-1:hover {
  background: white;
}
.wp-block-showcase-posts .post-1:hover .hover-diamond {
  display: block;
}
.wp-block-showcase-posts .post-1 .post-content {
  width: min(364px, 100%);
  z-index: 1;
}
.wp-block-showcase-posts .main-post-column {
  width: min(459px, 100%);
}
@media screen and (max-width: 1024px) {
  .wp-block-showcase-posts .main-post-column {
    width: 100%;
  }
}
.wp-block-showcase-posts .sec-post-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(620px, 100%);
  gap: 26px;
}
@media screen and (max-width: 1024px) {
  .wp-block-showcase-posts .sec-post-column {
    width: 100%;
  }
}
