/* Home page specific styles split from layout.css */
.meeting-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.meeting-post-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(var(--accent-rgb), 0.06);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px var(--shadow-ink-10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meeting-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px var(--shadow-ink-10);
    border-color: var(--vr-blue);
}

.meeting-post-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--surface-neutral);
    padding-bottom: 5px;
}

.meeting-post-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.meeting-post-row div:first-child {
    font-weight: bold;
    color: var(--table-label);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-right: 15px;
}

.meeting-post-row div:last-child {
    color: var(--table-value);
    text-align: right;
    word-break: break-all;
}

.x-share-button-wrapper {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 1100;
}

.x-share-button {
    display: inline-block;
    background-color: var(--x-share-bg);
    color: var(--on-accent);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-family: sans-serif;
    transition: background-color 0.3s;
}

.x-share-button:hover {
    background-color: var(--x-share-hover-bg);
}

/* 最初は非表示にするためのスタイル */
.gift-list-card.is-hidden {
    display: none;
}

.top-user-more-button-container {
    margin-top: 2rem;
}

#top-user-more-button:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}
