.o-blog-highlight {
  --grid-gap: 2rem;
}
@media screen and (min-width: 1100px) {
  .o-blog-highlight {
    --grid-gap: 3rem;
  }
}
.o-blog-highlight__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--grid-gap) var(--grid-gap);
}
.o-blog-highlight__items .o-blog-highlight__item {
  border-radius: 1.2rem;
  overflow: hidden;
  --flex-items: 1;
  width: calc(100% / var(--flex-items) - (var(--flex-items) - 1) / var(--flex-items) * var(--grid-gap));
}
.o-blog-highlight__items .o-blog-highlight__item a {
  text-decoration: none;
  color: inherit;
}
.o-blog-highlight__items .o-blog-highlight__item .a-link svg {
  transition: transform var(--default-transition-easing) var(--default-transition-timing);
}
.o-blog-highlight__items .o-blog-highlight__item:hover .o-blog-highlight__item-image img {
  transform: scale(1.05);
}
.o-blog-highlight__items .o-blog-highlight__item:hover .a-link svg {
  transform: translateX(0.5rem);
}
@media screen and (min-width: 990px) {
  .o-blog-highlight__items--2 .o-blog-highlight__item {
    --flex-items: 2;
    flex: 1;
  }
}
.o-blog-highlight__item-inner {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1100px) {
  .o-blog-highlight__item-inner {
    flex-wrap: nowrap;
  }
}
.o-blog-highlight__item-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 30rem;
}
@media screen and (min-width: 1100px) {
  .o-blog-highlight__item-image {
    flex: 1;
  }
}
.o-blog-highlight__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform var(--default-transition-easing) var(--default-transition-timing);
}
.o-blog-highlight__item-content {
  width: 100%;
  padding: 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 1100px) {
  .o-blog-highlight__item-content {
    width: 50%;
    padding: 8rem 4rem;
    gap: 2.5rem;
  }
}
.o-blog-highlight__item-content p,
.o-blog-highlight__item-content h3 {
  margin: 0;
}
@media screen and (min-width: 1100px) {
  .o-blog-highlight__item-icon svg {
    width: 4rem;
    height: auto;
  }
}
.o-blog-highlight__item-tags {
  display: flex;
  gap: 1rem;
}
.o-blog-highlight__item-tag {
  color: rgb(var(--rgb-primary-border));
}
.o-blog-highlight__item-link.a-link {
  color: inherit;
}
.o-blog-highlight__item-size--2 .o-blog-highlight__item-inner {
  position: relative;
  height: 100%;
}
.o-blog-highlight__item-size--2 .o-blog-highlight__item-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.o-blog-highlight__item-size--2 .o-blog-highlight__item-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--rgb-primary), 0.2);
}
.o-blog-highlight__item-size--2 .o-blog-highlight__item-content {
  z-index: 2;
  position: relative;
  width: 100%;
  padding: 2rem;
  gap: 1.5rem;
}
@media screen and (min-width: 1100px) {
  .o-blog-highlight__item-size--2 .o-blog-highlight__item-content {
    padding: 3rem;
  }
}
.o-blog-highlight__item-size--2 .o-blog-highlight__item-icon {
  margin-bottom: 8rem;
  color: rgb(var(--rgb-primary));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  padding: 1.5rem;
  width: fit-content;
  background-color: rgba(var(--rgb-primary-bg), 0.5);
}
@media screen and (min-width: 1100px) {
  .o-blog-highlight__item-size--2 .o-blog-highlight__item-icon {
    margin-bottom: 12rem;
  }
}
@media screen and (min-width: 1100px) {
  .o-blog-highlight__item-size--2 .o-blog-highlight__item-icon svg {
    width: 3rem;
    height: auto;
  }
}
.o-blog-highlight__item-size--2 .o-blog-highlight__item-tags {
  flex-grow: 1;
  display: flex;
}
.o-blog-highlight__item-size--2 .o-blog-highlight__item-tag {
  color: inherit;
}
