/* =====================================================
   Pachniczówka – strona "O nas"
   Plik: o-nas.css
   Wgraj do: /userdata/public/assets/o-nas.css
   ===================================================== */

.pach-intro {
  text-align: center;
  margin: 30px auto 36px;
  max-width: 620px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #555;
}

.pach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 48px;
}

.pach-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  background: #fff;
  border: 1px solid #e0d0b0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s;
}

.pach-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.pach-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.pach-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pach-card-icon {
  font-size: 1.8em;
  margin: 0 0 6px;
}

.pach-card-title {
  font-size: 1.1em;
  font-weight: bold;
  color: #6b3e00;
  margin: 0 0 10px;
}

.pach-card-text {
  font-size: 0.95em;
  color: #555;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}

.pach-card-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #c8860a;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  align-self: flex-start;
  transition: background 0.2s;
}

.pach-card-btn:hover {
  background: #a06d08;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 640px) {
  .pach-card {
    flex: 1 1 100%;
  }

  .pach-card > img {
    height: 160px;
  }
}
