body {
  margin: 0;
  min-height: 100vh;
  background: #E9E9E9;
  font-family: 'Red Hat Display', sans-serif;
  color: #ffffff;
}

.dashboard {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  padding: 36px;
  box-sizing: border-box;
}

.ticker-panel,
.news-panel {
  background: #ffffff;
  color: #111827;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Main Stock Panel */

.ticker-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
  overflow: hidden;
}

/* Single Gradient Accent Rail */

.ticker-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #f58220 0%,
    #ffb15a 30%,
    #f58220 55%,
    #0545F5 100%
  );
}

.ticker-symbol {
  font-size: clamp(80px, 10vw, 180px);
  font-weight: 900;
  color: #0545F5;
  letter-spacing: -6px;
  line-height: 0.9;
}

.company-name {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 500;
  color: #0545F5;
}

.stock-price {
  margin-top: 48px;
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -10px;
  color: #1F2937;
  text-shadow: 0 4px 20px rgba(0, 58, 112, 0.12);
}

.stock-change {
  margin-top: 28px;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 900;
}

.positive {
  color: #14833b;
}

.negative {
  color: #c62828;
}

.neutral {
  color: #6b7280;
}

.meta {
  margin-top: 42px;
  font-size: 20px;
  font-weight: 400;
  color: #6b7280;
}

/* News Panel */

.news-panel {
  padding: 34px;
  overflow-y: auto;
  border-top: 8px solid #f58220;
}

.news-panel h2 {
  margin: 0 0 24px;
  padding-bottom: 14px;
  font-size: 30px;
  font-weight: 900;
  color: #0545F5;
  border-bottom: 4px solid #f58220;
}

.news-item {
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.news-item a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.news-item a:hover {
  color: #003a70;
}

.news-date {
  margin-top: 8px;
  font-size: 15px;
  color: #6b7280;
}

/* Mobile */

@media (max-width: 900px) {
  .dashboard {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .ticker-panel {
    padding: 42px;
  }

  .stock-price {
    font-size: clamp(90px, 20vw, 180px);
    letter-spacing: -4px;
  }
}