.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;
}

.link-button-area {
  justify-content: unset;
}

.wrapper {
  border-bottom: 1px solid #ccc;
}

.partner-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: 222px;
}

.logo-area {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 48px;
  min-height: 222px;
}

.logo-area svg {
  width: 100%;
  max-width: 304px;
  height: auto;
}

.text-area {
  padding-top: 28px;
  padding-left: 0;
  padding-right: 40px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.company-name {
  font-size: 30px;
  font-weight: 900;
  color: #26395c;
  line-height: 1.3;
  margin-bottom: 8px;
}

.company-desc {
  font-size: 18px;
  font-weight: 300;
  color: #231815;
  line-height: 30px;
  flex: 1;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .wrapper {
    width: 100%;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }

  .logo-area {
    min-height: 160px;
    padding: 32px 40px;
    border-bottom: 1px solid #eee;
  }

  .text-area {
    padding: 28px 24px 32px;
  }

  .company-name { font-size: 24px; }
  .company-desc { font-size: 16px; line-height: 26px; }
}
