@charset "utf-8";
/* CSS Document */
/* Blog Teaser Section */
.blog-teaser-section {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #fff; /* soft warm tone for blog */
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.blog-teaser-section .feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.blog-teaser-section .feature-text h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.blog-teaser-section .feature-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.blog-teaser-section .feature-text .button {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: #4a90e2;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.blog-teaser-section .feature-text .button:hover {
  background-color: #357ab8;
}
.blog-teaser-section .feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc; /* thin grey line */
  padding: 2px; /* optional: space between border and image */
}
.blog-teaser-section {
  font-family: "Century Gothic", sans-serif;
  text-align: center; /* optional, if you want centered text */
  color: #333;        /* optional, standard dark text color */
}

