/* Base Layout */
.avvocati-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 24px;
  align-items: start;
  color: #333;
}
@media (max-width: 900px) {
  .avvocati-grid {
    grid-template-columns: 1fr;
  }
}

/* Sidebar */
.avvocati-sidebar {
  position: sticky;
  top: 12px;
  background: #f5f5f5;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 20px;
}

/* Filter Groups */
.filtri-gruppo {
  margin-bottom: 24px;
}
.filtri-titolo {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
}
.filtri-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.filtri-checklist li {
  margin: 20px 0;
}
.filtri-checklist input[type="checkbox"] {
  margin-right: 8px;
}
.btn-reset {
  background: transparent;
  border: none;
  color: #555;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* Avvocato Cards */
.lista-avvocati {
  list-style: none;
  padding: 0;
  margin: 0;
}
.avvocato-item {
  background: #f5f5f5;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-avvocato {
  display: flex;
	align-items: center;
  gap: 25px;
  width: 100%;
}

/* Avatar / Placeholder */
.card-image img,
.img-placeholder {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}

/* Card Body */
.card-body {
  flex-grow: 1;
}
.card-body h4 {
  font-size: 30px;
	font-weight: 700;
  margin: 0 0 4px;
}
.card-body h4 a {
  color: #000;
  text-decoration: none;
}
.specialization {
  font-size: 30px;
  color: #000;
  margin-bottom: 6px;
}



/* Location */
.city {
	font-size: 18px;
	color: #000;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 1.5rem;
}
.city img {
	width: 15px;
	height: 22px;
}
.city a {
	color: #ABABAB;
	text-decoration: underline;
	font-size: 18px;
}


/* No Results Message */
.no-results {
  font-size: 18px;
  margin-top: 24px;
  color: #000;
}

@media only screen and (max-width: 767px) {
	
	.avvocato-item {
	padding: 10px;
}
	.card-avvocato {
	gap: 10px;
	
}
	.card-image img, .img-placeholder {
	width: 75px;
	height: 75px;
}
	.card-body h4, .specialization {
	font-size: 18px;
}
	.city {
	font-size: 15px;
		gap: 6px;
	padding-top: 0.5rem;
}
	.city a {
	font-size: 15px;

	}
	.city img {
	width: 10px;
	height: 17px;
}
	.filtri-checklist li {
	margin: 10px 0;
}
}
