/* ===== Murupolku ===== */
.breadcrumb {
  text-align: center;
  font-size: 0.9rem;
  margin: 1.5rem 0 1rem 0;
  color: #555;
}

.breadcrumb a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

    .container2 {
      max-width: 1100px;
      margin: 0 auto;
      padding: 2rem;
    }

    /* Yläosa */
    .header {
      display: flex;
      gap: 2rem;
      align-items: center;
      margin-bottom: 2rem;
    }

    .profile-image {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
    }

    .profile-info h1 {
      margin: 0;
      font-size: 1.8rem;
      font-weight: 700;
    }

    .profile-info .title {
      font-size: 1.1rem;
      color: #4f46e5;
      margin-top: 0.25rem;
    }

    .profile-info .location {
      color: #6b7280;
      margin-top: 0.25rem;
    }

    /* Kuvaus */
    .description {
      background: #ffffff;
      padding: 2rem;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      margin-bottom: 2rem;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    /* Kuvagalleria */
    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    .gallery img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Responsiivisuus */
    @media (max-width: 800px) {
      .header {
        flex-direction: column;
        align-items: flex-start;
      }

      .gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .gallery {
        grid-template-columns: 1fr;
      }
    }