/* dev-cards.css — карточки и компоненты контентных страниц (SEO, о нас, контакты) */
/* Бывший dev-section18.css */

.cp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.cp-card {
  background: #fafafa;
  border: 1px solid #e5ddd1;
  border-radius: 6px;
  padding: 22px 24px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.cp-card:hover {
  border-color: #c0a878;
  background: #fdfbf8;
}

.cp-card-label {
  font-size: 1.2rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: block;
}

.cp-card-value {
  font-size: 1.7rem;
  line-height: 1.35;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
  word-break: break-word;
}

.cp-card-value a {
  color: #c0a878;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.cp-card-value a:hover {
  border-bottom-color: #c0a878;
}

.cp-card-desc {
  font-size: 1.3rem;
  line-height: 1.4;
  color: #888;
  margin: 0;
}

/* About cards for o-nas page */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 20px 0;
}

.about-card {
  background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
  border: 1px solid #e5ddd1;
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-card:hover {
  border-color: #c0a878;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.about-card h3 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  color: #333;
}

.about-card h3 a {
  color: #333;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.about-card h3 a:hover {
  border-bottom-color: #c0a878;
}

.about-card p {
  color: #666;
  margin: 0 0 16px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-card .bn-btn {
  margin-top: 12px;
  display: inline-block;
}

/* Review rating stars */
.review-rating {
  color: #f39c12;
  font-size: 0.95rem;
  margin-right: 8px;
  display: inline-block;
}

/* Map box styling */
.map-box {
  margin-top: 20px;
}

.map-box h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 2rem;
  color: #333;
}

.map-box p {
  margin: 0.5em 0;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cp-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-card {
    padding: 20px;
  }

  .cp-card {
    padding: 18px;
  }
}
