.PlayerNews .ContentEdit-right[data-right-tab="widgets"] {
    display: grid;
    grid-template-columns: 320px 1fr;
    grid-template-areas: "playerinfo recentnews";
    overflow: auto !important;
    height: auto !important;
    background-color: var(--color-gray3);
}

.PlayerNews .ContentEdit-right[data-right-tab="widgets"] > .frame:nth-of-type(2) {
    grid-area: playerinfo;
    overflow-y: auto;
    margin: 0;
    border-right: 1px solid #dcdcdc;
}

.PlayerNews .ContentEdit-right[data-right-tab="widgets"] > .frame:nth-of-type(3) {
    grid-area: recentnews;
    margin: 0;
    overflow-y: auto;
}

/* HIDE PUBLISHING TOOLS COMPLETELY */
.PlayerNews .ContentEdit-right-top {
    display: none !important;
}

.PlayerNews .PlayerNews-noResults.message-info,
.PlayerNews .PlayerInfo-noResults.message-info {
    background-color: var(--color-white) !important;
}

.PlayerNews .Widget:not(.is-collapsed) {
    overflow: auto;
}

.PlayerNews btu-widget[data-internal-name="nbcsports.content.playernews.servlet.PlayerNewsInfoWidget"],
.PlayerNews btu-widget[data-internal-name="nbcsports.content.playernews.servlet.PlayerNewsListWidget"]  {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.PlayerNews btu-widget[data-internal-name="nbcsports.content.playernews.servlet.PlayerNewsInfoWidget"].Widget.is-collapsible:not(.is-collapsed),
.PlayerNews btu-widget[data-internal-name="nbcsports.content.playernews.servlet.PlayerNewsListWidget"].Widget.is-collapsible:not(.is-collapsed)  {
    margin-top: -80px !important;
    height: calc(100% + 80px);
}

.PlayerNews btu-widget[data-internal-name="nbcsports.content.playernews.servlet.PlayerNewsListWidget"].Widget.is-collapsible.is-collapsed,
.PlayerNews btu-widget[data-internal-name="nbcsports.content.playernews.servlet.PlayerNewsInfoWidget"].Widget.is-collapsible.is-collapsed {
    margin-top: 0 !important;
}


.PlayerNews .LinkTable,
.PlayerNews .LinkList {
    width: 100%;
}

.PlayerNews .LinkList.is-scrollable {
    max-height: calc(75vh - var(--Widget-padding) - 30px);
}

.PlayerNews .LinkList tr.is-buttoned {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-content: start;
    column-gap: var(--gap-m);
    width: auto;
    border: solid 1px #E8E8EA;
    box-shadow: 0 0 var(--gap-xs) 0 rgba(var(--rgb-black), .15);
    margin-bottom: var(--gap-s);
    margin-top: var(--gap-s);
    background: #fff;
    padding: var(--gap-s) var(--gap-m) !important;
}

.PlayerNews .LinkList tr.is-new-content > td {
    animation: fade 10s forwards;
}

.PlayerNews .LinkList tr.is-new-content {
    animation: fade 10s forwards;
    border: solid 1px;
    box-shadow: var(--shadow-2);
}

/*Reusable elements*/

.PlayerNews .PlayerInfo-titleBar {
    display: flex;
    align-items: center;
    margin-bottom: var(--gap-m);
    justify-content: space-between;
}

.PlayerNews .title {
    padding-left: 0;
    font-weight: bold;
}

.PlayerNews .title ::before {
    display: none;
}

.PlayerNews .title, .refresh {
    order: -4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: auto;
}

.PlayerNews .PlayerNews-loader:after {
    display: inline-block;
    font-family: 'Material Symbols Outlined';
    font-feature-settings: "liga";
    font-size: var(--Icon-size);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    text-rendering: optimizeLegibility;
    text-transform: none;
    vertical-align: top;
    white-space: nowrap;
    word-wrap: normal;
    color: var(--color-black);
    content: "autorenew";
    position: absolute;
    top: calc(50% - var(--Icon-size) / 2);
    z-index: 10;
    direction: ltr;
    animation: spin-ltr var(--time-xl) infinite ease-in-out;
    left: calc(50% - var(--Icon-size) / 2);
    transform: var(--Icon-transform);
}

/*PlayerNewsList*/

.PlayerNews .PlayerNewsList-controls {
    display: flex;
    justify-content: end;
    padding: 0 0 var(--gap-s);
}

.PlayerNews .PlayerNewsList-analysis {
    --Text-height: var(--lineHeight-s);
    line-height: var(--lineHeight-s);
    color: var(--color-black);
}

.PlayerNews .PlayerNewsList-news {
  --Text-height: var(--lineHeight-s);
  font-style: italic;
  line-height: var(--lineHeight-s);
  color: var(--color-black);
}

.PlayerNews .PlayerNewsList .LinkList-image {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
}

.PlayerNews .PlayerNewsList td.LinkList-main {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.PlayerNews .PlayerNewsList td.PlayerNewsList-datetime {
    grid-column: 2;
    grid-row: 2;
    flex-direction: column;
    align-items: start !important; /* overriding high specificity :( */
}

.PlayerNews .PlayerNewsList .ToolUserAvatar-name {
    display: none;
}

.PlayerNews .PlayerNewsList td.PlayerNewsList-datetime .datetime {
    display: flex;
    align-items: center;
}

.PlayerNews .PlayerNewsList td.PlayerNewsList-datetime .datetime:before {
    content: "";
    display: inline-block;
    height: 2px;
    width: 2px;
    background: var(--color-gray6);
    border-radius: 50%;
    margin: 0 var(--gap-s);
}

.PlayerNews .PlayerNewsList-published,
.PlayerNews .PlayerNewsList-updated {
    display: flex;
}

.PlayerNews .PlayerNewsList .filters {
    --Input-focusBackground: #E8E8EA;

    align-items: center;
    background: #F3F3F4;
    border-color: #E8E8EA;
    border-style: solid;
    border-width: 1px 0;
    display: flex;
    justify-content: flex-start;
    margin: 0 calc(0 - var(--gap-l));
    margin-top: -1px;
    order: -1;
    overflow: auto;
    padding: 0 calc(var(--gap-l) / 2);
    padding-left: inherit;
    position: relative;
    top: calc(0 - var(--gap-l));
    width: calc(var(--gap-l) * 2 + 100%);
}

.PlayerNews .PlayerNewsList .filters form {
    display: flex;
    margin: 0;
}

.PlayerNews .PlayerNewsList .filters > * {
    width: 100%;
}

.PlayerNews .PlayerNewsList .filters form > * {
    margin-right: var(--gap-m);
}

.PlayerNews .PlayerNewsList .filters .ComboInput::before,
.PlayerNews .PlayerNewsList .filters input[type] {
    border-style: none;
}

/*PlayerInfo*/

.PlayerNews .PlayerInfo {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.PlayerNews .PlayerInfo-name {
    font-weight: bold;
}

.PlayerNews .PlayerInfo-fields {
    width: 100%;
}

.PlayerNews .PlayerInfo-field {
    display: flex;
    padding: var(--gap-s) 0;
    border-bottom: 1px solid var(--color-gray3);
}

.PlayerNews .PlayerInfo-status-field {
    display: flex;
    padding: var(--gap-s) 0;
    border-bottom: 1px solid var(--color-gray3);
    color: #ff0000;
    font-weight: bold;
}

.PlayerNews .PlayerInfo-status-field-active {
    display: flex;
    padding: var(--gap-s) 0;
    border-bottom: 1px solid var(--color-gray3);
    font-weight: bold;
}

.PlayerNews .PlayerNewsInfo-fieldName {
    font-size: var(--fontSize-s);
    line-height: var(--lineHeight-xs);
    color: var(--color-gray7);
    font-weight: 700;
    padding-right: var(--gap-s);
}

.PlayerNews .PlayerNewsInfo-status-fieldName {
  font-size: var(--fontSize-m);
  line-height: var(--lineHeight-xs);
  color: var(--color-gray7);
  font-weight: 700;
  padding-right: var(--gap-s);
}


.PlayerNews .PlayerNewsInfo-fieldValue {
    font-size: var(--fontSize-s);
    line-height: var(--lineHeight-xs);
}


.PlayerNews .PlayerNewsInfo-status-fieldValue {
  font-size: var(--fontSize-m);
  line-height: var(--lineHeight-xs);
}

.PlayerNews .PlayerNewsInfo-fieldValue[data-empty] {
    display: none;
    color: var(--color-gray5);
}

.PlayerNews .ContentEdit-right .Widget > .Widget-title {
    min-height: calc(var(--gap-m) * 2 + var(--Text-height));
}

.PlayerNews-Actions {
    display: flex;
    flex-direction: column;
}

.PlayerNews-Action {
    margin-bottom: var(--gap-m);
}

.PlayerNews-Action .action {
    padding: var(--gap-s);
    border: 1px solid;
    display: inline-block;
}

@media (min-width: 769px) {
    .Page-content .PlayerNews,
    .Popup .PlayerNews {
        --ContentEdit-rightWidth: 50%;
    }
}

@media (min-width: 1201px) {
    .Page-content .PlayerNews,
    .Popup .PlayerNews {
        --ContentEdit-rightWidth: 840px;
    }
}