:root {
  --color-primary: #2560d8;
  --color-yellow: #e2ee4e;
  --color-red: #ef5311;
  --color-tomato: #ff4f00;
  --color-bg: #fafafa;

  --color-text: #272928;
  --color-subtext: #505251;
  --color-light-text: #7f7f7f;

  --container-width: 1600px;

      --padding-section: clamp(20px, 6vw, 70px);

  --shadow: 0 4px 10px #00000036;
}

.business-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  align-items: normal;
}
.section--footer .footer__middle .section--webapp__content,
.section--footer .footer__middle .card--big {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* ================= Custom solution block ================= */

.custom-solution__card {
  display: flex;
  gap: 32px;
  padding: 32px 24px;
  background: #f7f7f7;
  border-radius: 20px;
  box-shadow: var(--shadow);
  align-items: center;
  flex-wrap: wrap;
}

/* Content */
.custom-solution__content {
  flex: 1 1 320px;
}

.custom-solution__title {
  margin-bottom: 24px;
  line-height: 1.3;
}

/* Items */
.custom-solution__item {
  margin-bottom: 20px;
}

.custom-solution__item:last-child {
  margin-bottom: 0;
}

.custom-solution__label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background-color: #e5edf4;
  color: var(--color-primary);
  font-size: 18px;
}
/* Media */
.custom-solution__media {
  /* flex: 1 1 260px; */
  display: flex;
  justify-content: center;
}
.custom-solution__media img{
  width: 100%;
}

.custom-solution__media .img-placeholder {
  width: 100%;
  max-width: 360px;
  height: 260px;
  background: #e5e5e5;
  border-radius: 16px;
}


/* переопределение */
.business-card__top .card--big{
    box-shadow: var(--shadow);
}
.business-card__side{
    flex: 1;
}
.card--small{
   box-shadow: var(--shadow); 
}
/* ================= Adaptive ================= */

/* ≥ 768px */
@media (min-width: 768px) {
  .custom-solution__card {
    padding: 48px;
    gap: 20px;
  }

  .custom-solution__media .img-placeholder {
    height: 300px;
  }
}

/* ≥ 1200px */
@media (min-width: 1200px) {
  .custom-solution__media .img-placeholder {
    height: 340px;
  }
}
