/* 10.1 GENERATIVE CASES POST */

.generative-post__hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: var(--spc-400) var(--spc-200) var(--spc-400) var(--spc-200);
  background-color: blue;
  color: white;
}

.generative-post__profile {
  display: grid;
  grid-template-columns: 7fr 13fr;
  gap: var(--spc-400);
}

.generative-post__title {
  font-size: var(--fs-400);
  font-weight: 400;
  line-height: 1.25;
  color: white;
}

.generative-post__tool-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: var(--fs-100);
  font-weight: 400;
  color: blue;
  background-color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease-in-out;
  margin-top: var(--spc-200);
}

.generative-post__tool-link:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.generative-post__profile__content {
  font-size: var(--fs-200);
  line-height: 1.5;
  font-weight: 400;
}

.generative-post__content {
  padding: 0 var(--spc-200) var(--spc-400) var(--spc-200);
}

.generative-post__content .wp-block-columns {
  gap: 2rem;
}

.generative-post__content .wp-block-image.is-style-rounded img {
  border-radius: var(--spc-200) !important;
  overflow: hidden;
}

.generative-post__media-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: var(--spc-200);
}

.generative-post__media {
  border-radius: var(--spc-200);
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.generative-post__content .grids-section.alignfull {
  margin-left: -2rem;
  margin-right: -2rem;
}

/* WP BLOCK TWEEKS  */
.generative-post__content
  .wp-block-button__link.has-white-color.has-black-background-color {
  transition: all 0.3s ease-in-out;
  border: 2px solid black;
}

.generative-post__content
  .wp-block-button__link.has-white-color.has-black-background-color:hover {
  background-color: white !important;
  color: black !important;
}
