/* Gros Boutons XL */

.listBtnXl {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    padding: 30px 0;

}
.btnXl {
  display:flex; 
  align-items:center; 
  gap:16px;
  cursor:pointer; 
  transition:transform .2s, box-shadow .2s, background .2s;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
/*
.listBtnXl > .btnXl:first-child {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.listBtnXl > .btnXl:last-child {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}*/

.btnXl:hover {  background:var(--hover); }
.btnXl  h3{ margin:0; font-size:1.2rem; font-weight:600; color:var(--text); }
.btnXl p{ margin:0; color:var(--muted); }

.icoXl {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  color: var(--panel);
}
.btnXl:hover .icoXl { color: var(--hover); }

.icoXl .lucide  {
  width: 42px;
  height: 42px;
  transform: scale(1.08);
}



@media (max-width: 600px) {
  .card { border-radius: 0%;}
  .btnXl { background: var(--hover); margin: 0; }
  .listBtnXl {grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 5px;}
  .btnXl:hover { transform: none; box-shadow:none; background: var(--hover);}
  .icoXl {color: var(--hover) !important;}
}



