/* FRESH LINKS */
.flinks {
 padding: 10px 12px 0 0 !important;
}
.fresh-link-notes {
 text-align: center;
 font-size: 0.8rem;
}
.fresh-links {
 max-width: 540px;
}
.fresh-links h5 {
 padding: 0.25rem 0 0 1.4rem;
 font-weight: bold;
}
li.fresh-link {
 font-size: 0.95rem;
 padding-bottom: 6px;
}
/* MOBILE PHOTO */
.mobile-photo {margin-top:3px;}
.mobile-photo .credit {
 font-size: 0.70rem;
 font-weight: 300;
 text-align: right;
 padding: 0 10px 0 0;
 color: #eee;
 text-align: right;
 margin-top: -22px;
 text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.8);
}
.mobile-photo .caption {
 font-size: 0.90rem;
 font-weight: 600;
 text-align: left;
 padding: 3px;
}
/* INFO COLUMN */
.infocol figure,
.infocol figcaption {
 width: 100%;
 margin: 0px;
 padding: 0;
}
.infocol {
 margin-top: 10px;
 padding: 0 0 2px 0 !important;
 text-align: center;
}
.more-info {
 background-color: #e8e8e8;
 max-width: 480px;
}
@media only screen and (max-width: 600px) {
 .more-info {
  padding: 16px;
 }
}
.more-info-image .credit {
 font-size: 0.75rem;
 font-weight: 300;
 text-align: right;
 max-width: 480px;
 padding: 0 6px 16px 0;
 margin-top: -5px;
}
.more-info-image .caption {
 font-size: 0.9rem;
 color: #222;
 font-weight: bold;
 margin: -15px 6px auto 10px;
 padding-bottom: 16px;
 text-align: left;
}

ul.more-info-list {
 margin-top: 0px;
 padding-bottom: 2px;
 padding-top: 0;
}
.more-info-list li {
 font-size:0.9rem;
}
ul.more-info-list li:nth-child(1n):not(:first-child)::before {
 content: "•";
 display: block;
 line-height: 100%;
 margin-top: 4px;
 margin-bottom: 2px;}
 
/* INFO TAB BUTTON ROW */
.more-info-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0px;
  margin-left:1px;
}

.more-info-tab-btn {
  border: 1px solid #ccc;
  background: #f3f3f3;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.8rem;
}

.more-info-tab-btn.active {
  background: #fff;
  border-bottom-color: #fff;
  font-weight: 600;
}

/* INFO PANELS */
.more-info-tab-panel {
  display: none;
  margin-top: -1px;
  padding: 1.6rem 0 0.3rem 0;
  border-bottom: 2px solid #e8e8e8;
  border-left: 2px solid #e8e8e8;
  border-right: 2px solid #e8e8e8;
  min-height: 13.5rem;
  background: #fafafa;
}

.more-info-tab-panel.active {
  display: block;

} 

/* SCHEDULE TABLE */
.sched-col {
 padding-right: 0 !important;
}
.sched {
 padding: 10px 0;
}
.schedule-build {
 max-width: 330px;
}
.schedule-build-table {
 font-size: 0.8rem;
 border-collapse: collapse;
}
.schedule-build-table th {
 text-align: left;
 font-weight: 600;
 font-size: 0.8rem;
 border-bottom: 2px solid #ddd;
 padding: 0.4rem 0.5rem;
}
.schedule-build-table td {
 padding: 3px 2px 3px 0;
 font-size: 0.8rem;
 border-bottom: 1px solid #eee;
}
.team-record-wrap {
 text-align: left;
 background: #fff;
 border-bottom: 1px solid #666;
 padding: 0.25rem 0.25rem 0.25rem 0.4rem;
}
.team-record-wrap h5 {
 font-weight: bold;
}
.schedule-build-table .result {
 text-align: right;
}
.schedule-build-table td.tv-schedule {
 padding-left: 3px;
}
@media only screen and (max-width: 600px) {
 .schedule-build-table,
 .schedule-build-table td {
  font-size: 0.95rem;
 }
 .schedule-build-table td {
  padding: 6px 4px 6px 2px;
 }
}
.schedule-build-table tfoot td {
 font-size: 0.8rem;
 color: #333;
 padding-top: 0.5rem;
 line-height: 133%;
 padding-left: 2rem;
 background: #fefefe;
 border-bottom: 1px solid #666;
}
.schedule-build-footnotes {
 font-size: 0.8rem;
 color: #333;
}
.schedule-build tr:hover,
.schedule-build tbody tr:hover td {
 background-color: #f5f5f5;
}
.schedule-tabs {
 list-style: none;
 display: flex;
 gap: 8px;
 margin: 0 0 8px;
}
.schedule-tabs li {
 cursor: pointer;
 padding: 4px 12px;
 background: #eee;
 font-size: 0.8rem;
}
.schedule-tabs li.active {
 background: #ddd;
 font-weight: bold;
}
/* TV ICONS & TOOLTIP */
.tv-schedule {
 position: relative;
}
.tv-schedule i.fa-television {
 position: relative;
 cursor: pointer;
}
.tv-schedule i.fa-television::after {
 content: attr(data-network);
 position: absolute;
 right: 100%;
 margin-right: 8px;
 top: 50%;
 transform: translateY(-50%);
 display: none;
 padding: 4px 6px;
 background: #222;
 color: #fff;
 font-family: Arial, sans-serif;
 font-size: 0.85rem;
 white-space: nowrap;
 border-radius: 3px;
 z-index: 9999;
}
@media (hover: hover) {
 .tv-schedule i.fa-television:hover::after {
  display: inline-block;
 }
}
@media (hover: none) {
 .tv-schedule i.fa-television:active::after,
 .tv-schedule i.fa-television:focus::after {
  display: inline-block;
 }
}
/* LATEST THREADS */
#BBS-FEED {
 max-width: 600px;
 margin: 0 auto;
 max-height: 500px;
 overflow: hidden;
 border-bottom: 1px solid #ccc;
 padding: 20px 0 10px 0;
}
#BBS-FEED .widget-body {
 border-left: 1px solid #ccc;
 border-right: 1px solid #ccc;
 background: #fdfdfd;
}
@media only screen and (max-width: 600px) {
 #BBS-FEED .widget-body {
  font-size: 0.85rem;
 }
 #BBS-FEED {
  max-height: 580px;
 }
}
.threads {
 position: relative;
 top: -20px;
 padding: 0 8px;
}
/* OVERALL & MISC */
.mainrow {
 padding: 0 4px 16px 8px;
}
.spread {
 line-height: 150%;
}
.fresh-links,
.more-info,
.schedule-build {
 margin: 0 auto !important;
}
main .widget-head h2 {
 font-size: 1.7rem;
}
.sportBanner {
 text-align: center;
 width: 100%;
 padding: 10px !important;
 background: #e8e8e8;
}
.sportBanner img {
 margin: 0 auto;
}
