/* CC Custom Authors — Frontend Styles */
/* Extends and replaces .cc-author-box from the Care & Cure theme */

/* ── Main author box ── */
.cca-author-box {
	margin: 40px 0;
}

/* ── Single author card ── */
.cca-author-card {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	background: var(--cc-light, #f4f8f0);
	border-radius: 14px;
	padding: 24px;
	border: 1px solid rgba(141,198,63,.25);
}
.cca-multi-author .cca-author-card {
	margin-bottom: 16px;
}
.cca-multi-author .cca-author-card:last-child {
	margin-bottom: 0;
}

/* ── Author image ── */
.cca-author-img-wrap { flex-shrink: 0; }
.cca-author-img-link { display: block; }
.cca-author-img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,.12);
	display: block;
	transition: transform .2s;
}
.cca-author-img-link:hover .cca-author-img {
	transform: scale(1.05);
}
.cca-author-img-placeholder {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1a3a28 0%, #8dc63f 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	flex-shrink: 0;
}

/* ── Author body ── */
.cca-author-body { flex: 1; min-width: 0; }
.cca-author-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: #8dc63f;
	margin: 0 0 4px;
}
.cca-author-name {
	font-size: 16px;
	font-weight: 800;
	color: var(--cc-dark, #1c2e26);
	margin: 0 0 3px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}
.cca-author-name-link {
	color: inherit;
	text-decoration: none;
	transition: color .15s;
}
.cca-author-name-link:hover { color: #8dc63f; }

/* ── Verified badge ── */
.cca-verified-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #1a3a28;
	color: #8dc63f;
	font-size: 10px;
	font-weight: 900;
	flex-shrink: 0;
}

/* ── Designation ── */
.cca-author-designation {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #666;
	margin-top: 2px;
}

/* ── Bio ── */
.cca-author-bio {
	font-size: 13px;
	color: #555;
	line-height: 1.65;
	margin: 8px 0 0;
}

/* ── Social links ── */
.cca-author-social {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	flex-wrap: wrap;
}
.cca-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #ddd;
	color: #444;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	transition: all .15s;
	flex-shrink: 0;
}
.cca-social-link:hover {
	background: #1a3a28;
	border-color: #1a3a28;
	color: #fff;
}
.cca-social-facebook:hover  { background: #1877f2; border-color: #1877f2; }
.cca-social-linkedin:hover  { background: #0a66c2; border-color: #0a66c2; }
.cca-social-twitter:hover   { background: #000;    border-color: #000; }
.cca-social-instagram:hover { background: #e1306c; border-color: #e1306c; }

/* ── Compact author box ── */
.cca-compact .cca-author-card {
	padding: 16px;
	border-radius: 10px;
}
.cca-compact .cca-author-img {
	width: 48px;
	height: 48px;
}
.cca-compact .cca-author-img-placeholder {
	width: 48px;
	height: 48px;
	font-size: 18px;
}
.cca-compact .cca-author-name { font-size: 14px; }
.cca-compact .cca-author-bio  { display: none; }

/* ── Byline (inline, top of post) ── */
.cca-byline {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}
.cca-byline-img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,.1);
	vertical-align: middle;
}
.cca-byline-name {
	font-weight: 700;
	color: var(--cc-dark, #1c2e26);
	text-decoration: none;
}
.cca-byline-name:hover { color: #8dc63f; }
.cca-byline-sep { color: #999; }

/* ── Author list grid (shortcode) ── */
.cca-author-list { margin: 24px 0; }
.cca-author-list-card {
	background: #f4f8f0;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	border: 1px solid rgba(141,198,63,.2);
	transition: transform .2s, box-shadow .2s;
}
.cca-author-list-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.cca-author-list-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 12px;
	display: block;
	border: 3px solid #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.cca-author-list-name {
	font-size: 15px;
	font-weight: 800;
	margin: 0 0 4px;
	color: var(--cc-dark, #1c2e26);
}
.cca-author-list-name a { color: inherit; text-decoration: none; }
.cca-author-list-name a:hover { color: #8dc63f; }
.cca-author-list-desig {
	font-size: 12px;
	font-weight: 600;
	color: #8dc63f;
	margin: 0 0 8px;
}
.cca-author-list-bio {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
	.cca-author-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 18px;
	}
	.cca-author-name { justify-content: center; }
	.cca-author-social { justify-content: center; }
	.cca-author-label { text-align: center; }
}
