<style>
  body {
	   font-family: 'Noto Sans KR', sans-serif;
	   background-color: #f8f9fa;
  }

  .card {
	   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .card-img-top {
	   object-fit: cover;
	   height: 200px;
  }

  .card-title a {
	   text-decoration: none;
	   color: #212529;
  }

  .card-title a:hover {
	   color: #ff5e57;
  }

  .ads-placeholder {
	   background: #ffe7d6;
	   color: #d2691e;
	   padding: 20px;
	   text-align: center;
	   font-weight: bold;
	   border: 2px dashed #ffae42;
  }

  hr.section-divider {
	   border: none;
	   border-top: 1px dashed #eee;
	   margin: 3rem 0;
  }

  /* 스크롤 카드 */
  .scroll-wrapper {
	   overflow-x: auto;
	   -webkit-overflow-scrolling: touch;
	   margin-bottom: 2rem;
  }

  .scroll-container {
	   display: flex;
	   scroll-snap-type: x mandatory;
	   padding-bottom: 0.5rem;
	   margin-left: -0.25rem;
  }

  .scroll-card {
	   flex: 0 0 50%;
	   max-width: 50%;
	   scroll-snap-align: start;
	   box-sizing: border-box;
	   padding-left: 0.25rem;
  }

  .scroll-card .card-img-top {
	   height: 160px;
	   object-fit: cover;
  }

  @media (min-width: 768px) {
	   .scroll-card {
			flex: 0 0 25%;
			max-width: 25%;
	   }
  }

  /* 네비게이션 & Offcanvas */
  .navbar {
	   background-color: #fff;
	   border-bottom: 1px solid #ddd;
	   margin-bottom: 1rem;
  }

  .navbar-toggler {
	   border: none;
  }

  .offcanvas-body .nav-link {
	   font-size: 1.1rem;
	   padding: 12px 16px;
	   margin-bottom: 4px;
	   border-radius: 6px;
	   color: #444;
	   transition: background-color 0.2s, color 0.2s;
  }

  .offcanvas-body .nav-link:hover {
	   background-color: #00c6e0;
	   color: #fff;
	   text-decoration: none;
  }
</style>