


/* ==== GALLERY CARD STYLE ==== */
.gallery-card {
  display: flex;
  align-items: flex-start;
  background-color: #f0f4f0;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-cover img {
  width: 160px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.gallery-info {
  margin-left: 1rem;
  flex: 1;
}

.gallery-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: #222;
}

.gallery-description {
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
}

/* ==== MOBILE ==== */
@media (max-width: 700px) {
  .gallery-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gallery-cover img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 0.8rem;
  }

  .gallery-info {
    margin-left: 0;
  }
}

/* ==== PHOTOGRAPHER CARD STYLE ==== */
.photographer-card {
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff 0%, #f0f4f0 100%);
  border-radius: 0 0 12px 12px; /* Endast nederhörn rundas */
  padding: 1rem;
  margin-bottom: 1rem;

  /* Endast nedre skugga med inset transparent uppåt */
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photographer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12); /* förstärkt nedre skugga vid hover */
}

.photographer-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.photographer-info {
  flex: 1;
}

.photographer-name {
  margin: 0 0 0.3rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e36;
}

.photographer-about {
  font-size: 0.95rem;
  font-style: italic;
  color: #555;
}

.photographer-link a {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #2c7a5f;
  text-decoration: none;
}

.photographer-link a:hover {
  text-decoration: underline;
}

/* ==== MOBILE ==== */
@media (max-width: 700px) {
  .photographer-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .photographer-image {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
