42 lines
1004 B
CSS
42 lines
1004 B
CSS
.frame-type-cloonar_stats .stats-wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
position: relative;
|
|
z-index: 10; /* Ensure it's on top of the hero container */
|
|
background: #fff;
|
|
padding: 2rem 1rem;
|
|
max-width: 1140px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
/* Each paragraph is treated as a column */
|
|
.frame-type-cloonar_stats .stats-wrapper p {
|
|
flex: 1 1 100%;
|
|
text-align: center;
|
|
margin-bottom: 1rem;
|
|
text-transform: uppercase;
|
|
color: var(--bs-primary);
|
|
}
|
|
|
|
/* Lead paragraphs have larger text for numbers */
|
|
.frame-type-cloonar_stats .stats-wrapper span.big-number {
|
|
font-size: 4rem;
|
|
font-family: 'Hajime Sans', sans-serif;
|
|
text-transform: none;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.frame-type-cloonar_stats .stats-wrapper {
|
|
gap: 2rem;
|
|
padding: 3rem 1rem;
|
|
}
|
|
.frame-type-cloonar_stats .stats-wrapper p {
|
|
flex: 1 1 calc(25% - 2rem);
|
|
}
|
|
|
|
}
|