/* Athlete profile: social icons and contact form. */

/* Nick asked for the social links to be more visible. Squared tiles in the
   theme navy, orange on hover, sized for touch. */
.person-info__socials, .single-athlete-socials { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 4px; padding: 0; list-style: none; }
.person-info__socials a, .single-athlete-socials a,
.person-info__item a[href*="facebook"], .person-info__item a[href*="instagram"],
.person-info__item a[href*="twitter"], .person-info__item a[href*="x.com"] {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	background: #1a3648; color: #f1f1e6;
	font-size: 20px; line-height: 1; text-decoration: none;
	transition: background .15s ease;
}
.person-info__socials a:hover, .single-athlete-socials a:hover,
.person-info__item a[href*="facebook"]:hover, .person-info__item a[href*="instagram"]:hover,
.person-info__item a[href*="twitter"]:hover, .person-info__item a[href*="x.com"]:hover { background: #ec6a2a; color: #fff; }
.person-info__socials a:focus-visible, .single-athlete-socials a:focus-visible { outline: 3px solid #ec6a2a; outline-offset: 2px; }

/* Contact form */
.wcbb-contact { margin: 34px 0 10px; }
.wcbb-contact__form { max-width: 560px; }
.wcbb-contact__row { margin-bottom: 14px; }
.wcbb-contact__row label {
	display: block; margin-bottom: 5px;
	font-family: Oswald, "Arial Narrow", Arial, sans-serif;
	font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #1a3648;
}
.wcbb-contact__row input, .wcbb-contact__row textarea {
	width: 100%; padding: 10px 12px; font-size: 15px; font-family: inherit;
	border: 1px solid #c8c8bb; background: #fff; color: #1a3648; border-radius: 0;
}
.wcbb-contact__row textarea { resize: vertical; }
.wcbb-contact__ok, .wcbb-contact__err { padding: 11px 14px; margin-bottom: 16px; font-size: 15px; }
.wcbb-contact__ok { background: #edf6ed; border-left: 4px solid #3f8a3f; color: #1e4620; }
.wcbb-contact__err { background: #fbeceb; border-left: 4px solid #b3352c; color: #6b1f1a; }

/* Honeypot stays in the DOM for bots but out of sight and out of the a11y tree. */
.wcbb-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
