.random-photo-layout {
  display: flex;
  align-items: flex-start;
}

.random-photo {
  margin: 0;
  flex: 1 1 auto;
}

.door-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.photo-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.photo-share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.photo-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #e6e6e6;
  opacity: 0.86;
  padding: 0.45rem;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
  outline: none;
  text-decoration: none;
  font-size: 1rem;
}

.photo-share-button i {
  color: #e6e6e6;
}

.photo-share-button:hover,
.photo-share-button:focus-visible {
  opacity: 1;
  background: rgba(0, 0, 0, 0.78);
  transform: translateY(-1px);
}

.photo-share-button:focus-visible {
  outline: 2px solid #b8860b;
  outline-offset: 2px;
}

.noscript-share {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.noscript-share a {
  display: inline-block;
  margin-right: 0.5rem;
  color: #c9a227;
}

@media (max-width: 767px) {
  .photo-actions {
    flex-wrap: wrap;
  }
}
