/*
 * NPL Sports Pro Theme - Advanced Author Meta Styling
 * Fully Expanded Responsive Design (7 Breakpoints)
 */

.npl-author-meta-box {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    gap: 10px;
}

.author-avatar-wrapper {
	position: relative; 
	width: 45px; 
	height: 45px; 
	}
.meta-avatar {
	width: 100%; 
	height: 100%; 
	border-radius: 50%; 
	object-fit: cover; 
	}
.verified-badge {
	position: absolute; 
	bottom: 0; 
	right: 0; 
	color: #1da1f2; 
	background: #fff; 
	font-size: 12px; 
	}

.author-details {
	flex: 1;
	}
.author-display-name {
	margin: 0;
	font-size: 15px;
	font-weight: 800;
	}
.author-display-name a {
	color: #222;
	text-decoration: none;
	}

.post-pill-tags {
	display: flex;
	gap: 8px;
	font-size: 10px;
	color: #666;
	}
.pill-tag i {
	color: #0010a0;
	}

.author-meta-right {
	display: flex;
	align-items: center;
	gap: 10px;
	}

/* Updated View Counter Styling */
.meta-views-count {
    font-size: 11px;
    font-weight: 700;
    color: #dd0000;
    background-color: #fff0f1;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(221, 0, 0, 0.1);
    white-space: nowrap;
}

.meta-views-count i {
    font-size: 10px;
    color: #dd0000;
}

.view-count-number {
    text-transform: uppercase;
}

.meta-inline-share {
	display: flex;
	gap: 4px;
	}
.s-btn {
	width: 26px; 
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	color: #fff !important;
	font-size: 11px;
	text-decoration: none !important;
	}
.s-btn.fb {
	background: #3b5998;
	}
.s-btn.tw {
	background: #1da1f2;
	}
.s-btn.wa {
	background: #25d366;
	}
.s-btn.mail {
	background: #848484;
	}
.s-btn.print {
	background: #333;
	}

.meta-font-controls {
	display: flex;
	background: #f1f1f1;
	padding: 2px;
	border-radius: 4px;
	}
.f-btn {
	background: #fff;
	border: 1px solid #ddd;
	width: 24px;
	height: 24px;
	margin: 0 1px;
	cursor: pointer;
	font-size: 10px;
	}

@media (max-width: 768px) {
    .npl-author-meta-box { flex-wrap: wrap; }
    .author-meta-right { width: 100%;
	justify-content: center;
	border-top: 1px solid #eee;
	padding-top: 10px;
	}
}

/* ===================================================================
 * RESPONSIVE BREAKPOINTS (7 DEVICES)
 * =================================================================== */

/* 1. Large Desktop (Max 1440px) */
@media (max-width: 1440px) { .npl-author-meta-box { padding: 15px; } }

/* 2. Standard Desktop (Max 1200px) */
@media (max-width: 1200px) { .npl-author-meta-box { gap: 15px; } }

/* 3. Small Laptop (Max 1024px) */
@media (max-width: 1024px) { .author-display-name { font-size: 16px; } }

/* 4. Tablets Landscape (Max 992px) */
@media (max-width: 992px) { .meta-inline-share { gap: 3px; } }

/* 5. Tablets Portrait (Max 768px) */
@media (max-width: 768px) { .author-avatar-wrapper { width: 50px; height: 50px; } }

/* 6. Mobile Large (Max 600px) */
@media (max-width: 600px) {
    .npl-author-meta-box { flex-direction: column; align-items: flex-start; }
    .author-meta-right { width: 100%; align-items: center; border-top: 1px solid #eeeeee; padding-top: 10px; }
}

/* 7. Mobile Small (Max 480px) */
@media (max-width: 480px) {
    .meta-inline-share { gap: 2px; }
    .s-btn { width: 24px; height: 24px; font-size: 10px; }
    .f-btn { width: 24px; height: 24px; }
}