.t888-contact-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 35px 30px;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.t888-contact-card .tcc-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.t888-contact-card .tcc-icon-wrap {
  width: 45px;
  height: 45px;
  background-color: #143687;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 18px;
  margin-bottom: 25px;
}

.t888-contact-card .tcc-icon-wrap svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.t888-contact-card .tcc-icon-image {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.t888-contact-card .tcc-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
  line-height: 1.2;
  font-family: var(--font-philosopher);
}

.t888-contact-card .tcc-content {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.t888-contact-card .tcc-content p {
  margin-bottom: 5px;
}

.t888-contact-card .tcc-content p:last-child {
  margin-bottom: 0;
}

.t888-contact-card .tcc-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.t888-contact-card .tcc-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  background-color: transparent;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.t888-contact-card:hover {
  background-color: #e6e8ea;
}
.t888-contact-card .tcc-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.t888-contact-card .tcc-social-image {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.t888-contact-card .tcc-social-link:hover {
  background-color: #3654a5;
  border-color: #3654a5;
  color: #ffffff;
}
