/* ------------------------------------------
   ourstory.css
   Fungsi: Styling untuk section "Kisah Kami" yang bercerita secara visual
------------------------------------------- */

.ourstory-section {
  background-color: #fdf9f4;
  padding: 60px 20px;
}

.ourstory-section h3 {
  font-size: 2rem;
  color: #8B0000;
  font-weight: 700;
}

.ourstory-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.ourstory-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ourstory-card:hover {
  transform: translateY(-5px);
}

.ourstory-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ourstory-caption {
  padding: 15px;
  text-align: center;
}

.ourstory-caption h6 {
  font-weight: 600;
  color: #8B0000;
  margin-bottom: 5px;
}

.ourstory-caption p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
