@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'DIN Condensed';
  src: url('../font/din-condensed-regular/din-condensed-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.market-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('../img/pbn_market_hero.jpg') center/cover no-repeat;
}

.market-hero-left {
  width: 100%;
  max-width: 560px;
  padding: 40px 60px 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: transparent;
}

.market-hero-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  
}

.market-hero-logo img {
  max-height: 160px;
  width: auto;
  display: block;
}

.market-hero-left h1 {
  color: #fff;
  font-family: 'DIN Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-underline {
  width: 46px;
  height: 3px;
  background: var(--orange, #ff6a00);
  margin-bottom: 16px;
}

.market-hero-left p {
  color: #f2f4f8;
  font-size: 25px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.market-page-content {
  padding: 0 24px 36px;
  background: #fff;
}

.breadcrumb {
  padding: 20px 0 14px;
  margin: 0;
}

.layout {
  display: grid;
  grid-template-columns: 250px 1fr 300px;
  gap: 20px;
  align-items: start;
  padding: 0;
}

.news-article-panel {
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fff;
}

@media (max-width: 1100px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .market-hero {
    min-height: 280px;
  }

  .market-hero-left {
    width: 100%;
    padding: 30px 24px;
  }
}