
.page-id-159 .mytextwrapper {
	display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: space-evenly;
}


.talent {
	display:block;
    color: #ff0b0b;
    padding-bottom: 5px;
    letter-spacing: 10px;
    overflow: hidden;
    flex: 0 0 100%;
    width: 100%;
    margin: 20px 0;
    text-align: center;
    box-sizing: border-box;
}

.talent-sub {
    text-align: center;
    font-size: 70%;
    font-style: italic;
    margin: 0 auto 15px auto;
    color: darkgray;
	display:block;
	width:100%;
}

.talent_headshot {
    width: 238px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 100%;
    float: none;
    flex: 0 0 auto;
}

.talent_headshot img {
width:100%;
height:auto;
}

.roster_headshot {
    width: 100%;
    background-size: auto 100%;
    background-position: center;
}

.talent_headshot .name_wrapper {
    color: #FFFFFF;
    text-align: center;
	border-top: 2px solid #ffb018;
	border-bottom: 2px solid #ffb018;
    padding: 5px 0px 5px 0px;
}

.talent_headshot .name_wrapper .name {
    font-size: 80%;
    letter-spacing: 1.5px;
}

.name_wrapper div {
    margin: 0px auto 0px auto;
    line-height: 20px;
}

.nick {
    font-size: 75%;
    color: #ffb018;
    letter-spacing: 1.5px;
}

.team {
	font-size: 75%;
    color: #ff0b0b;
    letter-spacing: 1.5px;
}

.tweet {
	display: flex; 
	justify-content: center; 
	align-items: center; 
	gap: 10px; 
	width: max-content; /* Changed from 100% */
}

.xicon, .xhand {
}

.xicon {
	width: 0.8rem;
    height: 0.8rem;
	background-image: url('https://pcw.unleashed.pw/wp-content/uploads/2026/05/logo.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.xhand {
    font-size: 80%;
    line-height: 1;
    letter-spacing: 1.5px;
}

/* Roster Records */
.roster_record_table {
	display: table;
    width: 100%;
}
.roster_record_table_row {
	display: table-row;
}
.roster_record_table_cell {
	display: table-cell;
    width:33%;
    text-align: center;
	font-size: 80%;
}
.roster_record_table_body {
	display: table-row-group;
}

.roster_record_table_cell.category {
    display: table-cell;
    color: #ff0b0b;
    letter-spacing: 1px;
    font-size: 80%;
    padding: 0px 5px 0px 5px;
}

.roster_record_table_cell.subcategory {
}

.roster_record_table_cell.value {
	color: #ffffff;
    padding-bottom: 5px;
    font-size: 80%;
    letter-spacing: 2px;
	line-height: 1;
}

.roster_record_table_row.top {
}

.roster_record_table_row.middle {
}


.champ-block {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
	flex: 0 0 auto;
}

/* 2. The 1:1 Image Div with Grid Stack */
.champ-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-areas: "stack";
}

.champ-image img {
    grid-area: stack;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. The Floating Overlay Div */
.champ-image .champ-overlay {
	grid-area: stack;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 0.5) 80px, rgba(0, 0, 0, 0) 100px);
}

/* Text Styling */
.champ-overlay p {
  margin: 0;
}

.champ-overlay .champ-name {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0px;
    color: #ff0b0b;
}

.champ-overlay .champ-title {
    font-size: 0.85rem;
    margin-bottom: 0px;
    color: #ffb018;
}