.objetos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 4rem;
}

.objeto-item a{
  text-decoration: none;
  color: inherit;
}

.objeto-thumb-wrapper img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.objeto-thumb-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  height: 360px;
}

.objeto-thumb,
.objeto-thumb-hover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.objeto-thumb-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

.objeto-item:hover .objeto-thumb-hover {
  opacity: 1;
}


.objeto-title {
  font-size: .9em;
  margin-top: 1em;
  margin-bottom: 0;
}

.objeto-date {
  font-size: 0.85rem;
}

.meius-load-more-button{
  background: none;
  border: none;
  display: block;
  color: var(--wp--preset--color--primary);
  padding: 1em;
  margin: 3em auto 2em !important;
}

@media screen and (min-width: 769px) {
 .objeto-item:only-child{
     max-width:50%;
 }
}

@media screen and (max-width: 600px) {
  .objetos-grid {
    grid-template-columns: 1fr;
  }
}