.word-counter-form .reusable-textarea-wrapper {
    margin-bottom: 20px;
}

.word-counter-form .reusable-textarea-wrapper textarea {
    min-height: 200px;
}

.word-counter-form .reusable-textarea-wrapper .word-count {
    display: none;
}

.word-counter-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.word-counter-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    box-shadow: 2px 2px;
    padding: 14px 20px;
    min-width: 130px;
    flex: 1;
}

.word-counter-stat-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.word-counter-stat-label {
    font-size: 13px;
    margin-top: 4px;
    text-align: center;
    color: #444;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .word-counter-stat {
        min-width: calc(50% - 12px);
        flex: none;
    }
}
