/* Gallery (Home) */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.gallery .row {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.gallery .column img {
  width: 100%;
  border-radius: 10px;
  display: block;
  border: 1px solid var(--border);
}

/* About section (Home) */
.about-section {
  margin: 40px 0;
}

.about-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

/* .about-image {
  flex: 0 0 300px;
  max-width: 300px;
} */
.about-image img {
  width: 100%;
  max-width: 300px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}

.about-text {
  flex: 1;
  max-width: 600px;
  line-height: 1.75;
  font-size: 1rem;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-1);
}

/* Breakpoints */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    text-align: center;
  }

  .about-image img {
    max-width: 200px;
  }
}

@media (min-width: 768px) {
  .gallery .row {
    flex-direction: row;
    justify-content: space-between;
  }

  .gallery .column {
    flex: 1;
    margin: 0 0.5em;
  }
}