.ps-meta,
	.ps-info-card,
	.ps-dl-card {
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	.ps-meta-row {
		display: grid;
		grid-template-columns: 24px auto 1fr;
		align-items: center;
		gap: 10px;
		padding: 10px 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		transition: all .25s ease;
	}

	.ps-meta-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
	}

	.ps-meta-icon i {
		font-size: 18px;
		line-height: 1;
	}

	.ps-meta-icon svg {
		width: 18px;
		height: 18px;
	}

	.ps-meta-row:last-child,
	.ps-info-row:last-child {
		border-bottom: 0;
	}

	.ps-info-card h5,
	.ps-dl-card h5 {
		margin: 0 0 8px;
	}

	.ps-info-row {
		display: flex;
		justify-content: space-between;
		gap: 20px;
		padding: 10px 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		transition: all .25s ease;
	}

	.ps-info-row .label-t {
		font-weight: 600;
	}

	.ps-dl-item {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 10px 0;
		text-decoration: none;
		color: inherit;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		transition: all .25s ease;
	}

	.ps-dl-item:last-child {
		border-bottom: 0;
	}

	.dl-icon {
		width: 42px;
		height: 42px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		background: rgba(0, 0, 0, 0.06);
		flex: 0 0 auto;
	}

	.dl-icon i {
		font-size: 20px;
		line-height: 1;
	}

	.dl-icon svg {
		width: 20px;
		height: 20px;
	}

	.dl-info h6 {
		margin: 0;
	}

	.dl-info span {
		display: block;
		font-size: 13px;
		opacity: 0.75;
	}

	@media (max-width: 767px) {
		.ps-meta-row {
			grid-template-columns: 24px 1fr;
		}

		.ps-meta-row span {
			grid-column: 2;
		}

		.ps-info-row {
			flex-direction: column;
			gap: 4px;
		}
	}
