/*
 * Theme Name: Houzez Child
 * Theme URI: http://www.favethemes.com/
 * Author: Favethemes
 * Author URI: http://www.favethemes.com/
 * Description: Houzez is a premium WordPress theme for real estate agents where modern aesthetics are combined with tasteful simplicity, and where the ease of use is achieved without compromise in your ability to customise the design. Whether you are a real estate agent looking to build a website for your company or a web developer seeking a perfect WordPress theme for your next project, you are certain to appreciate the numerous features and benefits that our theme provides.
 * Version: 1.0
 * Tags: white, right-sidebar, left-sidebar, custom-colors, custom-menu, featured-images, post-formats, translation-ready
 * License: GNU General Public License version 3.0
 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
 * Text Domain: houzez
 * Template: houzez
 * */

 @import url("../houzez/style.css");

 /* Your CSS code goes here
  * ------------------------------------ */
 
/* ================================================================
 *    BIP AGENTS LIST SHORTCODE
 *    Usage: [bip_agents_list limit="6" columns="3"]
 *    ================================================================ */
.bip-agents-list {
  --bip-agents-columns: 3;
  --bip-agents-gap: 28px;
  display: grid;
  grid-template-columns: repeat(var(--bip-agents-columns), minmax(0, 1fr));
  gap: var(--bip-agents-gap);
}

.bip-agent-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(24, 42, 55, 0.08);
}

.bip-agent-card__media {
  display: block;
  width: min(220px, 82%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(24, 42, 55, 0.13);
}

.bip-agent-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
}

.bip-agent-card__body {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-top: 22px;
}

.bip-agent-card__name,
.bip-agent-card__position,
.bip-agent-card__excerpt,
.bip-agent-card__excerpt p {
  margin: 0;
}

.bip-agent-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.bip-agent-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bip-agent-card__icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--e-global-color-primary, #0c7cd5);
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  border-radius: 50%;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(24, 42, 55, 0.11);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.bip-agent-card__icon-button:hover,
.bip-agent-card__icon-button:focus {
  color: #fff;
  background: var(--e-global-color-primary, #0c7cd5);
  box-shadow: 0 14px 28px rgba(24, 42, 55, 0.16);
  transform: translateY(-2px);
}

.bip-agent-card__button .houzez-icon {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 991px) {
  .bip-agents-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .bip-agents-list {
    grid-template-columns: 1fr;
  }

  .bip-agent-card__actions {
    width: auto;
  }
}
 
