/**
 * Contact Info Cards Widget Styles
 */

.slt-contact-info-cards {
	padding: 60px 20px;
	background: #ffffff;
}

.slt-contact-cards-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

@media (min-width: 1400px) {
	.slt-contact-cards-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.slt-contact-card {
	text-align: center;
	padding: 15px 10px;
	background: #f9fafb;
	border-radius: 8px;
}

.slt-contact-card__icon {
	width: auto;
	height: auto;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slt-contact-card__icon--blue {
	background: none;
}

.slt-contact-card__icon--pink {
	background: none;
}

.slt-contact-card__icon i {
	font-size: 40px;
}

.slt-contact-card__icon--blue i {
	color: #2563eb;
}

.slt-contact-card__icon--pink i {
	color: #ec4899;
}

.slt-contact-card__title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	color: #1f2937;
}

.slt-contact-card__link {
	display: block;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 8px;
	transition: opacity 0.2s ease;
	word-break: break-word;
	cursor: pointer;
}

.slt-contact-card__link--blue {
	color: #2563eb;
}

.slt-contact-card__link--pink {
	color: #ec4899;
}

.slt-contact-card__link:hover {
	opacity: 0.7;
	text-decoration: underline;
}

.slt-contact-card__schedule {
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 8px;
}

.slt-contact-card__text {
	margin: 0;
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
}

.slt-contact-card__text--italic {
	font-style: italic;
}

.slt-contact-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.slt-contact-card__list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 8px;
	font-size: 14px;
	color: #374151;
	line-height: 1.6;
}

.slt-contact-card__list li:last-child {
	margin-bottom: 0;
}

.slt-contact-card__list li:before {
	content: "•";
	position: absolute;
	left: 8px;
	color: #2563eb;
	font-weight: 700;
	font-size: 16px;
}

.slt-contact-card__icon i.fas {
    margin-right: 0 !important;
    font-size: 2em;
}

/* Responsive */
@media (max-width: 1024px) {
	.slt-contact-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.slt-contact-info-cards {
		padding: 40px 16px;
	}

	.slt-contact-cards-grid {
		gap: 10px;
	}

	.slt-contact-card {
		padding: 0 10px 20px;
	}

	.slt-contact-card__icon {
		width: 56px;
		height: 56px;
	}

	.slt-contact-card__icon i {
		font-size: 24px;
	}

	.slt-contact-card__title {
		font-size: 20px;
	}

	.slt-contact-card__link {
		font-size: 18px;
	}
}
