.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.rky-date::first-word {
    display: none !important;
}

.card-item {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-thumb {
    width: 100%;
    margin-bottom: 10px;
}

.rky-thumb-left {
    width: 100%;
    margin: 0px;
}

.card-thumb img {
    width: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
}

.card-content rky\\:title {
    display: block;
    margin-bottom: 8px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center; /* 🔥 centraliza as colunas */
}
.card-item {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center; /* 🔥 centraliza o conteúdo do card */ 
}
.card-item{
padding: 0px;
  border-radius:0;
  box-shadow: 0 4px 12px rgba(10, 50, 255, 0.5);
}
.rky-thumb-left{
padding: 0px;
}
.card-content{
padding: 10px;
}
.rky-title {
  font-size: large;
  display: block;
}

.cards-grid{
    padding: 2vw;
}
.card-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(10, 50, 255, 0.55);
}

