/*
Theme Name: Kadence Child
Template: kadence
Version: 1.0.0
*/

/* ===========================
   COUNSELOR GRID - ARCHIVE
=========================== */

.counselor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.counselor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.counselor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.counselor-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  border: 4px solid #f0f0f0;
}

.counselor-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: #222;
}

.counselor-card .counselor-titles {
  color: #777;
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.counselor-card .counselor-blurb {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.counselor-card .counselor-btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background-color: #4a7c6f;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.counselor-card .counselor-btn:hover {
  background-color: #3a6358;
}

/* ===========================
   COUNSELOR SINGLE PROFILE
=========================== */

.counselor-profile {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.counselor-profile-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.counselor-profile-header img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.counselor-profile-info h1 {
  margin: 0 0 0.35rem;
  font-size: 1.8rem;
  color: #222;
}

.counselor-profile-info .counselor-titles {
  color: #777;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.counselor-profile-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

.counselor-profile-email a {
  color: #4a7c6f;
  text-decoration: none;
  font-weight: 600;
}

.counselor-profile-email a:hover {
  text-decoration: underline;
}

.counselor-back-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #4a7c6f;
  text-decoration: none;
  font-size: 0.9rem;
}

.counselor-back-link:hover {
  text-decoration: underline;
}