.tendersPage .breadcrumbsWrap {
  margin: 0px 0 10px;
}

.breadcrumbs {
  font-size: 13px;
  line-height: 28px;
  color: #3B3B3B;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: #3B3B3B; text-decoration: none; }
.breadcrumbs .current { color: #737373; }
.breadcrumbs .sep { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; }
.breadcrumbs .sep .sep-icon {
  display: block;
  width: 18px;
  height: 18px;
  background: #242C6E;
  -webkit-mask: url('/local/templates/centino-heat/assets_new/icons/main-page/arrow-long-right.svg') no-repeat center/contain;
          mask: url('/local/templates/centino-heat/assets_new/icons/main-page/arrow-long-right.svg') no-repeat center/contain;
}

.tendersTitle {
  font-size: 32px;
  line-height: 36px;
  font-weight: 400;
  margin: 0 0 28px;
}

.tendersIntro {
  display: flex;
  gap: 120px;
  align-items: start;
  flex-wrap: wrap;
}

.tendersIntro__text {
  flex: 1 1 320px;
  max-width: 100%;
  min-width: 0;
}

.tendersIntro__text p {
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin: 0 0 18px;
}
.tendersIntro__text p:last-child { margin-bottom: 0; }

.tendersIntro__card {
  flex: 0 1 320px;
  width: 100%;
  max-width: 320px;
  height: 207px;
  border-radius: 8px;
  background: #EFFBFF;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tendersIntro__card-top {
  display: flex;
  gap: 16px;
  align-items: center;
}

.tiIcon {
  position: relative;
  width: 56px;
  height: 56px;
}

.tiIcon__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00FFC8;
  display: block;
}

.tiIcon__glyph {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: #007E62;
  -webkit-mask: url('/local/templates/centino-heat/assets_new/icons/header/tenders.svg') no-repeat center/contain;
          mask: url('/local/templates/centino-heat/assets_new/icons/header/tenders.svg') no-repeat center/contain;
}

.tiCardTitle {
  font-size: 16px;
  line-height: 22px;
  color: #1F1F1F;
  max-width: 150px;
}

.tiCardBtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid #242C6E;
  color: #242C6E;
  font-weight: 500;
  background-color: #FFF;
  font-size: 14px;
  text-decoration: none;
}

.tendersPage {
  margin: 8px;
}
@media (max-width: 950px) {
  .tendersIntro {
      gap: 60px;
  }
}
@media (max-width: 900px) {
  .tendersIntro { flex-direction: column; }
  .tendersIntro__card { width: 100%; height: auto; display: none;}
  .tiCardTitle { max-width: none; }
  .tendersIntro__text {
    flex: 1 1 20px;
  }
}

.tendersProjects {
  margin-top: 64px;
}

.tpHeader {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 34px;
}

.tpList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 46px;
}

@media (max-width: 900px) {
  .tpList {
    grid-template-columns: 1fr;
  }
}

.tpCard {
  position: relative;
  width: 100%;
  height: 417px;
  border-radius: 8px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1.65) 100%), var(--tp-img, none);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 24px 28px;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  text-align: center;
  z-index: 0;
}
.tpCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFFFF1A;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}
.tpCard:hover::after { opacity: 1; }

.tpCard__title {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 240px;
  font-size: 18px;
}

.tpMoreWrap {
  display: flex;
  justify-content: center;
}

.tpMore {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 277px;
  height: 42px;
  padding: 10px 23px;
  border-radius: 8px;
  border: 1px solid #242C6E;
  color: #242C6E;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.tendersReviews {
  margin-top: 72px;
}

.trTitle {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 26px;
}

.trList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.trCard {
  flex: 1 1 calc(50% - 25px);
  max-width: 639px;
  width: 100%;
  /* min-height: 464px; */
  border-radius: 12px;
  border: 1px solid #E3E8FF;
  background: #FCFCFC;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.trQuote__icon {
  display: inline-block;
  width: 32px;
  height: 23px;
  background: #242C6E;
  -webkit-mask: url('/local/templates/centino-heat/assets_new/icons/main-page/zitata.svg') no-repeat center/contain;
          mask: url('/local/templates/centino-heat/assets_new/icons/main-page/zitata.svg') no-repeat center/contain;
}

.trText {
  margin: 22px 0 22px;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  width: 100%;
  max-width: 496px;
  word-break: break-word;
}
.trText p { margin: 0; }
.trText__full { display: none; margin-top: 8px; }
.trCard.is-expanded .trText__short { display: none; }
.trCard.is-expanded .trText__full { display: block; }

.trToggle {
  margin-top: 12px;
  padding: 0;
  border: none;
  background: none;
  color: #242C6E;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
}
.trToggle:hover { text-decoration: underline; }
.trToggle:focus { outline: 2px solid rgba(36,44,110,.4); outline-offset: 3px; }

.trDivider {
  height: 1px;
  background: #E5E8F6;
  margin-top: 24px;
  margin-bottom: 24px;
}

.trAuthor {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.trAuthor__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.trAuthor__name {
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.trAuthor__role {
  font-size: 15px;
  line-height: 21px;
  color: #000;
  margin-top: 4px;
}

.tendersCta {
  margin: 60px auto 50px;
  padding: 18px 24px;
  border-radius: 16px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 640px;
}
.tendersCta__icon {
  position: relative;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}
.tendersCta__icon-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00FFC8;
  display: block;
}
.tendersCta__icon-glyph {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: #007E62;
  -webkit-mask: url('/local/templates/centino-heat/assets_new/icons/header/tenders.svg') no-repeat center/contain;
          mask: url('/local/templates/centino-heat/assets_new/icons/header/tenders.svg') no-repeat center/contain;
}
.tendersCta__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tendersCta__title {
  font-size: 18px;
  line-height: 24px;
  color: #0F172A;
}
.tendersCta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid #242C6E;
  color: #242C6E;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.tendersCta__btn:hover {
  background: rgba(36,44,110,.08);
}
.tendersCta__btn:focus {
  outline: 2px solid rgba(36,44,110,.3);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .trList {
    flex-direction: column;
    gap: 30px;
  }
  .trCard {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {

  .tendersIntro {
      gap: 30px;
  }

  .tendersCta {
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .tendersCta__btn {
    width: 100%;
    justify-content: center;
  }

  .tiCardBtn {
    margin-top: 15px
  }
  
  .tpCard {
    height: 300px;
  }

  .tendersProjects {
      margin-top: 32px;
  }

  .tpList {
      margin-bottom: 23px;
  }

  .tendersReviews {
      margin-top: 36px;
  }
}
