/* Minification failed. Returning unminified contents.
(2,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(21,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(26,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(27,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(28,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(29,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(30,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(37,13): run-time error CSS1039: Token not allowed after unary operator: '-body-gap'
(40,23): run-time error CSS1039: Token not allowed after unary operator: '-item-title-mb'
(41,19): run-time error CSS1039: Token not allowed after unary operator: '-block-title-fz'
(47,38): run-time error CSS1039: Token not allowed after unary operator: '-block-columns'
(49,24): run-time error CSS1039: Token not allowed after unary operator: '-block-columns'
(49,47): run-time error CSS1039: Token not allowed after unary operator: '-item-img-maxw'
(49,71): run-time error CSS1039: Token not allowed after unary operator: '-block-columns'
(49,99): run-time error CSS1039: Token not allowed after unary operator: '-block-gap'
(50,13): run-time error CSS1039: Token not allowed after unary operator: '-block-gap'
(57,19): run-time error CSS1039: Token not allowed after unary operator: '-item-img-maxw'
(74,13): run-time error CSS1039: Token not allowed after unary operator: '-item-info-gap'
 */
.team {
  --body-gap: 60px;
  --block-title-fz: 36px;
  --block-columns: 4;
  --block-gap: 40px;
  --item-title-mb: 40px;
  --item-img-maxw: 300px;
  --item-info-gap: 10px;
}
@media (max-width: 1200px) {
  .team {
    --block-title-fz: 32px;
  }
}
@media (max-width: 1024px) {
  .team {
    --body-gap: 40px;
    --block-title-fz: 28px;
    --block-columns: 2;
    --block-gap: 30px;
    --item-title-mb: 25px;
  }
}
@media (max-width: 460px) {
  .team {
    --block-title-fz: 20px;
    --block-columns: 1;
    --item-title-mb: 15px;
    --item-img-maxw: 100%;
    --item-info-gap: 5px;
  }
}

.team__body {
  display: flex;
  flex-direction: column;
  gap: var(--body-gap);
}
.team__title {
  margin-bottom: var(--item-title-mb);
  font-size: var(--block-title-fz);
  font-weight: 300;
  line-height: 1.2;
}
.team__list {
  display: grid;
  grid-template-columns: repeat(var(--block-columns), 1fr);
  justify-content: start;
  max-width: calc(var(--block-columns) * var(--item-img-maxw) + (var(--block-columns) - 1) * var(--block-gap));
  gap: var(--block-gap);
}
.team__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: var(--item-img-maxw);
}
.team__itemImg {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 460px) {
  .team__itemImg {
    max-width: 150px;
  }
}
.team__itemInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--item-info-gap);
}
.team__itemName {
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.team__itemPost {
  line-height: 1.3;
  text-align: center;
}
