/*
Theme Name: Zox News Child
Description: Child theme for Zox News with custom breadcrumb navigation and HomeGear enhancements
Author: HomeGear Team
Template: zox-news
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../zox-news/style.css");

/* Custom HomeGear styles will be loaded via functions.php */

/* Google Preferred Sources Button Styles */
.mvp-author-meta-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
}

.google-preferred-source-button {
	flex-shrink: 0;
}

.preferred-source-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #ffffff;
	color: #333333;
	padding: 8px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

/* Prevent visited link styling - keep same appearance */
.preferred-source-btn:visited {
	color: #333333 !important;
	text-decoration: none !important;
}

.preferred-source-btn:hover {
	border-color: #c0c0c0;
	color: #333333;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.preferred-source-btn:active {
	border-color: #a0a0a0;
	color: #333333;
	text-decoration: none;
}

.google-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: inline-block;
	vertical-align: middle;
}

.preferred-source-text {
	display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.mvp-author-meta-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.google-preferred-source-button {
		width: 100%;
	}
	
	.preferred-source-btn {
		display: flex;
		width: 100%;
		justify-content: center;
		white-space: normal;
	}
}