* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", "Lora", Georgia, serif;
  color: #404040;
  line-height: 1.6;
  padding: 40px 20px;

}

.container {
  max-width: 760px;
  margin: 0 auto;
}

.about-block {
  margin-bottom: 32px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  margin-left: -1px;
}

.header-links a {
  color: #404040;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-links a:hover {
  text-decoration: underline;
}

.header-links i {
  font-size: 16px;
}

.intro-text {
  font-size: 17px;
  margin-bottom: 8px;
}

.wsj-link {
  color: #555;
  font-weight: 600;
}

a {
  color: #008AFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.grid-item {
  width: calc((100% - 56px) / 3);
}

.grid-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.grid-item img:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.project-label {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0 0;
  line-height: 1.3;
}

.project-label a {
  color: inherit;
  text-decoration: none;
}

.project-label a:hover {
  text-decoration: underline;
}

.project-source {
  font-size: 12px;
  color: #999;
  padding: 2px 0 0;
}

@media (max-width: 750px) {
  .grid-item {
    width: calc((100% - 28px) / 2);
  }
}

@media (max-width: 480px) {
  .grid-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
