/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
}

/* BODY */
body {
  font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.7;
  color: #222;
  background: #f9fafb;
  padding: 20px;
}

/* CONTAINER */
.container {
  max-width: 720px;
  margin: 0 auto;
}

/* TITLE */
h1 {
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* H2 */
h2 {
  font-size: 20px;
  margin-top: 35px;
  margin-bottom: 10px;
}

/* PARAGRAPH */
p {
  margin-bottom: 15px;
  font-size: 16px;
}

.intro {
  font-size: 17px;
  color: #444;
}

/* IMAGE */
.post-image {
  width: 100%;
  border-radius: 8px;
  margin: 15px 0 25px;
}

/* LINK */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;  
}

/* tarih */
.date {
  font-size: 13px;
  color: #888;
  margin-top: 20px;
}

/* LABELS */
.labels {
  margin-top: 20px;
}

.label {
  display: inline-block;
  background: #eef2ff;
  color: #3730a3;
  padding: 5px 9px;
  border-radius: 5px;
  font-size: 12px;
  margin-right: 6px;
}



/* HEADER */
.site-header {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 18px;
  color: #111;
  letter-spacing: 0.5px;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

/* NAV */
.nav a {
  margin-left: 15px;
  font-size: 14px;
  color: #555;
}

/* FOOTER */
.site-footer {
  margin-top: 40px;
  font-size: 13px;
  color: #888;
  text-align: center;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  margin-left: 10px;
  color: #777;
}




/* PAGE TITLE */
.page-title {
  font-size: 22px;
  margin-bottom: 20px;
}

/* LIST */
.post-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

/* CARD */
.post-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.post-card h2 {
  font-size: 18px;
  line-height: 1.4;
}

.post-card a {
  color: #111;
}

@media (min-width: 768px) {
  .post-list {
    grid-template-columns: 1fr 1fr;
  }
}




.notfound-list {
  margin-top: 15px;
}

.notfound-list li {
  margin-bottom: 8px;
}