:root {
  --dark-color: #1c1c1c;
  --black-color: #3b3b3b;
  --text-brand: #2c9d62;
  --rem-125: 0.125rem; /* 2px */
  --rem-250: 0.25rem; /* 4px */
  --rem-500: 0.5rem; /* 8px */
  --rem-750: 0.75rem; /* 12px */
  --rem-1000: 1rem; /* 16px */
  --rem-1250: 1.25rem; /* 20px */
  --rem-1500: 1.5rem; /* 24px */
  --rem-1750: 1.75rem; /* 28px */
  --rem-2000: 2rem; /* 32px */
  --rem-2250: 2.25rem; /* 36px */
  --rem-2500: 2.5rem; /* 40px */
  --rem-2750: 2.75rem; /* 44px */
  --rem-3000: 3rem; /* 48px */
  --rem-3250: 3.25rem; /* 52px */
  --rem-3500: 3.5rem; /* 56px */
  --rem-4000: 4rem; /* 64px */
  --rem-4500: 4.5rem; /* 72px */
  --rem-5000: 5rem; /* 80px */
  --rem-5500: 5.5rem; /* 88px */
  --rem-6000: 6rem; /* 96px */
  --rem-6500: 6.5rem; /* 104px */
  --rem-7000: 7rem; /* 112px */
  --rem-7500: 7.5rem; /* 120px */
  --rem-8000: 8rem; /* 128px */
  --rem-8500: 8.5rem; /* 136px */
  --rem-9000: 9rem; /* 144px */
  --rem-9500: 9.5rem; /* 152px */
  --rem-10000: 10rem; /* 160px */
}

.title {
  color: var(--dark-color);
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

.description {
  color: var(--black-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: var(--rem-500);
}

.card {
  margin-top: var(--rem-1000);
}

.card.upper-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--rem-1000);
  margin-bottom: var(--rem-1000);
}

.upper-card .info h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--dark-color);
  margin: 0;
}

.upper-card .info p {
  margin: 0;
  font-size: 14px;
  font-weight: 500px;
  line-height: 24px;
  color: var(--black-color);
}

.upper-card .links,
.upper-card .links div {
  display: flex;
  align-items: center;
}

.upper-card .links div a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  margin-right: 4px;
}

.upper-card .links div a svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center center;
}

.tab-content {
  display: none;
}

.tab-content.tab-active {
  display: block;
}

.tabs {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
}

.tabs .tab {
  color: var(--black-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid transparent;
  margin-bottom: -1px;
}

.tabs .tab.tab-active {
  color: var(--text-brand);
  border-bottom: 1.5px solid var(--text-brand);
}

.tabs .tab:not(:first-child) {
  margin-left: 16px;
}

.text-field-search {
  cursor: pointer;
}

.tab-content li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e3e3e3;
  padding: var(--rem-750) 0;
}

.tab-content li div {
  display: flex;
  align-items: center;
}

.tab-content li p {
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.tab-content li div > a {
  width: var(--rem-2500);
  height: var(--rem-2500);
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-content li div button {
  margin: 4px 0 4px 4px;
  height: 32px;
  border: 1px solid #d8f3e0;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .upper-card,
  .upper-card .links {
    flex-direction: column;
    align-items: flex-start;
  }

  .upper-card .links .button {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 658px) {
  .social-page {
    padding: var(--rem-1000);
  }

  .upper-card,
  .upper-card .links {
    flex-direction: column;
    width: 100%;
  }

  .upper-card .links div {
    width: 100%;
    justify-content: space-between;
  }

  .upper-card .links .button {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .tabs {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .tab-content li {
    flex-direction: column;
    align-items: flex-start;
  }
}

.social-page .card.content-card {
  padding: var(--rem-1000);
  padding-top: var(--rem-250);
}
