/**
 * Estilos del frontend público de DocFlow: páginas de servicios, sedes y tratantes.
 */

/* Contenedores. */
.docflow-single,
.docflow-archive {
	max-width: 960px;
	margin: 0 auto;
	padding: 32px 20px;
}

/* Cabecera de la ficha. */
.docflow-single__media img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	margin-bottom: 20px;
}

.docflow-single__media--avatar {
	max-width: 180px;
}

.docflow-single__media--avatar img {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.docflow-single__title {
	margin: 0 0 10px;
	font-size: 2rem;
	line-height: 1.2;
}

.docflow-single__address {
	margin: 0 0 16px;
	color: #50575e;
}

/* Etiquetas (precio / duración). */
.docflow-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
}

.docflow-chip {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: #f0f2f5;
	color: #1d2327;
	font-size: 0.85rem;
	font-weight: 600;
}

.docflow-chip--price {
	background: #e6f4ea;
	color: #1e6b34;
}

.docflow-single__content {
	margin: 0 0 28px;
	line-height: 1.7;
}

/* Secciones de relaciones. */
.docflow-rel {
	margin: 0 0 28px;
	padding-top: 20px;
	border-top: 1px solid #e6e7eb;
}

.docflow-rel__title {
	margin: 0 0 12px;
	font-size: 1.15rem;
}

.docflow-rel__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.docflow-rel__list li {
	margin: 0;
}

.docflow-rel__list a {
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid #d5d9e0;
	border-radius: 8px;
	text-decoration: none;
	color: #2271b1;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.docflow-rel__list a:hover,
.docflow-rel__list a:focus {
	border-color: #2271b1;
	background: #f4f8fd;
}

/* Horario. */
.docflow-horario-pub {
	margin: 0;
	padding: 0;
	list-style: none;
	max-width: 360px;
}

.docflow-horario-pub li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 7px 0;
	border-bottom: 1px solid #f0f0f1;
}

.docflow-horario-pub li:last-child {
	border-bottom: 0;
}

.docflow-horario-pub__dia {
	font-weight: 600;
	color: #1d2327;
}

.docflow-horario-pub__horas {
	color: #50575e;
}

/* Bloque de reserva. */
.docflow-booking-cta {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid #e6e7eb;
}

/* Archivo: rejilla de tarjetas. */
.docflow-archive__title {
	margin: 0 0 24px;
}

.docflow-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 220px, 1fr ) );
	gap: 20px;
}

.docflow-card-pub {
	display: flex;
	flex-direction: column;
	border: 1px solid #e6e7eb;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	text-decoration: none;
	color: #1d2327;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.docflow-card-pub:hover,
.docflow-card-pub:focus {
	box-shadow: 0 6px 18px rgba( 16, 24, 40, 0.1 );
	transform: translateY( -2px );
}

.docflow-card-pub__media img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.docflow-card-pub__title {
	padding: 14px 16px 6px;
	font-size: 1.05rem;
	font-weight: 600;
}

.docflow-card-pub__excerpt {
	padding: 0 16px 16px;
	color: #50575e;
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Listados de catálogo: [docflow_sedes], [docflow_tratantes], [docflow_servicios]. */
.docflow-catalog {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 240px, 1fr ) );
	gap: 20px;
	margin: 1.5em 0;
}

.docflow-catalog__item {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e4e7ec;
	border-radius: 10px;
}

.docflow-catalog__media,
.docflow-catalog__img {
	display: block;
}

.docflow-catalog__img {
	width: 100%;
	height: auto;
}

.docflow-catalog__body {
	padding: 14px 16px;
}

.docflow-catalog__title {
	margin: 0 0 6px;
	font-size: 1.05rem;
}

.docflow-catalog__title a {
	text-decoration: none;
}

.docflow-catalog__meta {
	margin: 0;
	color: #667085;
	font-size: 0.9rem;
}

.docflow-catalog__empty {
	color: #667085;
}
