:root { --border: #e8e8e8; --muted: #666; }

body { margin:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; color:#111; background:#fff; }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.wrap { max-width: 1040px; margin: 0 auto; padding: 18px; }

.site-header { border-bottom: 1px solid var(--border); background:#fff; position: sticky; top:0; }
.brand { font-weight: 700; text-decoration:none; color:#111; letter-spacing: 0.2px; }

p { margin: 0 0 12px; line-height: 1.6; }
h1 { font-size: 30px; margin: 18px 0 10px; letter-spacing: -0.2px; }

/* Country section headers */
h2 {
  display: flex;
  align-items: baseline;
  gap: 8px;

  margin: 34px 0 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #111;
}

h2 a {
  color: inherit;
  text-decoration: none;
}

h2 a:hover {
  text-decoration: underline;
}

h2 .muted {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--muted);
}


.grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

.card { display:block; border:1px solid var(--border); border-radius: 14px; overflow:hidden; text-decoration:none; color:inherit; background:#fff; }
.card-img { width:100%; height: 220px; object-fit: cover; display:block; background:#f3f3f3; }
.placeholder { height:190px; background: linear-gradient(90deg, #f3f3f3, #fafafa, #f3f3f3); }
.card-body { padding: 10px 12px 12px; }
.card-title { font-weight: 650; }
.card-sub { color: var(--muted); font-size: 14px; margin-top: 4px; }

.pills { display:flex; flex-wrap:wrap; gap: 8px; margin: 10px 0 6px; }
.pill { border:1px solid var(--border); border-radius: 999px; padding: 6px 10px; text-decoration:none; color:#111; font-size: 14px; background:#fff; }
.pill small { color: var(--muted); }

.hero { position: relative;border:1px solid var(--border); border-radius: 18px; overflow:hidden; background:#fff; }
.hero img { width:100%; max-height: 740px; object-fit: cover; display:block; background:#f3f3f3; }
.hero .hero-body { padding: 14px 16px 16px; }
.muted { color: var(--muted); }

.photo-credit {
	position: absolute;
	top: 10px;
	right: 12px;

	font-size: 12px;
	line-height: 1.2;
	color: rgba(255,255,255,0.85);

	background: rgba(0,0,0,0.45);
	padding: 4px 8px;
	border-radius: 999px;

	backdrop-filter: blur(6px);
}

.row { display:flex; gap: 10px; flex-wrap: wrap; margin: 10px 0; }
.btn { display:inline-block; padding: 10px 12px; border-radius: 12px; border:1px solid var(--border); text-decoration:none; color:#111; background:#fff; }

.site-footer { border-top:1px solid var(--border); margin-top: 28px; color: var(--muted); font-size: 14px; }

.legal-section {
	margin-top: 60px;
	margin-bottom: 60px;
	color: #777;
}

.legal-section hr {
	border: none;
	border-top: 1px solid #ccc;
	margin: 60px 0;
}

.legal-section h2,
.legal-section h3 {
	color: #666;
}

.legal-section a {
	color: #666;
	text-decoration: underline;
}

.app-cta {
	margin-top: 24px;
	padding: 18px 20px;
	border-radius: 14px;
	background: #f5f5f5;
	border: 1px solid var(--border);
	font-size: 16px;
}

.app-cta strong {
	display: block;
	margin-bottom: 6px;
}

.app-cta a {
	display: inline-block;
	margin-top: 12px;
	padding: 12px 18px;
	border-radius: 14px;

	background: #111;              /* standout background */
	color: #fff;                   /* white text */
	border: 1px solid rgba(255,255,255,0.25);

	font-weight: 800;
	font-size: 16px;
	text-decoration: none;
	letter-spacing: 0.2px;

	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.app-cta a:hover {
	background: #000;
	box-shadow: 0 6px 16px rgba(0,0,0,0.18);
	transform: translateY(-1px);
}

.app-cta a:active {
	transform: translateY(0);
	box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}


.share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
}

.share-label {
  font-size: 13px;
  color: var(--muted);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: inherit;
  text-decoration: none;

  font-size: 13px;
  font-weight: 600;
}

.share-btn:hover {
  text-decoration: underline;
}