.photo__gallery {
  padding: 40px 20px;
}

.gallery__card {
  display: flex;
  flex-direction: column;

  max-width: 900px;
  margin: 20px auto;

  border: 1px solid #ddd;
  border-radius: 10px;

  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.gallery__card__images {
  display: flex;
  flex-wrap: wrap;
}

.before,
.after {
  position: relative;
  flex: 1 1 50%;
  min-width: 250px;
}

.gallery__card__images img {
  width: 100%;
  display: block;
}

.label {
  position: absolute;
  bottom: 8px;
  left: 8px;

  background: rgba(0, 0, 0, 0.6);
  color: #fff;

  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9em;
}

.description {
  padding: 20px 25px;
}

.description h3 {
  margin-top: 0;
  margin-bottom: 12px;

  font-size: 1.4em;
  color: #2c3e50;
}

.description p {
  margin: 8px 0;
  line-height: 1.5;
  color: #444;
}

.cta__button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: #0077cc;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta__button:hover {
  background: #005fa3;
}
