#org-name {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 32px;
}

#stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--color-link);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-tertiary);
    text-align: center;
    max-width: 120px;
}

#cta-row {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

#cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ff0000;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 999px;
    transition: background-color 0.15s ease;
}

#cta-button:hover {
    background-color: #d60000;
}

#cta-button:active {
    background-color: #b30000;
}

#cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#cta-button img {
    height: 16px;
    width: auto;
}

#ops-heading {
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto 12px;
    max-width: 700px;
}

ul#operations {
    max-width: 700px;
    margin: 0 auto;
}

#paging {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    max-width: 700px;
    margin: 0 auto;
}

.paging-btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-link);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.paging-btn:hover {
    background-color: var(--color-bg-hover);
}

.paging-btn:active {
    background-color: var(--color-bg-active);
}

.paging-btn.disabled {
    color: var(--color-text-tertiary);
    border-color: var(--color-border-subtle);
    pointer-events: none;
}

.paging-info {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

@media (max-width: 632px) {
    main div#content {
        padding: 16px 0;
    }

    #org-name,
    #ops-heading {
        padding: 0 16px;
    }

    #stats {
        gap: 16px;
        padding: 0 16px;
    }

    .stat-circle {
        width: 80px;
        height: 80px;
    }

    .stat-number {
        font-size: 22px;
    }

    ul#operations {
        max-width: 100%;
    }
}
