/**
 * FC Partner - Partners Page Styling
 * Minimal custom CSS - leverages FluentCommunity native styles
 *
 * @package FC_Partner
 * @since 2.8.0
 */

/* ========================================
   SCROLL CONTAINER
   (Enables page scrolling within FC's SPA)
   ======================================== */

.fc-partners-scroll-container {
    height: calc(100vh - 55px); /* Viewport minus header */
    overflow-y: auto;
    overflow-x: hidden;
}

/* ========================================
   PARTNERS HERO - CTA BUTTON
   (Button inside fc-boards-hero layout)
   ======================================== */

/* CTA wrapper - extra space above button */
.fc-boards-hero-cta {
    margin-top: 24px;
}

/* CTA Button - uses FC theme variables only */
.fc-boards-hero-left .fcom_primary_button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.3s ease;
    color: var(--fcom-primary-button-text, var(--fcom-primary-bg));
    background: var(--fcom-primary-button);
    border: 1px solid var(--fcom-primary-button);
}

.fc-boards-hero-left .fcom_primary_button:hover {
    opacity: 0.8;
}

/* ========================================
   PARTNERS-SPECIFIC ADDITIONS
   (Join date for Newest Partners column)
   ======================================== */

/* Newest Partners - wrapper for name+badge and join date */
.fc-partner-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

/* Join Date - second row below name/badge */
.fc-partner-join-date {
    font-size: 11px;
    opacity: 0.5;
    margin-top: 2px;
}

/* ========================================
   LOADING STATES
   ======================================== */

.fc-partners-loading-more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-size: 13px;
    opacity: 0.6;
}

/* Scroll trigger (invisible) */
.fc-scroll-trigger {
    height: 1px;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

