/* =========================================================
   CARIPULSE ORGANIZER ANALYTICS
========================================================= */


/* =========================================================
   ANALYTICS GRID
========================================================= */

.organizer-analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}


/* =========================================================
   METRIC LIST
========================================================= */

.organizer-analytics-metric-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


.organizer-analytics-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    background: #fbfcfe;
}


.organizer-analytics-metric span {
    color: #7a8491;
    font-size: 14px;
}


.organizer-analytics-metric strong {
    color: #081221;
    font-size: 24px;
    line-height: 1.2;
}


/* =========================================================
   STATUS LIST
========================================================= */

.organizer-analytics-status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.organizer-analytics-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    padding: 15px 18px;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    background: #fbfcfe;
}


.organizer-analytics-status-row > div {
    display: flex;
    align-items: center;
    gap: 11px;
}


.organizer-analytics-status-row span {
    color: #687280;
    font-size: 14px;
}


.organizer-analytics-status-row strong {
    color: #081221;
    font-size: 20px;
}


/* =========================================================
   STATUS DOTS
========================================================= */

.organizer-analytics-status-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    display: inline-block;
    border-radius: 50%;
}


.organizer-analytics-status-dot.published {
    background: #28a76f;
}


.organizer-analytics-status-dot.pending {
    background: #e6aa2c;
}


.organizer-analytics-status-dot.draft {
    background: #8f9aaa;
}


/* =========================================================
   EVENT PERFORMANCE
========================================================= */

#organizer-analytics-event-performance {
    min-height: 140px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .organizer-analytics-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .organizer-analytics-metric,
    .organizer-analytics-status-row {
        padding: 16px;
    }


    .organizer-analytics-metric strong {
        font-size: 22px;
    }


    .organizer-analytics-status-row strong {
        font-size: 18px;
    }

}