/* ===== BLOG SZEKCIÓ ===== */
#blog {
  background: #f5f8fa;
}

#blog .section-title {
  color: #003552;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid elrendezés a bejegyzésekhez */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Kártyák stílusa */
.blog-card {
  background: #fff;
  border: 1px solid #003552;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

/* Kép a tetején */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Kártya tartalom */
.blog-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

/* Kategória címke */
.blog-card-content .category {
  font-weight: 600;
  font-size: 0.9rem;
  color: #00679f;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Bejegyzés címe */
.blog-card-content h3 {
  font-size: 1.4rem;
  color: #003552;
  margin-bottom: 10px;
}

/* Rövid leírás */
.blog-card-content p {
  font-size: 0.95rem;
  color: #003552;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* "Read more" link */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00a5ff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more img {
  width: 17px;
  height: 14px;
}

.read-more:hover {
  cursor: pointer;
}

/* "Load more" gomb a grid alatt */
.load-more {
  margin-top: 40px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 2px solid #00a5ff;
  border-radius: 20px 0 20px 0;
  color: #00a5ff;
  padding: 10px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icon-showmore {
  width: 14px;
  height: 15px;
  transition: color 0.3s ease;
  /* uses currentColor so it follows the text color */
}

.load-more-btn:hover {
  background: #00a5ff;
  color: #003552; /* text + icon will change */
}

@media (max-width: 425px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
