
.tile-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.tile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.tile-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tile-card:hover .tile-img img {
  transform: scale(1.05);
}

.tile-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.tile-body {
  padding: 20px 22px 24px;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.tile-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.tile-title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.tile-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin-bottom: 16px;
}

.tile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}

.tile-location {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.tile-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  text-transform: uppercase;
}
