.blog-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  color: #eee;
}

.blog-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.blog-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.mosaic-card {
  background: #2a2c2f;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mosaic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.mosaic-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.mosaic-info {
  padding: 14px 16px;
}

.mosaic-info h3 {
  font-size: 1.05rem;
  color: #7ed957;
  margin-bottom: 6px;
}

.mosaic-info p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

.mosaic-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}


main{
    background-color: rgb(40, 42, 45);
    margin-top: 20px;
    border-radius: 8px 8px 0 0;
}