.salo-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0;
}

.salo-story {
  flex: 1;
  min-width: 0;
}

.salo-story h1,
.salo-story h2,
.salo-story h3 {
  color: #b81d4c;
  margin-bottom: 16px;
}

.salo-story p {
  line-height: 1.7;
  margin-bottom: 24px;
}

.salo-paintings {
  flex: 1;
  min-width: 0;
}

.salo-story-header {
  text-align: center;
  margin-bottom: 32px;
}

.salo-portrait {
  /* width: 80px; */
  /* height: 80px; */
  /* border-radius: 50%; */
  /* object-fit: cover; */
  /* border: 3px solid #b81d4c; */
}

.salo-paintings h2 {
  color: #b81d4c;
  font-size: 2.2rem;
  font-weight: 300;
  margin: 0 0 32px 0;
  letter-spacing: 0.05em;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(184, 29, 76, 0.3);
}

.salo-painting-item {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.salo-painting-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.salo-painting-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .salo-layout {
    flex-direction: column;
    gap: 32px;
    padding: 24px 16px;
  }
  
  .salo-story,
  .salo-paintings {
    flex: none;
  }
  
  .salo-paintings h2 {
    font-size: 1.8rem;
  }
  
  .salo-portrait {
    width: 60px;
    height: 60px;
  }
}
