.tc-project-card {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(47, 38, 31, 0.18);
  text-decoration: none;
}

.tc-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.22) 45%,
    rgba(0,0,0,0.42) 100%
  );
}

.tc-project-content {
  position: absolute;
  inset: 0;
  padding: 26px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.tc-project-content h3 {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1.05;
  font-weight: 600;
  text-transform: uppercase;
  color: #E8C984;
  text-shadow: 0 3px 10px rgba(0,0,0,0.55);
}

.tc-project-content h3 span {
  display: block;
  font-size: 24px;
}

.tc-project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 210px;
  padding: 10px 18px;
  border-radius: 6px;
  background: #A98745;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.22);
}