/* ─── Reset & Variablen ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #faf9f7;
  --card:      #ffffff;
  --text:      #1c1917;
  --muted:     #78716c;
  --border:    #e7e5e4;
  --accent:    #d97706;
  --accent-h:  #b45309;
  --primary:   #1c1917;
  --radius:    14px;
  --shadow:    0 2px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
}

body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Header ──────────────────────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 2rem;
  background: var(--text);
  color: #fff;
  position: sticky; top: 0; z-index: 200;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* ─── Sprachschalter ──────────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  gap: .25rem;
  background: rgba(255,255,255,.1);
  border-radius: 30px;
  padding: .2rem .4rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  border-radius: 50%;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: .5;
  transition: opacity .2s, transform .15s;
}
.lang-btn:hover { opacity: .85; transform: scale(1.15); }
.lang-btn.active { opacity: 1; background: rgba(255,255,255,.2); }

/* ─── Upload-Button ───────────────────────────────────────────────── */
.btn-upload {
  background: var(--accent);
  color: #fff;
  padding: .5rem 1.1rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s;
}
.btn-upload:hover { background: var(--accent-h); }

.btn-logout {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  padding: .4rem .6rem;
  border-radius: 6px;
  transition: color .2s;
}
.btn-logout:hover { color: #fff; }

/* ─── Allgemeine Buttons ──────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .65rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); }
.btn-lg { padding: .85rem 2.2rem; font-size: 1rem; }

.btn-delete {
  background: transparent;
  color: #ef4444;
  border: 1px solid #ef4444;
  border-radius: 8px;
  padding: .45rem .9rem;
  cursor: pointer;
  font-size: .85rem;
  transition: all .2s;
}
.btn-delete:hover { background: #ef4444; color: #fff; }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 380px;
  background: linear-gradient(145deg, #1c1917 0%, #44403c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-text { position: relative; z-index: 1; }
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.hero p {
  font-size: 1.1rem;
  opacity: .75;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ─── Posts-Grid ──────────────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  max-width: 1240px;
  margin: 3rem auto;
  padding: 0 2rem;
}

/* ─── Card ────────────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card-media {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e7e5e4;
}
.card-media img,
.card-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card-media img,
.card:hover .card-media video { transform: scale(1.04); }

.media-badge, .gallery-badge {
  position: absolute;
  border-radius: 6px;
  font-size: .75rem;
  padding: .2rem .5rem;
  backdrop-filter: blur(6px);
}
.media-badge {
  top: 10px; left: 10px;
  background: rgba(0,0,0,.55); color: #fff;
}
.gallery-badge {
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.55); color: #fff;
}

.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.card-meta { display: flex; align-items: center; gap: .5rem; margin-bottom: .7rem; flex-wrap: wrap; }

.location-pill {
  font-size: .78rem; font-weight: 600;
  color: var(--accent); background: #fef3c7;
  padding: .2rem .65rem; border-radius: 20px;
}
.lang-pill {
  font-size: .85rem;
  background: var(--bg); border-radius: 20px;
  padding: .15rem .45rem;
}

.card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: .45rem;
  color: var(--text);
}
.card h2 a:hover { color: var(--accent); }

.teaser {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: .9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer { display: flex; align-items: center; justify-content: space-between; }

.tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.tag {
  font-size: .72rem;
  color: var(--muted);
  background: var(--bg);
  padding: .15rem .5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.read-more {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.read-more:hover { text-decoration: underline; }

/* ─── Empty State ─────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 6rem 2rem;
  color: var(--muted);
}
.empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.empty-state p { font-size: 1.15rem; margin-bottom: 1.5rem; }

/* ─── Upload Page ─────────────────────────────────────────────────── */
.upload-page {
  max-width: 680px;
  margin: 3.5rem auto;
  padding: 0 1.5rem;
  text-align: center;
}
.upload-page h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: .5rem;
}
.subtitle { color: var(--muted); margin-bottom: 2rem; font-size: .95rem; }

.upload-form { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }

/* Sprach-Auswahl */
.lang-select-row { width: 100%; text-align: left; }
.lang-select-label { font-size: .85rem; font-weight: 600; display: block; margin-bottom: .5rem; color: var(--muted); }
.lang-select-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.lang-option {
  display: flex; align-items: center;
  cursor: pointer;
}
.lang-option input { display: none; }
.lang-option span {
  display: inline-block;
  padding: .4rem .9rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  transition: all .15s;
}
.lang-option input:checked + span {
  border-color: var(--accent);
  background: #fef3c7;
  color: var(--accent-h);
}
.lang-option:hover span { border-color: var(--accent); }

/* Drop-Zone */
.drop-zone {
  width: 100%;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  transition: border-color .2s, background .2s;
  background: var(--card);
}
.drop-zone:hover, .drop-zone.drag-over {
  border-color: var(--accent);
  background: #fffbeb;
}
.drop-icon { font-size: 3rem; line-height: 1; }
.file-hint { font-size: .8rem; color: var(--muted); }

/* Vorschau-Grid */
.preview-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .75rem;
}
.preview-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--border);
  aspect-ratio: 1;
}
.preview-item img,
.preview-item video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.preview-item p {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  font-size: .65rem;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: .2rem .4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preview-badge {
  position: absolute; top: 6px; left: 6px;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: .7rem; padding: .1rem .4rem; border-radius: 4px;
}

.alert-error {
  width: 100%;
  background: #fef2f2; color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: .85rem 1.1rem;
  text-align: left;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed; inset: 0;
  background: rgba(250,249,247,.95);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem; z-index: 999;
  text-align: center;
}
.loading-overlay p { font-size: 1.1rem; font-weight: 500; }
.loading-overlay small { color: var(--muted); }
.spinner {
  width: 48px; height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Post Page ───────────────────────────────────────────────────── */

/* Hero: vollständiges Bild, kein Zuschnitt */
.post-hero {
  width: 100%;
  background: #1c1917;
  display: flex;
  justify-content: center;
  max-height: 90vh;
  overflow: hidden;
}
.post-hero img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;   /* ganzes Foto sichtbar */
}
.post-hero video {
  width: 100%;
  max-height: 90vh;
}

/* Layout */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 2rem;
  align-items: start;
}
@media (max-width: 860px) {
  .post-layout { grid-template-columns: 1fr; }
}

/* Post Header */
.post-header { margin-bottom: 2rem; }

.post-meta-row {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1rem;
}

.meta-pill {
  font-size: .78rem; font-weight: 600;
  padding: .2rem .65rem; border-radius: 20px;
}
.meta-time { background: #f0fdf4; color: #16a34a; }
.meta-budget  { background: #f0fdf4; color: #16a34a; }
.meta-midrange { background: #fefce8; color: #ca8a04; }
.meta-luxury  { background: #f5f3ff; color: #7c3aed; }

.post-page h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: .85rem;
}

.post-teaser {
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Inhalt */
.post-content { margin: 1.5rem 0 2rem; }
.post-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  margin: 2.25rem 0 .75rem;
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  padding-bottom: .3rem;
  display: inline-block;
}
.post-content p { margin-bottom: 1.1rem; }
.post-content ul { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.post-content ul li { margin-bottom: .4rem; }

/* Galerie */
.post-gallery { margin: 2rem 0; }
.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .6rem;
}
.gallery-item {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--border);
}
.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }

/* Reisetipps */
.tips-box {
  background: #fffbeb;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.tips-box h2 { font-size: 1.1rem; margin-bottom: 1rem; font-family: "Inter", sans-serif; }
.tips-box ul { list-style: none; padding: 0; }
.tips-box ul li { padding: .4rem 0; display: flex; gap: .6rem; align-items: flex-start; }
.tip-emoji { font-size: 1.1rem; flex-shrink: 0; }

/* ─── Affiliate Sidebar ───────────────────────────────────────────── */
.affiliate-sidebar { position: sticky; top: 80px; }

.affiliate-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.affiliate-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

.affiliate-link {
  display: flex; align-items: center;
  gap: .75rem; padding: .85rem;
  border-radius: 10px; margin-bottom: .5rem;
  border: 1px solid var(--border);
  transition: all .2s;
}
.affiliate-link:hover {
  border-color: var(--accent);
  background: #fffbeb;
  transform: translateX(3px);
}
.aff-icon { font-size: 1.5rem; flex-shrink: 0; }
.aff-text { flex: 1; }
.aff-text strong { display: block; font-size: .875rem; color: var(--text); }
.aff-text small { font-size: .75rem; color: var(--muted); }
.aff-arrow { color: var(--accent); font-weight: 700; font-size: 1.1rem; }

.aff-disclaimer { font-size: .7rem; color: var(--muted); margin-top: .85rem; font-style: italic; }

/* ─── Post Actions ────────────────────────────────────────────────── */
.post-actions {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1100px; margin: 2rem auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}
.back-link { font-size: .9rem; color: var(--muted); font-weight: 500; }
.back-link:hover { color: var(--accent); }

/* ─── Footer ──────────────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: .8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

/* ─── Mobile & Tablet ─────────────────────────────────────────────── */

/* Tablet (max 900px) */
@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0 1.25rem;
    margin: 2rem auto;
  }

  .post-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.25rem;
    margin: 1.5rem auto;
  }

  .affiliate-sidebar { position: static; }

  .hero { padding: 3.5rem 1.5rem; }
}

/* Mobile (max 600px) */
@media (max-width: 600px) {

  /* Header */
  .site-header {
    padding: .7rem 1rem;
    flex-wrap: wrap;
    gap: .5rem;
  }
  .logo { font-size: 1.1rem; }
  .header-nav { gap: .6rem; }
  .btn-upload {
    font-size: .78rem;
    padding: .4rem .8rem;
  }

  /* Sprachschalter */
  .lang-switcher { padding: .15rem .3rem; }
  .lang-btn { width: 1.7rem; height: 1.7rem; font-size: 1.05rem; }

  /* Hero */
  .hero { min-height: 260px; padding: 2.5rem 1rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: .95rem; margin-bottom: 1.25rem; }
  .btn-primary { padding: .6rem 1.2rem; font-size: .875rem; }

  /* Cards: eine Spalte */
  .posts-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    margin: 1.5rem auto;
    gap: 1rem;
  }
  .card-media { aspect-ratio: 16/9; }

  /* Upload */
  .upload-page { margin: 1.5rem auto; padding: 0 1rem; }
  .upload-page h1 { font-size: 1.6rem; }
  .drop-zone { padding: 2rem 1rem; }
  .preview-grid { grid-template-columns: repeat(3, 1fr); gap: .4rem; }

  /* Post Hero: volle Höhe begrenzen auf Mobile */
  .post-hero { max-height: 60vw; }
  .post-hero img { max-height: 60vw; }
  .post-hero video { max-height: 60vw; }

  /* Post Layout */
  .post-layout {
    padding: 0 1rem;
    margin: 1.25rem auto;
    gap: 1.5rem;
  }

  /* Post Header */
  .post-page h1 { font-size: 1.55rem; }
  .post-teaser { font-size: 1rem; }
  .post-meta-row { gap: .4rem; }

  /* Galerie: 2 Spalten */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .4rem; }

  /* Reisetipps */
  .tips-box { padding: 1rem 1.1rem; }

  /* Affiliate Links */
  .affiliate-card { padding: 1.1rem; }
  .affiliate-link { padding: .7rem; gap: .6rem; }
  .aff-icon { font-size: 1.25rem; }
  .aff-text strong { font-size: .82rem; }
  .aff-text small { font-size: .7rem; }

  /* Post Actions */
  .post-actions {
    flex-direction: column;
    gap: .75rem;
    align-items: flex-start;
    padding: 1rem;
  }

  /* Tags */
  .tags { gap: .3rem; }
  .tag { font-size: .68rem; }

  /* Footer */
  footer { padding: 1.5rem 1rem; margin-top: 2rem; }
}

/* Sehr kleine Screens (max 380px) */
@media (max-width: 380px) {
  .lang-btn { width: 1.5rem; height: 1.5rem; font-size: .95rem; }
  .btn-upload { display: none; }
  .hero { padding: 2rem .75rem; }
}

/* ─── Login ───────────────────────────────────────────────────────── */
.login-page {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.login-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  width: 100%; max-width: 380px;
  text-align: center;
}
.login-icon { font-size: 3rem; margin-bottom: .5rem; }
.login-card h1 { font-family: "Playfair Display", serif; font-size: 1.8rem; margin-bottom: .4rem; }
.login-sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.login-form { display: flex; flex-direction: column; gap: 1rem; }
.login-input {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 1rem;
  transition: border-color .2s;
}
.login-input:focus { outline: none; border-color: var(--accent); }

/* ─── Notizen & Sprachaufnahme ────────────────────────────────────── */
.notes-section { width: 100%; }
.notes-label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--muted); margin-bottom: .5rem;
}
.notes-input-row { display: flex; gap: .5rem; align-items: flex-start; }
.notes-textarea {
  flex: 1; padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .9rem;
  font-family: inherit; resize: vertical;
  transition: border-color .2s;
}
.notes-textarea:focus { outline: none; border-color: var(--accent); }
.mic-btn {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; padding: .6rem .8rem;
  font-size: 1.3rem; cursor: pointer;
  transition: all .2s; flex-shrink: 0;
}
.mic-btn:hover { border-color: var(--accent); background: #fffbeb; }
.mic-btn.recording {
  background: #fef2f2; border-color: #ef4444;
  animation: pulse 1s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.notes-hint { font-size: .8rem; color: #ef4444; margin-top: .4rem; }

/* ─── Inline Fotos im Artikel ─────────────────────────────────────── */
.inline-photo {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.inline-photo img,
.inline-photo video {
  width: 100%; height: auto;
  border-radius: var(--radius);
}

/* ─── Restaurants ─────────────────────────────────────────────────── */
.restaurants-section { margin: 2rem 0; }
.restaurants-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .85rem;
}
.restaurant-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: box-shadow .2s;
}
.restaurant-card:hover { box-shadow: var(--shadow); }
.restaurant-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: .3rem;
}
.restaurant-header strong { font-size: .95rem; }
.rating-badge {
  font-size: .78rem; background: #fef3c7;
  color: #92400e; padding: .15rem .45rem;
  border-radius: 20px; font-weight: 600;
}
.restaurant-address { font-size: .8rem; color: var(--muted); margin-bottom: .65rem; }
.restaurant-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.rest-link {
  font-size: .75rem; font-weight: 600;
  padding: .25rem .6rem; border-radius: 6px;
  border: 1px solid var(--border);
  transition: all .15s;
}
.rest-link:hover { background: var(--bg); }
.rest-link.tripadvisor { color: #34a853; border-color: #34a853; }
.rest-link.maps        { color: #4285f4; border-color: #4285f4; }
.rest-link.thefork     { color: #e07b39; border-color: #e07b39; }

/* Date on card */
.date { font-size: .75rem; color: var(--muted); }
