/* style/resources-coffee-making-tips.css */
.page-resources-coffee-making-tips {
  font-family: 'Noto Sans KR', sans-serif;
  color: #333333;
  background-color: #E5E5E5;
}

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

.page-resources-coffee-making-tips .content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.page-resources-coffee-making-tips h1,
.page-resources-coffee-making-tips h2,
.page-resources-coffee-making-tips h3 {
  color: #333333;
  margin-bottom: 20px;
}

.page-resources-coffee-making-tips p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.page-resources-coffee-making-tips .btn:hover {
  background-color: #555555;
}

.page-resources-coffee-making-tips img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.page-resources-coffee-making-tips .related-resources {
  margin-top: 40px;
}

.page-resources-coffee-making-tips .related-resources ul {
  list-style: none;
  padding: 0;
}

.page-resources-coffee-making-tips .related-resources li {
  margin-bottom: 10px;
}

.page-resources-coffee-making-tips .related-resources a {
  color: #333333;
  text-decoration: none;
}

.page-resources-coffee-making-tips .related-resources a:hover {
  text-decoration: underline;
}