.gfc-grid {
    display: grid;
    grid-gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 12px;
    background: radial-gradient(circle at top, #131826, #05070b);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.gfc-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gfc-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gfc-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gfc-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gfc-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.gfc-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.gfc-item {
    position: relative;
    border-radius: 10px;
    padding: 0.5rem;
    background: radial-gradient(circle at top, #1f2434, #05070b);
    color: #e9ecff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.gfc-meta {
    margin-bottom: 0.35rem;
    padding-right: 5.5rem; /* espaço para o badge */
}

.gfc-title {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.gfc-location {
    margin: 0;
    margin-top: 0.1rem;
    font-size: 0.78rem;
    opacity: 0.8;
}

.gfc-brand-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 3;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff0040, #ffb000);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 64, 0.8);
    white-space: nowrap;
}

.gfc-frame-wrapper {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.gfc-frame-wrapper iframe,
.gfc-frame-wrapper video,
.gfc-frame-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gfc-cols-3,
    .gfc-cols-4,
    .gfc-cols-5,
    .gfc-cols-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .gfc-cols-2,
    .gfc-cols-3,
    .gfc-cols-4,
    .gfc-cols-5,
    .gfc-cols-6 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .gfc-brand-badge {
        font-size: 0.65rem;
    }
}
