/* ===================================
   ABOUT PAGE SPECIFIC STYLES
   =================================== */

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

/* Photo Section */
.photo {
  min-height: 420px;
  border-radius: 28px;
  background: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

/* Typography */
h2 {
  font-size: 34px;
  color: #0f172a;
  margin: 0 0 18px;
}

/* Panel */
.panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin: 0 0 10px;
  color: #0f172a;
}

/* Media Queries */
@media (max-width: 900px) {
  .grid,
  .cards {
    grid-template-columns: 1fr;
  }
}
