.related-interviews-container {
  margin-top: 30px;
  padding-top: 20px;
  /* border-top: 1px solid #eee; */
  padding-bottom: 40px;
}

.interview-tile {
  margin-bottom: 20px;
}

.interview-tile-content {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* height: 100%; */
  margin-top: 20px;
}

.interview-tile-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.interview-tile-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.interview-tile-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.interview-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.interview-tile-content:hover .interview-tile-image img {
  transform: scale(1.05);
}

.interview-tile-info {
  padding: 15px;
}

.interview-tile-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #333;
  line-height: 1.3;
  height: 50px;
}
.interview-tile-label {
  font-weight: normal;
  font-size: 14px;
}

.interview-tile-date {
  font-size: 12px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .interview-tile {
    margin-bottom: 15px;
  }

  .interview-tile-image {
    height: 150px;
  }

  .interview-tile-info {
    padding: 12px;
  }

  .interview-tile-title {
    font-size: 14px;
    margin-bottom: 0;
  }

  .interview-tile-date {
    font-size: 12px;
  }
}
