/* DailyPuck Team Page Styles */
/* Edit this file once to update all team pages - v2 */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0d1117;
  color: #c9d1d9;
  line-height: 1.6;
}

/* Team colors - set via CSS variables in template */
:root {
  --team-primary: #cc0000;
  --team-secondary: #000000;
  --team-accent: #a2aaad;
}

.header {
  padding: 20px 30px;
  border-bottom: 3px solid var(--team-accent);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.team-logo {
  width: 70px;
  height: 70px;
}

.header h1 {
  font-size: 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin: 0;
}

.header .record {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Podcast Promo in Header - Banner Style */
.header-podcast-promo {
  background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.4) 100%);
  border-radius: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.promo-badge {
  background: var(--team-accent);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.promo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-title {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.promo-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

.promo-subscribe-btn {
  position: relative;
  background: white;
  color: var(--team-primary);
  border: none;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  margin-left: auto;
}

.promo-subscribe-btn:hover {
  background: var(--team-accent);
  color: white;
}

@media (max-width: 900px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .header-left {
    flex-direction: column;
  }
  .header-podcast-promo {
    width: 100%;
    justify-content: center;
  }
}

.nav {
  background: #161b22;
  padding: 10px 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav a {
  color: #58a6ff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
}

.nav a:hover { background: #21262d; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Game Schedule Section - 4 columns */
.schedule-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

@media (max-width: 1100px) {
  .schedule-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .schedule-section {
    grid-template-columns: 1fr;
  }
}

/* Injury list */
.injury-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 1px 0;
  border-bottom: 1px solid #30363d;
}

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

.injury-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #21262d;
}

.injury-info { flex: 1; }

.injury-name {
  font-size: 0.85rem;
  color: #c9d1d9;
  font-weight: 500;
}

.injury-position {
  font-size: 0.7rem;
  color: #8b949e;
}

.injury-status {
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: #f8514926;
  color: #f85149;
}

.injury-status.day-to-day { background: #f0883e26; color: #f0883e; }
.injury-status.ir { background: #f8514926; color: #f85149; }

.schedule-card {
  background: #161b22;
  border-radius: 10px;
  padding: 1px;
  border: 1px solid #30363d;
}

.schedule-card h3 {
  color: #8b949e;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1px;
  text-align: center;
}

/* Individual Game Box */
.game-box {
  background: #21262d;
  border-radius: 8px;
  padding: 2px 1px;
  margin-bottom: 3px;
}

.game-box:last-child { margin-bottom: 0; }

.game-matchup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.game-team {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.game-team.away { justify-content: flex-start; }
.game-team.home { justify-content: flex-end; }

.game-team-logo {
  width: 28px;
  height: 28px;
}

.game-team-abbr {
  font-weight: 600;
  font-size: 0.9rem;
}

.game-score {
  font-size: 1.1rem;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
}

.game-team.winner .game-team-abbr,
.game-team.winner .game-score { color: #3fb950; }

.game-team.loser { opacity: 0.7; }

.game-vs {
  color: #6e7681;
  font-size: 0.8rem;
  padding: 0 5px;
}

.game-info {
  text-align: center;
  font-size: 0.75rem;
  color: #8b949e;
  margin-top: 6px;
}

.game-info .final { color: #8b949e; }
.game-info .time { color: #58a6ff; }

/* Today's Game - Featured */
.today-game {
  background: linear-gradient(135deg, #21262d 0%, #161b22 100%);
  border: 2px solid #30363d;
  padding: 20px;
}

.today-game .game-team-logo { width: 48px; height: 48px; }
.today-game .game-team-abbr { font-size: 1.2rem; }
.today-game .game-score { font-size: 1.5rem; }
.today-game .game-vs { font-size: 1rem; }

.today-game .game-info {
  font-size: 0.9rem;
  margin-top: 10px;
}

.off-today {
  text-align: center;
  padding: 30px;
  color: #6e7681;
  font-size: 1.1rem;
}

.off-today .icon { font-size: 2rem; margin-bottom: 10px; }

/* Odds Display */
.game-odds {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #30363d;
}

.odds-item { text-align: center; }
.odds-label { font-size: 0.65rem; color: #6e7681; text-transform: uppercase; }
.odds-value { font-size: 0.9rem; color: #f0883e; font-weight: 600; }

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; }
}

.card {
  background: #161b22;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #30363d;
}

.card.full-width { grid-column: span 2; }
@media (max-width: 768px) {
  .card.full-width { grid-column: span 1; }
}

.card h2 {
  color: #58a6ff;
  margin-bottom: 15px;
  font-size: 1.1rem;
  border-bottom: 1px solid #30363d;
  padding-bottom: 10px;
}

/* Card Header with Subscribe */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #30363d;
  padding-bottom: 10px;
}

.card-header h2 {
  margin: 0;
  border: none;
  padding: 0;
}

.podcast-header-subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.podcast-title {
  font-size: 0.85rem;
  color: #8b949e;
}

.subscribe-btn {
  position: relative;
  background: var(--team-primary);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
}

.subscribe-btn:hover { background: var(--team-accent); }

.share-btn {
  position: relative;
  padding: 0.4rem 0.75rem;
  background: #30363d;
  color: #c9d1d9;
  border: 1px solid #444c56;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.share-btn:hover {
  background: var(--team-accent);
  color: white;
  border-color: var(--team-accent);
}

.share-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 0.5rem;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.share-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.share-option {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: transparent;
  color: #8b949e;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: left;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-option:hover {
  background: #21262d;
  color: #f0f6fc;
}

.share-option svg {
  flex-shrink: 0;
}

.subscribe-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.subscribe-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.subscribe-option {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: transparent;
  color: #8b949e;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: left;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.subscribe-option:hover {
  background: #21262d;
  color: #f0f6fc;
}

.panel-title {
  font-size: 0.8rem;
  color: #8b949e;
  margin-bottom: 10px;
}

.panel-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  color: #58a6ff;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 6px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.panel-link:hover { background: #30363d; }
.panel-link:last-child { margin-bottom: 0; }

/* Audio Items - Inline Player Style */
.audio-item {
  background: #21262d;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 12px;
}

.audio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.audio-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #c9d1d9;
  flex: 1;
  line-height: 1.3;
}

.audio-date {
  font-size: 0.75rem;
  color: #8b949e;
  margin-left: 10px;
  white-space: nowrap;
}

.audio-summary {
  font-size: 0.85rem;
  color: #8b949e;
  margin-bottom: 10px;
  line-height: 1.4;
}

.audio-summary a {
  color: #58a6ff;
  text-decoration: none;
}

.audio-summary a:hover { text-decoration: underline; }

.audio-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-button {
  background: var(--team-primary);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.play-button:hover { background: var(--team-accent); }
.play-button.playing { background: #238636; }

.speed-selector {
  background: #161b22;
  color: #c9d1d9;
  border: 1px solid #30363d;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
}

.audio-duration {
  font-size: 0.8rem;
  color: #8b949e;
}

.audio-progress {
  flex: 1;
  height: 4px;
  background: #30363d;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.audio-progress-bar {
  height: 100%;
  background: var(--team-primary);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s;
}

/* Podcast & Community */
.podcast-subscribe { display: flex; gap: 10px; flex-wrap: wrap; }
.podcast-btn {
  background: #21262d;
  color: #c9d1d9;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid #30363d;
}
.podcast-btn:hover { background: #30363d; }

.community-link {
  display: block;
  padding: 10px;
  background: #21262d;
  border-radius: 6px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #c9d1d9;
}
.community-link:hover { background: #30363d; }
.community-link .type { color: #8b949e; font-size: 0.75rem; }

.loading { text-align: center; padding: 5px; color: #8b949e; }

/* Team Media Section */
.media-section {
  background: #161b22;
  border-radius: 8px;
  padding: 25px;
  border: 1px solid #30363d;
  margin-top: 20px;
}

.media-section h2 {
  color: #f0f6fc;
  margin-bottom: 20px;
  font-size: 1.3rem;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #30363d;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .media-grid { grid-template-columns: 1fr; }
}

.media-column h3 {
  color: #58a6ff;
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.media-column h3 svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.media-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #21262d;
  border-radius: 8px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #c9d1d9;
  transition: all 0.2s;
}

.media-item:hover {
  background: #30363d;
  transform: translateX(4px);
}

.media-item-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: #30363d;
  flex-shrink: 0;
}

.media-item-logo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #8b949e;
}

.media-item-info {
  flex: 1;
  min-width: 0;
}

.media-item-name {
  font-weight: 600;
  color: #f0f6fc;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.media-item-desc {
  font-size: 0.8rem;
  color: #8b949e;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.media-item-badge {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.media-item-badge.official { background: #238636; color: white; }
.media-item-badge.fan { background: #1f6feb; color: white; }
.media-item-badge.media { background: #8957e5; color: white; }

/* Audio Player Bar */
.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #161b22;
  border-top: 1px solid #30363d;
  padding: 10px 20px;
  display: none;
  align-items: center;
  gap: 15px;
}
.audio-player.active { display: flex; }
.player-info { flex: 1; }
.player-title { font-size: 0.9rem; color: #c9d1d9; }
#audioElement { flex: 2; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  color: #8b949e;
  font-size: 0.85rem;
  border-top: 1px solid #30363d;
  margin-top: 30px;
}

.site-footer a {
  color: #58a6ff;
  text-decoration: none;
}

/* ========================================
   COMPACT BANNER - For "Off Today" section
   ======================================== */

.betnews-banner-compact {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.betnews-banner-compact .betnews-banner-sm {
  width: 100%;
  max-width: 280px;
  height: 60px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.betnews-banner-compact .betnews-banner-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.betnews-banner-compact .betnews-banner-sm::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #cc0000, #990000);
  box-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

.betnews-banner-compact .bn-sm-logo {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #cc0000, #990000);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.betnews-banner-compact .bn-sm-logo svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.betnews-banner-compact .bn-sm-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.betnews-banner-compact .bn-sm-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.betnews-banner-compact .bn-sm-title span {
  color: #cc0000;
}

.betnews-banner-compact .bn-sm-subtitle {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.betnews-banner-compact .bn-sm-cta {
  background: linear-gradient(135deg, #cc0000, #990000);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* AI Picks Compact Banner - cyan/blue theme */
.ai-banner-compact {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.ai-banner-compact .ai-banner-sm {
  width: 100%;
  max-width: 280px;
  height: 60px;
  background: linear-gradient(135deg, #0a0f1a 0%, #0d1525 50%, #0a0f1a 100%);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 200, 255, 0.1);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ai-banner-compact .ai-banner-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 200, 255, 0.3);
}

.ai-banner-compact .ai-banner-sm::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #00c8ff, #0080ff);
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

.ai-banner-compact .ai-sm-logo {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #00c8ff, #0080ff);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-banner-compact .ai-sm-logo svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.ai-banner-compact .ai-sm-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ai-banner-compact .ai-sm-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.ai-banner-compact .ai-sm-title span {
  color: #00c8ff;
}

.ai-banner-compact .ai-sm-subtitle {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ai-banner-compact .ai-sm-cta {
  background: linear-gradient(135deg, #00c8ff, #0080ff);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* Full Banner Container */
.banner-container {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.full-banner {
  width: 100%;
  max-width: 728px;
  height: 90px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.full-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #cc0000, #990000);
  box-shadow: 0 0 15px rgba(204, 0, 0, 0.5);
}

.full-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(204, 0, 0, 0.3);
}

.full-banner .bn-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #cc0000, #990000);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  margin-right: 12px;
  box-shadow: 0 2px 10px rgba(204, 0, 0, 0.3);
}

.full-banner .bn-logo svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.full-banner .bn-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  letter-spacing: 1px;
}

.full-banner .bn-text span {
  color: #cc0000;
}

.full-banner .bn-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
  margin: 0 25px;
}

.full-banner .bn-content {
  flex: 1;
}

.full-banner .bn-tagline {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.full-banner .bn-headline {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.full-banner .bn-headline span {
  color: #cc0000;
  font-weight: 700;
}

.full-banner .bn-cta {
  background: linear-gradient(135deg, #cc0000, #990000);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 20px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .full-banner {
    height: auto;
    min-height: 70px;
    padding: 10px 0;
  }
  .full-banner .bn-logo { width: 32px; height: 32px; margin-left: 12px; margin-right: 8px; }
  .full-banner .bn-logo svg { width: 18px; height: 18px; }
  .full-banner .bn-text { font-size: 20px; }
  .full-banner .bn-divider { display: none; }
  .full-banner .bn-content { display: none; }
  .full-banner .bn-cta { font-size: 11px; padding: 8px 14px; margin-right: 12px; }
}
