/* Citation Counts Display Styles */
/* Font Family: Inter */

.academic-citation-counts-wrapper {
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.academic-citation-counts {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 98px;
    border: 1px solid #E4E7EC;
    border-radius: 4px;
    overflow: hidden;
}


.academic-count-card {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
    padding: 18px 22px;
    position: relative;
}

/* Separator lines between columns - not on first or last */
.academic-count-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #E4E7EC;
}

.academic-count-number {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -0.02em;
    color: #22212A;
}

.academic-count-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
    color: #22212A;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Responsive: Stack vertically on mobile */
@media (max-width: 768px) {
    .academic-citation-counts {
        flex-direction: column;
        height: auto;
		width: 100%;
    }
	
.academic-count-number {
    font-size: 42px;
}

    .academic-count-card {
        padding: 16px 22px;
        min-height: 92px;
    }

    /* Remove vertical separators and add horizontal ones */
    .academic-count-card:not(:last-child)::after {
        right: auto;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
    }
}
