.blog-header {
  text-align: center;
  margin: 2rem 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1rem;
  padding: 20px;
}
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr); 
  }
}
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
}
.blog-image {
  width: 100%;
  padding-top: 100%; 
  position: relative;
}
.blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-content {
  padding: 1rem;
  text-align: center;
}
.blog-content h3 {
  margin: 0.5rem 0;
}
.blog-content .blog-summary {
  font-size: 0.9rem;
  color: #666;
}
.blog-content .blog-date {
  font-size: 0.8rem;
  color: #999;
}
.blog-detail {
  padding: 2rem;
  text-align: center;
}
.blog-detail .container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-detail-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.blog-detail-content {
  text-align: justify;
}
.blog-detail-date {
  font-size: 0.875rem;
  color: #666;
  text-align: right;
}
.blog-detail-meta {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
}
#like-btn {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
#like-btn:hover {
  color: #b2473f;
}
#like-btn:focus {
  outline: none;
}
.blog-hidden {
  display: none;
}
@media (max-width: 768px) {
  .blog-detail .container {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
  .blog-detail-content {
    padding: 0;
  }
}
.blog-card a {
  color: inherit;          
  text-decoration: none;     
  transition: color 0.2s ease;
}
.blog-card a:hover {
  color: #b2473f;            
}
.ARTICLE_PAGE {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  font-family: 'Jost', sans-serif;
  color: rgb(42, 42, 42);
}
.article-hero {
  margin-bottom: 50px;
}
.article-hero-image {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}
.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-intro {
  text-align: justify;
  margin: 0 150px 60px 150px;
}
.ARTICLE_PAGE h1 {
  font-family: 'Stolzl', sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 20px;
}
.ARTICLE_PAGE h2 {
  font-family: 'Stolzl', sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 0 80px 0;
}
.ARTICLE_PAGE h3 {
  font-family: 'Stolzl', sans-serif;
  font-size: 26px;
  font-weight: 400;
  margin: 30px 0 15px;
  padding: 0 150px 0;
}
.ARTICLE_PAGE p,
.ARTICLE_PAGE ul {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 100;
}
.ARTICLE_PAGE p {
  padding: 0 150px 0;
}
.ARTICLE_PAGE ul {
  padding: 0 170px 0;
}
.article-images-row {
  display: flex;
  justify-content: space-around;
  margin: 40px 0;
}
.article-image-container {
  width: 50%;
  height: 600px;
  overflow: hidden;
  position: relative;
}
.article-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-symbol-text-row {
  display: flex;
  align-items: center;
  margin: 30px 0 60px 0;
}
.article-flower-image {
  margin-left: 150px;
  margin-right: 20px;
}
.article-flower-image img {
  width: 200px;
  height: auto;
}
.article-quote {
  font-family: 'BodoniModa', serif;
  font-size: 40px;
  font-style: italic;
  margin-right: 100px;
}
.article-quote p {
  padding: 0;
  margin: 0;
}
.article-section {
  margin-bottom: 40px;
}
.ARTICLE_PAGE .address-list {
  list-style: none;
  padding: 0 150px; 
  margin: 0;
}
.ARTICLE_PAGE .address-list li {
  margin-bottom: 12px;
}
.ARTICLE_PAGE .address-list a {
  color: inherit; 
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.ARTICLE_PAGE .address-list a:hover {
  color: #b2473f;
  border-bottom-color: #b2473f;
}
@media (max-width: 768px) {
  .article-intro {
    margin: 0 20px 40px 20px;
  }
  .ARTICLE_PAGE h1 {
    font-size: 36px;
  }
  .ARTICLE_PAGE h2 {
    font-size: 30px;
    padding: 0 20px;
  }
  .ARTICLE_PAGE h3 {
    padding: 0 20px;
  }
  .ARTICLE_PAGE p,
  .ARTICLE_PAGE ul {
    font-size: 18px;
  }
  .ARTICLE_PAGE p {
    padding: 0 20px;
  }
  .ARTICLE_PAGE ul {
    padding: 0 40px;
  }
  .article-images-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .article-image-container {
    width: 100%;
    height: auto;
  }
  .article-symbol-text-row {
    flex-direction: column;
    align-items: center;
    margin: 20px 0 40px;
  }
  .article-flower-image {
    margin: 0 0 10px 0;
  }
  .article-flower-image img {
    width: 30%;
  }
  .article-quote {
    font-size: 24px;
    margin: 0 20px;
    text-align: center;
  }
  .ARTICLE_PAGE .address-list {
    padding: 0 20px; 
  }
  .ARTICLE_PAGE .address-list li {
    margin-bottom: 10px;
  }
}
.blog-page-title {
    display: none;
}