/* style/resources-coffee-tasting-tips.css */
/* 페이지 전체 스타일 코드 - 모든 선택자는 페이지 전缀를 추가해야 합니다 */
.page-resources-coffee-tasting-tips {
  font-family: 'Noto Sans KR', sans-serif;
  color: #333333;
  background-color: #E5E5E5;
}

.page-resources-coffee-tasting-tips .hero-section {
  background: linear-gradient(135deg, #333333, #E5E5E5);
  padding: 80px 0;
  text-align: center;
}

.page-resources-coffee-tasting-tips .hero-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.page-resources-coffee-tasting-tips .hero-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.page-resources-coffee-tasting-tips .hero-section .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333333;
  color: #E5E5E5;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-resources-coffee-tasting-tips .hero-section .btn:hover {
  background-color: #1a1a1a;
}

.page-resources-coffee-tasting-tips .content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #E5E5E5;
}

.page-resources-coffee-tasting-tips .content-area h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.page-resources-coffee-tasting-tips .content-area h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.page-resources-coffee-tasting-tips .content-area p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-resources-coffee-tasting-tips .content-area ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-coffee-tasting-tips .content-area ol li {
  font-size: 16px;
  margin-bottom: 10px;
}

.page-resources-coffee-tasting-tips .content-area aside {
  margin-top: 40px;
}

.page-resources-coffee-tasting-tips .content-area aside h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.page-resources-coffee-tasting-tips .content-area aside ul {
  list-style-type: none;
  padding-left: 0;
}

.page-resources-coffee-tasting-tips .content-area aside ul li {
  margin-bottom: 10px;
}

.page-resources-coffee-tasting-tips .content-area aside ul li a {
  text-decoration: none;
  color: #333333;
  transition: color 0.3s ease;
}

.page-resources-coffee-tasting-tips .content-area aside ul li a:hover {
  color: #1a1a1a;
}