.news-page .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.news-header {
  text-align: center;
  margin-bottom: 3rem;
}

.news-heading {
  font-size: 2rem;
  font-weight: bold;
}

.news-description {
  color: #666;
  margin-top: 0.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform .2s;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: .5rem;
}

.news-title a {
  text-decoration: none;
  color: #222;  
}

.news-title a:hover {
  color: #f4ebc4
}

.news-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.news-link {
  font-weight: bold;
  color: #f4ebc4;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}

.post {
    background: white;
    padding: 0;
    margin-bottom: 2rem;
}

.image-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.img{
		height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    background-color: black;
}

.content{
		display: flex;
    flex-grow: 1;
    flex-direction: column;
    padding-left:2rem;
	  padding-right:2rem;
		padding-bottom:2rem;
}

.blog-card {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.blog-card .title {
  font-size: 1.25rem;
  margin:0;
	color: #3B3B3B;
}

.blog-card .description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-card .meta-info {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #999;
}

.tags {
    margin-bottom: 1rem;
		margin-top:1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-card .tag {
  display: inline-block;
  background: #f4ebc4;
  color: #3b3b3b;
  line-height: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
}

.blog-card .tag--3d {
  background: #b08d57;  
  color: #fff;
}

.card-link{
	text-decoration:none;
}

.empty {
  text-align: center;
  padding: 3rem 0; 
}

.no-posts {
  max-width: 600px;
  margin: 0 auto;
}

.empty-title {
  font-size: 1.25rem;   
  font-weight: bold;    
  margin-bottom: 0.5rem; 
  color: #111;          
}

.empty-message {
  font-size: 1rem;
  color: #4b5563; 
  line-height: 1.6;
}