:root {
  --bg-gradient:
    radial-gradient(circle at 11% 9%, rgba(20, 147, 155, 0.22), transparent 30%),
    radial-gradient(circle at 86% 17%, rgba(226, 111, 67, 0.2), transparent 26%),
    linear-gradient(145deg, #f7f1e6 0%, #f3ebdd 44%, #ebe0cb 100%);
  --bg-glow-a: rgba(20, 147, 155, 0.25);
  --bg-glow-b: rgba(226, 111, 67, 0.25);
  --app-bg: linear-gradient(140deg, rgba(255, 250, 242, 0.93), rgba(244, 234, 216, 0.88));
  --app-border: #d3c4ab;
  --surface: #fffaf1;
  --surface-soft: rgba(255, 255, 255, 0.5);
  --text: #1e2a31;
  --muted: #5f6d74;
  --accent: #0c878c;
  --accent-2: #e7663d;
  --line: #d3c6ad;
  --input-bg: #fffdfa;
  --chip-bg: #f8edde;
  --chip-text: #3f4e55;
  --shadow: rgba(27, 33, 37, 0.14);
  --error: #b6382f;
}

.tile {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(67, 56, 40, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tile:hover,
.tile:focus-within {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  background: color-mix(in srgb, var(--surface) 92%, var(--accent) 8%);
  box-shadow: 0 12px 24px rgba(67, 56, 40, 0.16);
  transform: translateY(-2px);
}

.tile-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  background: #e7dcc6;
}

.tile-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.tile-headline {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.25;
}

.tile-description {
  margin: 0;
  font-size: 0.94rem;
  color: #44555c;
}

.tile-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.tile-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}

.tile-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}

.tile-link:hover {
  text-decoration: underline;
}

.tile-link-disabled {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  cursor: default;
}
