/* =====================
   GLOBAL — Sportsnet Style
===================== */

body {
  font-family: 'urw-din', 'URW DIN', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background-color: #f3f4f5;
  color: #343434;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

a:hover {
  color: #005eb8;
}

/* =====================
   TOP NAV BAR — Sportsnet Cobalt
===================== */

.sn-topbar {
  background-color: #0d243c;
  min-height: 38px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.sn-topbar-link {
  color: #a2abae;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s;
  white-space: nowrap;
}

.sn-topbar-link:hover {
  color: #ffffff;
}

/* =====================
   HEADER / LOGO — Sportsnet
===================== */

.sn-header {
  background-color: #ffffff;
  border-bottom: 1px solid #cecece;
  padding: 8px 0;
}

.sn-logo {
  font-size: 28px;
  font-weight: 900;
  color: #0d243c;
  letter-spacing: -1px;
  text-transform: lowercase;
}

.sn-logo-dot {
  color: #005eb8;
}

.sn-subscribe-btn {
  background-color: transparent;
  color: #0d243c;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid #0d243c;
  border-radius: 2px;
  padding: 6px 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background-color 0.2s, color 0.2s;
}

.sn-subscribe-btn:hover {
  background-color: #0d243c;
  color: #ffffff;
}

/* =====================
   BREADCRUMB — Sportsnet
===================== */

.sn-breadcrumb {
  background-color: #ffffff;
  border-bottom: 1px solid #eaecef;
  font-size: 12px;
}

.sn-breadcrumb .breadcrumb-item a {
  color: #0d243c;
  font-weight: 600;
}

.sn-breadcrumb .breadcrumb-item a:hover {
  color: #156bac;
  text-decoration: underline;
}

.sn-breadcrumb .breadcrumb-item.active {
  color: #636a71;
  font-weight: 500;
}

.sn-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #bbb;
  content: "/";
}

/* =====================
   ARTICLE TAG + TITLE — Sportsnet
===================== */

.sn-article-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  background-color: #005eb8;
  color: #fff;
  padding: 4px 12px;
  border-radius: 2px;
}

.sn-article-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #343434;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}

@media (max-width: 768px) {
  .sn-article-title {
    font-size: 1.75rem;
  }
}

.sn-article-subtitle {
  font-size: 1.15rem;
  color: #343434;
  line-height: 1.5;
  font-weight: 400;
  border-left: 4px solid #005eb8;
  padding-left: 14px;
  margin-bottom: 20px;
  font-family: 'PT Serif', Georgia, serif;
}

/* =====================
   BYLINE — Sportsnet
===================== */

.sn-byline {
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  padding: 12px 0;
  background-color: #ffffff;
}

.sn-byline-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0d243c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.sn-byline-avatar i {
  position: relative;
  top: 1px;
}

.sn-byline-name {
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sn-byline-name a:hover {
  text-decoration: underline;
  color: #005eb8;
}

.sn-byline-role {
  font-weight: 400;
  color: #636a71;
}

.sn-byline-date {
  font-size: 12px;
  color: #636a71;
  font-family: 'roboto', sans-serif;
}

.sn-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eaecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #343434;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}

.sn-share-btn:hover {
  background: #005eb8;
  color: #fff;
}

/* =====================
   HERO IMAGE — Sportsnet
===================== */

.sn-hero-image {
  background-color: #fff;
  padding: 16px 16px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.sn-hero-image img {
  border-radius: 2px;
  width: 100%;
}

.sn-image-caption {
  font-size: 12px;
  color: #636a71;
  margin-top: 8px;
  line-height: 1.4;
  font-style: italic;
}

/* =====================
   ARTICLE BODY — Sportsnet
===================== */

.sn-article-body {
  padding: 0;
}

.sn-article-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #343434;
  margin-bottom: 1.3rem;
  font-family: 'PT Serif', Georgia, serif;
}

.sn-article-body p strong {
  font-weight: 700;
  color: #343434;
}

.sn-article-body a {
  color: #005eb8;
  font-weight: 600;
  text-decoration: none;
}

.sn-article-body a:hover {
  color: #005eb8;
  text-decoration: underline;
}

.sn-article-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #343434;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  padding-bottom: 6px;
  border-bottom: 3px solid #005eb8;
  letter-spacing: -0.1px;
  text-transform: none;
}

/* =====================
   BLOCKQUOTE — Sportsnet
===================== */

.sn-blockquote {
  border-left: 4px solid #005eb8;
  background: #f8f8f8;
  padding: 18px 22px;
  margin: 1.5rem 0;
  border-radius: 0;
}

.sn-blockquote p {
  font-size: 1.1rem !important;
  font-style: italic;
  color: #343434 !important;
  margin-bottom: 8px !important;
  font-family: 'PT Serif', Georgia, serif;
}

.sn-blockquote footer {
  font-size: 12px;
  font-weight: 700;
  color: #636a71;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================
   STATS BOX — Sportsnet
===================== */

.sn-stats-box {
  background: #0d243c;
  border-radius: 4px;
  overflow: hidden;
  color: #ffffff;
}

.sn-stats-title {
  background: #005eb8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px;
}

.sn-stat-item {
  padding: 16px 10px;
  border-right: 1px solid #2b3d57;
}

@media (max-width: 767px) {
  .sn-stat-item {
    border-right: none;
    border-bottom: 1px solid #2b3d57;
    padding: 12px 10px;
  }
}

@media (max-width: 767px) {
  .sn-stat-item:last-child {
    border-bottom: none;
  }
}

.sn-stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
}

.sn-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #a2abae;
  margin-top: 4px;
}

/* =====================
   TAGS — Sportsnet
===================== */

.sn-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sn-tag {
  background: #f3f4f5;
  color: #636a71;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.sn-tag:hover {
  background: #005eb8;
  color: #fff;
}

/* =====================
   SHARE FOOTER — Sportsnet
===================== */

.sn-share-footer {
  border-top: 1px solid #cecece;
  padding-top: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.sn-share-label {
  font-size: 13px;
  font-weight: 700;
  color: #343434;
}

.sn-share-btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0d243c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.sn-share-btn-lg:hover {
  background: #156bac;
  color: #fff;
}

/* =====================
   SIDEBAR — Sportsnet
===================== */

.sn-sidebar-section {
  background: #ffffff;
  border-radius: 0;
  padding: 16px;
  border-top: 4px solid #005eb8;
}

.sn-sidebar-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #005eb8;
  padding-bottom: 8px;
  margin-bottom: 14px;
  border-bottom: 2px solid #cecece;
}

.sn-related-img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.sn-related-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #005eb8;
  margin-bottom: 2px;
}

.sn-related-title {
  font-size: 13px;
  font-weight: 700;
  color: #343434;
  line-height: 1.35;
}

.sn-related-item {
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f5;
}

.sn-related-item:last-child {
  border-bottom: none;
}

.sn-related-item:hover .sn-related-title {
  color: #005eb8;
}

/* =====================
   AD PLACEHOLDER — Sportsnet
===================== */

.sn-ad-placeholder {
  background: #eaecef;
  border: 1px dashed #cecece;
  border-radius: 4px;
  padding: 40px 0;
  font-size: 12px;
  color: #a2abae;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =====================
   TRENDING — Sportsnet
===================== */

.sn-trending-list {
  list-style: decimal;
  margin-bottom: 0;
  padding-left: 20px;
}

.sn-trending-item {
  font-size: 13px;
  font-weight: 600;
  color: #343434;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f5;
  cursor: pointer;
  line-height: 1.35;
}

.sn-trending-item:last-child {
  border-bottom: none;
}

.sn-trending-item:hover {
  color: #005eb8;
}

/* =====================
   FOOTER — Sportsnet
===================== */

.sn-footer {
  background-color: #0d243c;
  color: #a2abae;
}

.sn-footer-dot {
  font-size: 28px;
}

.sn-footer-ca {
  font-size: 28px;
  color: #fff;
}

.sn-footer-tagline {
  font-size: 11px;
  color: #a2abae;
  margin: 0;
  letter-spacing: 0.5px;
}

.sn-footer-heading {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #ffffff;
  margin-bottom: 14px;
}

.sn-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sn-footer-links li {
  margin-bottom: 8px;
}

.sn-footer-links li a {
  font-size: 13px;
  color: #a2abae;
  transition: color 0.2s;
}

.sn-footer-links li a:hover {
  color: #ffffff;
  text-decoration: none;
}

.sn-footer-bottom {
  border-top: 1px solid #2b3d57;
  font-size: 12px;
  color: #636a71;
}

