/* ==================================================

	Post actions

================================================== */

.post__actions {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;

	padding-left: 61px;
	padding-right: 57.5px;
	margin-top: 8px;
}

.post__action {
	display: flex;
	flex-direction: column;
	align-items: center;

	color: var(--color-fg-default);
	transition: color var(--trans-dur) var(--trans-func);
}

.post__action[aria-pressed="true"] {
	color: var(--color-fg-active);
}

.post__action-well {
	display: flex;
	align-items: flex-end;

	height: 17px; /* tallest icon */
}

.post__action-label {
	margin-top: 2.5px;

	font-size:   var(--text-label);
	font-weight: var(--font-weight-bold);
	line-height: 1.25;
	white-space: nowrap;
}

.post__action--like    .post__action-icon { width: 13px; height: 15px; }
.post__action--comment .post__action-icon { width: 15.5px; height: 14.5px; }
.post__action--repost  .post__action-icon { width: 11.5px; height: 17px; }
.post__action--send    .post__action-icon { width: 13px; height: 14px; }

/* -------------------------------------
	=Mobile
------------------------------------- */

@media ( max-width: 1076px ) {

	.post__actions {
		padding-left: 26px;
		padding-right: 28px;
		margin-top: 7.5px;
	}

	.post__action-well {
		height: 14.75px;
	}

	.post__action-label {
		margin-top: 2.25px;

		font-size: 10.5px;
	}

	.post__action--like    .post__action-icon { width: 11.25px; height: 13px; }
	.post__action--comment .post__action-icon { width: 13.5px; height: 12.5px; }
	.post__action--repost  .post__action-icon { width: 10px; height: 14.75px; }
	.post__action--send    .post__action-icon { width: 11.5px; height: 12px; }

}
