/* =============================================
   03_release.css : 発売日・グリッド表示専用
   ============================================= */
.cvx-grid {
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(7, 1fr);
    margin-top: 10px;
}

.cvx-card {
    background: #fff; border-radius: 12px; padding: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    position: relative; border: 1px solid #c0c8d0;
}

.cvx-card img, .cvx-top img { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: 6px; background: #f0f0f0; }

.cvx-frame { padding: 8px; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); background: #fff; width: 100%; box-sizing: border-box; position: relative; }

.cvx-title { font-size: 11px; font-weight: 600; color: #111; text-decoration: none; line-height: 1.4; height: 2.8em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-top: 10px; }

.cvx-datebar { margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.cvx-chip { border: 1px solid #999; background: #fff; padding: 7px 12px; border-radius: 4px; cursor: pointer; font-size: 12px; font-weight: 700; transition: 0.2s; }
.cvx-chip.is-active { background: #111; color: #fff; border-color: #111; }

.cvx-more-btn { display: block; margin: 35px auto 0; padding: 14px 60px; background: #fff; color: #111; border: 2px solid #333; border-radius: 10px; cursor: pointer; font-weight: bold; text-align: center; text-decoration: none; transition: 0.3s; }
.cvx-more-btn:hover { background: #333; color: #fff; }