/* Component Styles - Only Used Classes */

.btn-outline {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
}

.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(74,110,224,.06);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 100px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.portrait {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
}

.portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--blue);
}

.link-more {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.page-section {
  margin: 40px 0;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
}

.page-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.services .card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.services .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

@media (max-width: 620px) {
  .page-header h1 {
    font-size: 28px;
  }
  
  .page-subtitle {
    font-size: 16px;
  }
}