.svg-gallery-container {
  display: grid;
  grid-column: 1;
  justify-content: center;
  gap: 50px;
  padding: 30px;
}

.svg-item {
  width: 600px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap:20px;
}

.svg-item:hover {
  transform: translateY(-4px);
}

.svg-item .title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1c1e21;
}

.svg-item .svg-content {
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background: #f9f9f9;
}

.svg-item button {
  background: none;
  border: none;
  color: #e0245e;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.svg-item button:hover {
  transform: scale(1.05);
}

.svg-item button span {
  margin-left: 6px;
  color: #333;
}
	
	.author{
		display: flex;
		gap: 10px;
		align-items: center;
	}
	
	.author-name{
		font-weight: 600;
	}