/*
 Theme Name:   Go Child
 Description:  Child theme for the Go theme
 Template:     go
 Version:      1.0.0
*/

/* Fix block button hover: disable Go theme's ::after slide animation */
.wp-block-button__link::after {
	display: none !important;
}

.wp-block-button__link:hover {
	text-decoration: none !important;
}

/* Related care sheets card grid */
.care-sheet-related-row {
	display: flex;
	gap: 24px;
	margin-bottom: 24px;
}

/* Prevent mid-word breaks in species care table */
.species-care-table td {
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
}

.care-sheet-related-card {
	flex: 1;
	border: 1px solid #dde0e4;
	border-radius: 8px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

@media (max-width: 782px) {
	.care-sheet-related-row {
		flex-direction: column;
	}
}
