
.wp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
  padding: 0 80px 80px 80px;
}

.wp-box {
  background: #fafafa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.wp-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  color: #133050 !important;
}

.wp-box p.wp-date {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
      background: linear-gradient(90deg, #f6aa29, #fbd71a, #6bb855);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.wp-box a {
  background: #f59e2c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  background: linear-gradient(90deg, #f6aa29, #fbd71a, #6bb855);
    background-size: 200% 200%;
    background-position: 100% 0;
    transition: all 0.6s 
ease;
}

.wp-box a:hover {
  background: #133050;
}

.wp-search-box {
  margin-bottom: 40px;
  text-align: center;
  padding-top: 80px;
}

#wp-search-input {
  width: 50%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #ccc;
}
