/*
 Theme Name: Hello Elementor Child
 Theme URI: https://elementor.com/hello-theme/
 Description: Child theme for Hello Elementor
 Author: Travis Harley
 Template: hello-elementor
 Version: 1.0.0
*/

.vip-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.vip-team-member {
  flex: 0 0 calc(33.333% - 20px); /* 3 columns with gap */
  box-sizing: border-box;
}

.lo-headshot {
  width: 100%;
  max-width: 450px !important;
  border-radius: 10px !important;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5) !important;
  background-color: #fff !important;
}

#team-logo {
  width: 200px;
}

.lo-property-headshot{
  max-width: 250px !important;
  border-radius: 50% !important;
}

.property-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 30px;
}

.property-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 16px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: transform 0.2s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-card img.property-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}

.property-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color:#1d2125 !important;
}

.property-card p {
  margin: 0;
  font-weight: bold;
  color: #333;
  font-size: 1rem;
}

.vip-reverse-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.vip-reverse-card {
  flex: 1 1 calc(33.333% - 32px);
  max-width: calc(33.333% - 32px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vip-reverse-photo {
  width: 100%;
  aspect-ratio: 4 / 4; /* square-ish */
  object-fit: cover;
  display: block;
}
.vip-reverse-body {
  padding: 18px 20px 16px;
  color: #444;
}
.vip-reverse-meta > a {
  color: #39513D !important;
  }
.vip-reverse-name {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1.125rem;
  color: #222 !important;
}
.vip-reverse-title {
  margin: 0 0 10px;
  font-style: italic;
  color: #666;
}
.vip-reverse-meta {
  margin: 0 0 2px;
  line-height: 1.5;
}
.vip-reverse-meta b {
  font-weight: 600;
  color: #333;
}
.vip-reverse-actions {
  padding: 0 20px 20px;
  margin-top: auto;
}
.vip-reverse-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid #39513D;
  text-decoration: none;
  font-weight: 600;
  color: #39513D !important;
}
/* Tweak colors to your brand */
.vip-reverse-btn { color: #39513D; border-color: #39513D; }
.vip-reverse-btn:hover { background: #39513D; color: #fff !important; }

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 1024px) {
  .vip-reverse-card { flex-basis: calc(50% - 32px); max-width: calc(50% - 32px); }
}
@media (max-width: 640px) {
  .vip-reverse-card { flex-basis: 100%; max-width: 100%; }
}