body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
}

.container {
  max-width: 700px;
  margin: auto;
  padding: 20px;
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

/* CARD */
.card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.card-title {
  margin-bottom: 10px;
}

.card-title a {
  text-decoration: none;
  color: #111;
}

.card-title a:hover {
  color: #007bff;
}

/* IMAGE */
.thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* TEXT */
.preview {
  color: #555;
  font-size: 14px;
}

/* WRAPPER */
.post-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* CONTAINER */
.post-container {
  max-width: 800px;
  width: 100%;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* TITLE */
.post-title {
  margin-bottom: 20px;
}

/* IMAGE FIX (ОВА Е КЛУЧНО) */
.post-image {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* TEXT */
.post-content {
  line-height: 1.7;
  color: #333;
}

/* BACK LINK */
.back {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #007bff;
}

/* clickable cursor */
.clickable {
  cursor: pointer;
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
