/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/group/style.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ==========================================================================
   = BR-CONTACT PLUGIN - STYLES
   ========================================================================== */
.br-contact-group {
  display: grid;
  gap: 20px;
  justify-content: center; /* Centrer les cartes */
}

/* Colonnes selon le nombre défini */
.br-contact-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.br-contact-columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.br-contact-columns-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mode-business .text-content .dashicons {
  color: #01a0dd;
  font-size: 16px;
  margin-right: 6px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle; /* ← clé ! */
  position: relative;
  top: -1px; /* ajuste finement si besoin */
}

.br-contact-card .photo-bio-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.br-contact-card .br-contact-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #00a0df;
}

.see-bio-icon {
  margin-top: 6px;
}

.see-bio-icon .dashicons {
  font-size: 25px !important;
  color: #01a0dd;
  line-height: 2;
  text-align: center;
  display: inline-block;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.see-bio-icon .dashicons:hover {
  transform: scale(1.2);
  text-decoration: none;
  color: black;
}

.mode-cards .dashicons,
.mode-mini .dashicons {
  display: none !important;
}

.contact-email-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email-link:hover {
  transform: scale(1.2);
  text-decoration: none;
  color: black;
}

.contact-email-link .dashicons {
  vertical-align: middle;
  transition: color 0.2s ease;
  text-decoration: none;
}

/* Optionnel : pour les petites tailles */
@media (max-width: 768px) {
  .br-contact-columns-6,
  .br-contact-columns-4,
  .br-contact-columns-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .br-contact-columns-6,
  .br-contact-columns-4,
  .br-contact-columns-3 {
    grid-template-columns: 1fr;
  }
}
/* ==== Base layout ==== */
.br-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==== Contact Card - Default ==== */
.br-contact-card {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.14);
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  overflow: visible;
  color: #444;
  transition: box-shadow 0.2s ease;
}

.br-contact-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #00a0df;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5em;
}

.br-contact-card h3 {
  margin: 0;
  /* padding: 0 30px 10px; */
  font-weight: 700;
}

.br-contact-card p {
  margin: 0.5em 0;
}

.br-contact-card .dashicons {
  margin-right: 8px;
  color: #00a0df;
  font-size: 16px;
}

/* ==========================================================================
   = DISPLAY MODES
   ========================================================================== */
/* ==== Mode MINI ==== */
.mode-mini .br-contact-card {
  display: flex;
  align-items: flex-start;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0.5rem 0;
  gap: 0.75rem;
  max-width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
}

.mode-mini .br-contact-card img {
  width: 48px;
  height: 48px;
  border: 1px solid #009dd9;
  margin: 0;
}

.mode-mini .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mode-mini .text-content h3 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}

.mode-mini .text-content p {
  text-align: left !important;
  margin: 0;
  font-size: 0.875rem;
  color: #333;
}

/* ==== Mode CARDS ==== */
.mode-cards .br-contact-card {
  width: 100%;
  align-items: center;
  min-height: 230px;
  padding: 32px 24px 24px;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.078);
}

.mode-cards .br-contact-card:hover {
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.mode-cards .br-contact-card:active {
  transform: scale(0.97);
}

.mode-cards .br-contact-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%; /* <-- assure que l'image est ronde */
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #009dd9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.mode-cards .br-contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 8px;
}

.mode-cards .br-contact-card p {
  margin: 0 0 8px;
}

/* ==== Mode BUSINESS (Carte de Visite améliorée) ==== */
.mode-business .br-contact-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e0edf5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
  max-width: 85%;
  margin: 0 auto;
  text-align: left;
  font-size: 0.95rem;
}

.mode-business .br-contact-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #00a0df;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  margin-top: -30px;
  margin-left: -30px;
}

.mode-business .text-content {
  flex: 1;
}

.mode-business .text-content h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid #e0edf5;
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.mode-business .text-content p {
  margin: 0 0 6px;
  line-height: 1.4;
}

.mode-business .text-content a {
  color: #009dd9;
  text-decoration: none;
  word-break: break-word;
  /* Ne pas forcer display: block */
}

.mode-business .text-content a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   = MODAL STYLES
   ========================================================================== */
/* ==== Overlay ==== */
.br-contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99998;
}

/* ==== Modal base ==== */
.br-contact-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 90%;
  max-width: 800px;
  min-width: 400px;
  max-height: 90vh;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 99999;
  font-family: system-ui, sans-serif;
  flex-direction: column;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* ==== Modal active ==== */
.br-contact-modal.loaded {
  display: flex !important;
  animation: modalFadeIn 0.2s ease-out;
}

/* ==== Animation ==== */
@keyframes modalFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* ==== Header ==== */
.br-modal-header {
  flex-shrink: 0;
  background-color: rgb(229, 245, 251);
  padding: 12px 16px;
  border-bottom: 2px solid #009dd9;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.br-modal-header strong {
  font-size: 1.1rem;
}

.br-modal-sub {
  font-weight: 400;
  font-size: 0.9rem;
  color: #444;
  margin-left: 10px;
  white-space: nowrap;
}

.modal-close {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  padding-left: 16px;
  padding-right: 6px;
}

/* ==== Modal content layout ==== */
.br-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  gap: 20px;
  box-sizing: border-box;
}

.modal-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #009dd9;
  flex-shrink: 0;
}

.modal-bio {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-bio p {
  margin-bottom: 1rem;
}

.modal-bio a {
  color: #009dd9;
  font-weight: 500;
  text-decoration: none;
}

.modal-bio a:hover {
  text-decoration: underline;
}

/* ==== Scrollbar (if needed) ==== */
.br-modal-body::-webkit-scrollbar {
  width: 10px;
}

.br-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.br-modal-body::-webkit-scrollbar-thumb {
  background: #e5f5fb;
  border-radius: 10px;
}

.br-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
  overflow: auto;
}

.br-modal {
  background: #fff;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  box-sizing: border-box;
}

/* ==== Responsive ==== */
@media (max-width: 600px) {
  .br-modal {
    max-height: 90vh;
  }
  .br-modal-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
  }
  .modal-bio {
    text-align: left;
    padding-top: 16px;
  }
  .modal-close {
    font-size: 22px;
    padding: 4px 10px;
  }
}

/*# sourceMappingURL=style-index.css.map*/