.c4y-ctr {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 0 5rem;
  background: rgba(241, 245, 249, .3) !important;
}

.c4y-ctr__inner {
  width: 100%;
  max-width: var(--global-content-width, 1152px);
  padding-left: var(--global-content-edge-padding);
  padding-right: var(--global-content-edge-padding);
  margin: 0 auto;
}

.c4y-ctr__head {
  text-align: center;
  margin: 0 0 3rem;
}

.c4y-ctr__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  margin: 0 0 1rem;
  color: rgb(41, 54, 101) !important;
  background: rgba(41, 54, 101, .10);
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 20px !important;
}

.c4y-ctr__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}

.c4y-ctr__title {
  margin: 0 0 1rem !important;
  padding: 0 !important;
  color: rgb(20, 31, 56) !important;
  font-size: 30px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
}

.c4y-ctr__title-accent {
  color: rgb(41, 54, 101);
}

.c4y-ctr__subtitle {
  max-width: 42rem;
  margin: 0 auto !important;
  padding: 0 !important;
  color: rgb(107, 114, 128);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.c4y-ctr__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.c4y-ctr__card {
  background: #fff;
  border: 1px solid rgb(228, 231, 236) !important;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .3s ease, border-color .3s ease;
}

.c4y-ctr .c4y-ctr__card:hover {
  border-color: rgb(228, 231, 236) !important;
  box-shadow: 0 20px 25px -5px rgba(38, 54, 100, 0.10), 0 8px 10px -6px rgba(38, 54, 100, 0.10);
}

.c4y-ctr__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.c4y-ctr__logo-box {
  width: 4rem;
  height: 4rem;
  border-radius: .75rem;
  border: 1px solid rgb(228, 231, 236);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.c4y-ctr__logo-box img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.c4y-ctr__logo-fallback {
  color: rgb(41, 54, 101);
  font-weight: 700;
  font-size: 18px;
}

.c4y-ctr__company {
  margin: 0 0 .25rem !important;
  padding: 0 !important;
  color: rgb(20, 31, 56);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  white-space: nowrap;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.c4y-ctr__desc {
  margin: 0 !important;
  color: rgb(107, 114, 128) !important;
  font-size: 12px !important;
  line-height: 16px !important;
  font-weight: 400 !important;
}

.c4y-ctr__quote-wrap {
  position: relative;
  margin: 0 0 1rem;
}

.c4y-ctr__quote-icon {
  position: absolute;
  left: 0;
  top: -4px;
  color: rgba(41, 54, 101, 0.25);
}

.c4y-ctr__quote {
  margin: 0;
  padding-left: 1.5rem;
  color: rgb(107, 114, 128) !important;
  font-size: 14px !important;
  line-height: 23px !important;
  font-weight: 400 !important;
  font-style: italic;
}

.c4y-ctr__author {
  border-top: 1px solid rgb(228, 231, 236);
  padding-top: 1rem;
  margin-top: auto;
}

.c4y-ctr__author-name {
  margin: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  color: rgb(20, 31, 56);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.c4y-ctr__author-role {
  margin: 0;
  color: rgb(107, 114, 128);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .c4y-ctr__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .c4y-ctr__title {
    font-size: 36px !important;
    line-height: 40px !important;
  }
  .c4y-ctr__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
