* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: #f8f9fb;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* Header */
.project-header {
  margin-bottom: 50px;
}

.project-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.teaser {
  font-size: 16px;
  max-width: 800px;
}

/* Sections */
.section {
  margin-bottom: 50px;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Images */
.image-block {
  margin-bottom: 30px;
}

.image-block h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.image-block img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Lists */
.list {
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    background-color: #e9eef5;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* Links */
.links a {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    color: #1a73e8;
    font-weight: 500;
}

.links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .project-header h1 {
        font-size: 26px;
    }

    .section h2 {
        font-size: 20px;
    }
}
