﻿#tc-info {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding-bottom: 2rem;
}
#tc-info::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75%;
  width: 100%;
  background-image: url(../img/tea-info-bg.png);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.tc-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#tc-info .tc-info-head {
  width: 100%;
  padding-top: 4rem;
  position: relative;
}
#tc-info .tc-info-head .faculty {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  line-height: 6rem;
  font-size: 6rem;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(45, 77, 158, 0.1) 0%,
    rgba(45, 77, 158, 0) 99.91%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -1;
}
#tc-info .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
#tc-info .info .name {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}
#tc-info .info .name-en {
  color: #c875f0;
}
#tc-info .info-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
#tc-info .info-img img {
  object-fit: cover;
  width: 70%;
  aspect-ratio: 5 / 7;
}
#tc-text-body h1 {
  position: relative;
  padding-left: 2rem;
}

#tc-text-body h1::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 100%;
  background: url(../img/tea-h1.png) lightgray 50% / cover no-repeat;
}