/* プロフィール */
.profile { background: #fff; border-radius: 12px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.profile-left h2 { font-size: 1.3rem; color: #2e5c2e; margin-bottom: 6px; }
.profile-left .since { font-size: 0.8rem; color: #aaa; }
.profile-stats { display: flex; gap: 24px; }
.profile-stats .stat { text-align: center; }
.profile-stats .stat .num { font-size: 1.3rem; font-weight: bold; color: #2e5c2e; }
.profile-stats .stat .label { font-size: 0.75rem; color: #aaa; }
.btn-follow { padding: 8px 22px; border-radius: 20px; font-size: 0.9rem; cursor: pointer; border: 2px solid #2e5c2e; font-weight: bold; }
.btn-follow.off { background: #2e5c2e; color: #fff; }
.btn-follow.on  { background: #fff; color: #2e5c2e; }

/* グリッド */
.grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid { grid-template-columns: repeat(3, 1fr); } }

.record-card { background: #fff; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.07); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.record-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.13); }
.record-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.no-img { width: 100%; height: 100px; background: #f0f4f0; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.record-inner { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; }
.record-date { font-size: 0.88rem; font-weight: bold; color: #2e5c2e; margin-bottom: 4px; }
.record-location { font-size: 0.8rem; color: #888; margin-bottom: 8px; }
.record-body { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.83rem; flex: 1; }
.record-body .item span:first-child { font-size: 0.7rem; color: #aaa; display: block; }
.record-body .item span:last-child { font-weight: bold; color: #333; }
.size-highlight { font-size: 1.2rem !important; color: #2e5c2e !important; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 8px; border-top: 1px solid #f0f0f0; font-size: 0.8rem; color: #aaa; }
.badge-private { font-size: 0.72rem; background: #f0f0f0; color: #999; padding: 2px 8px; border-radius: 20px; }

.empty { background: #fff; border-radius: 10px; padding: 48px; text-align: center; color: #999; }
.records-heading { color: #2e5c2e; margin-bottom: 16px; font-size: 1rem; }
