body {
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}
.card-custom {
    width: 10%;
    min-width: 300px;
    margin: 10px;
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}
.card-date {
    font-weight: bold;
    font-size: 16px;
}
.card-footer-custom {
    font-size: 11px;
    height: 20px;
    overflow: hidden;
}

.user-chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.user-chip{
display:flex;
align-items:center;
gap:8px;
text-decoration:none;
color:#333;
font-weight:600;
}

.user-chip__avatar{
 width:36px;
 height:36px;
 border-radius:50%;
 object-fit:cover;
}

.user-chip__name{
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.container-cards {
    max-width: 1400px;
    margin: auto;
}

.row-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

/* CARD */

.card-custom {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform .2s;
}

.card-custom:hover {
    transform: translateY(-3px);
}

.card-custom img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* DATA */

.card-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00939a;
    color: #fff;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
}

/* TEXTO */

.card-body {
    padding: 10px 14px;
}

.evento-exibir {
    font-size: 15px;
    font-weight: 600;
}

.cidade-exibir {
    font-size: 14px;
    color: #666;
}

