.wp-block-pesistulokset-tilastot {
	box-sizing: border-box;

	.pt-player {
		margin-bottom: 1rem;
	}

	.pt-table-wrapper {
		border: 1px solid #ccc;
		border-radius: .5rem;
		flex: 1 1 66.66%;
	}

	.pt-stats-table {
		width: 100%;
		color: inherit;
		background-color: inherit;
		border-collapse: collapse;
		overflow: hidden;
		white-space: nowrap;

		th {
			background: #0c71c3;
			color: #fff;
		}

		td, th {
			padding: .75rem;
			padding: .75rem;
			vertical-align: top;
			border-top: 0 solid;
			text-align: left;
		}

		td {
			text-align: left;
			vertical-align: middle;

			.player-image {
				width: 50px;
				height: 50px;

				img {
					width: 100%;
					height: 100%;
					border-radius: 100%;
					object-fit: cover;
					object-position: top;
					display: block;
				}
			}
		}
	}

	.player-stats {
		display: flex;
		gap: 2rem;
		align-items: center;

		@media (max-width:768px) {
			flex-direction: column;
		}
	}

	.player-details {
		display: flex;
		align-items: center;
		gap: 1rem;
		text-align: left;
		flex: 1 0 33.33%;

		.player-image {
			img {
				width: 75px;
				height: 75px;
				border-radius: 75px;
				object-fit: cover;
				object-position: top;
				display: inline-block;
				margin-right: .5rem;
				vertical-align: middle;
			}
		}
	}

	.player-name {

		.name {
			display: block;
			font-size: 1.2rem;
			font-weight: bold;
			margin-bottom: .3rem;
		}

		.team {
			display: flex;
			gap: .3rem;
			align-items: center;

			img {
				width: 1.5rem;
				height: auto;
				border-radius: 0;
				display: block;
			}
		}
	}

}
