/* Text Tools - Page Specific Styles */

.actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
}

.action {
	border: none;
	background: var(--ocean);
	color: var(--white);
	padding: 12px 16px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.action:hover {
	transform: translateY(-1px);
	background: #1a5c8a;
}

.action:active {
	transform: translateY(1px);
}

.meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--muted);
	font-size: 0.95rem;
}

.counts {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.limit-indicator {
	font-size: 0.9rem;
	color: var(--ocean);
	background: rgba(35, 64, 79, 0.08);
	padding: 4px 10px;
	border-radius: 999px;
}

.limit-indicator.is-over {
	color: var(--clay);
	background: rgba(214, 121, 92, 0.12);
}

.ghost {
	border: 1px dashed rgba(35, 64, 79, 0.3);
	background: transparent;
	color: var(--ocean);
	padding: 8px 16px;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
	transition: border 0.2s ease, color 0.2s ease;
}

.ghost:hover {
	border-color: var(--clay);
	color: var(--clay);
}

@media (max-width: 720px) {
	.meta {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}
}
