.px-socials {
  width: var(--baseWidth);
  max-width: var(--maxWidth);
  margin: 50px auto;
}
@media all and (max-width: 1024px) {
  .px-socials {
    margin: 40px auto;
  }
}
.px-socials-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.px-socials-inner .item {
  flex: 1;
  max-width: 244px;
  min-width: 244px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 9px 45px 10px rgba(0, 0, 0, 0.06);
  background: #fff;
}
.px-socials-inner .item .image {
  flex: 0 0 200px;
  position: relative;
  width: 100%;
}
.px-socials-inner .item .image > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
.px-socials-inner .item .image .image_section {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.px-socials-inner .item .image .image_section img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--baseTransition);
}
.px-socials-inner .item .image:hover .image_section img, .px-socials-inner .item .image:focus .image_section img {
  transform: scale(1.1);
}
.px-socials-inner .item .content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 35px 10px;
}

.wp-block-columns .px-socials,
.px-frame-layout .px-socials,
.accordion-content .px-socials,
.tab_wrapper .px-socials {
  width: 100%;
}