:root {
  --bg: rgba(255, 255, 255, 0.95);
  --accent: #000;
  --accent-2: #333;
  --muted: #666;
  --radius: 14px;
  --shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-family: "Poppins", Arial, sans-serif;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: url("https://mercedes-benz-uzbekistan.uz/wp-content/uploads/2022/02/about3.webp")
    center / cover fixed no-repeat;
  padding: 40px 16px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.thumb {
  height: 180px;              /* ENG MUHIM QATOR */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.meta {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.content {
  padding: 16px;
  flex: 1;
}

.footer {
  padding: 14px;
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: transparent;
  cursor: pointer;
}

.btn.fill {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  border: none;
}
