.banner {
  position: relative;
  height: 100px;
  margin-bottom: 40px;
}

.banner::before {
  content: "";
  position: absolute;
  top: 4.5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.banner::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 120px;
  height: 5px;
  background-color: var(--red);
}

.banner-text {
  position: absolute;
  left: 10px;
  top: 42.5px;
  color: #231815;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.banner-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.description {
  margin-bottom: 2rem;
}

.document {
  background-color: var(--bg);
  padding: 50px 0px 5px;
}

.knowledge-base {
  padding: 50px 0px 5px;
}

.knowledge-base .doc-card {
  background-color: var(--bg);;
  border: 1px solid var(--gray);
}

.knowledge-base .doc-card-description {
  min-height: 80px;
}

.doc-card {
  padding: 15px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  overflow: hidden;
  position: relative;
}

.doc-card-image {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.doc-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.doc-card-body {
  display: flex;;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}

.doc-card-title {
  color: #26395c;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  min-height: 60px;
  letter-spacing: -0.2px;
}

.doc-card-description {
  color: #231815;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.85;
  min-height: 110px;
}
