main#main {
    width: 100%;
}

article.player-single {
    max-width: 1600px;
    margin: 0 auto!important;
	padding-bottom: 2rem;
}

.player-single {
  --accent: #0f5b4f;
  --accent-2: #17866f;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --panel: #f7f7f7;
  --card: #ffffff;
  --radius: 16px;

  position: relative;
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 42px;
  background: var(--card);
  box-sizing: border-box;
  padding-top: 8.5rem !important;
  padding-inline: 7rem !important;
}

/* top green band */
.player-single::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 260px;
  background: var(--accent);
  z-index: 0;
}

.player-single > * {
  position: relative;
  z-index: 1;
}

/* left image */
.player-single .player-thumbnail {
  width: 100%;
  max-height: 600px;
	min-width:400px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #eef2f5 0%, #dde4ea 100%);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
  overflow: hidden;
}

.player-single .player-thumbnail img {
	border-radius:14px;
	aspect-ratio:1/1.5;
	object-fit:cover;
}

/* right column */
.player-single > div:last-child {
  min-width: 0;
  padding-top: 6rem;
}

/* name + jersey */
.player-single > div:last-child > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.player-single h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
	text-transform: capitalize;
}

.player-single .jersey {
  margin: 0;
 min-width: 48px;
    height: 44px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--accent-2);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

/* meta lines */

.player-single .player-metadata{
	color:#293540;
	font-size:20px;
	line-height:2;
}

.player-single .player-metadata p {
	margin-bottom:0px;
}

.player-single div.content {
  color: black;
  font-size: 0.8rem;
  line-height: 1.5;
margin-top: 1rem;
}

.player-single > div:last-child > p:first-of-type {
  margin-top: 8px;
}

.player-single span {
  color: var(--text);
}

/* instagram */
.player-single .instagram_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 22px;
  color: var(--accent-2);
  text-decoration: none;
}

.player-single .instagram_link::before {

   content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('/wp-content/themes/astra-child/assets/svg/instagram-player.svg') no-repeat center;
  background-size: contain;
  margin-right: 8px;
}

/* achievements card list */
.player-single .achievements {
	font-size:16px;
	color:#293540;
	font-weight:bold;
  line-height: 1.6;
	margin-top:1rem;
	text-transform: capitalize;
}

/* when actual UL/LI markup is rendered */
.player-single .achievements ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.player-single .achievements li,
.player-single .achievements p{
  position: relative;
  padding: 14px 18px 14px 35px;
  background: var(--panel);
  border: 1px solid #efefef;
  border-radius: 12px;
  box-sizing: border-box;

}

.player-single .achievements li::before,
.player-single .achievements p::before{
content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(/wp-content/themes/astra-child/assets/svg/achievement.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(10px, -50%);
}

/* fallback when the UL is not rendered and content is plain text */
.player-single .achievements p {
  margin: 0;
}

body.single-players .gallery-section h2 {
	padding-left:3rem;
}

.lau-news-list {
    padding-left: 3rem !important;
}