/**
 * News-Styles für Branchenbuch Pro
 */

.branchenbuch-news-container {
  margin-bottom: 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
}

.branchenbuch-news-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.branchenbuch-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.branchenbuch-news-item {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  background-color: #fff;
}

.branchenbuch-news-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.branchenbuch-news-image {
  height: 200px;
  overflow: hidden;
}

.branchenbuch-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.branchenbuch-news-item:hover .branchenbuch-news-image img {
  transform: scale(1.05);
}

.branchenbuch-news-content {
  padding: 20px;
}

.branchenbuch-news-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
}

.branchenbuch-news-item-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s;
}

.branchenbuch-news-item-title a:hover {
  color: #3498db;
}

.branchenbuch-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.branchenbuch-news-date::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.branchenbuch-news-author::before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.branchenbuch-news-excerpt {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.branchenbuch-news-read-more {
  display: inline-flex;
  align-items: center;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.branchenbuch-news-read-more:hover {
  color: #2980b9;
  text-decoration: none;
}

.branchenbuch-news-read-more i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.branchenbuch-news-read-more:hover i {
  transform: translateX(3px);
}

/* Artikel-Seite */
.branchenbuch-news-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.branchenbuch-news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  color: #7f8c8d;
  font-size: 0.9rem;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.branchenbuch-news-article-date::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.branchenbuch-news-article-author::before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.branchenbuch-news-article-category::before {
  content: "\f07b";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.branchenbuch-news-article-content {
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.branchenbuch-news-article-content p {
  margin-bottom: 20px;
}

.branchenbuch-news-article-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.branchenbuch-news-back-button {
  display: inline-flex;
  align-items: center;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.branchenbuch-news-back-button:hover {
  color: #2980b9;
  text-decoration: none;
}

.branchenbuch-news-back-button i {
  margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .branchenbuch-news-grid {
    grid-template-columns: 1fr;
  }

  .branchenbuch-news-article {
    padding: 15px;
  }
}

