/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 17 2026 | 17:26:19 */
.tnp-archive {
  margin: 0 auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tnp-archive ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tnp-archive li {
  background-color: #4CAF50;
  padding: 15px;
  border-radius: 0;
  transition: background-color 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background-image:url('https://acms-cmr.org/wp-content/uploads/2026/03/ACMS-BLOCNEWS.jpg');
  box-shadow: inset 0 0 0 1000px rgba(70, 134, 72, 0.67), 0 4px 6px rgba(0,0,0,0.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tnp-archive li:hover {
  background-color: #e65100;
  transform: translateY(-3px);
}

.tnp-archive-date {
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 8px;
	text-transform:capitalize;
}

.tnp-archive-separator {
  display: none;
}

.tnp-archive a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
  display: block;
  width: 100%;
  cursor: pointer;
 
}

.tnp-archive a:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 1024px) {
  .tnp-archive ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tnp-archive ul {
    grid-template-columns: 1fr;
  }
}