.user-complaints {
	background: #f3f4f6;
    max-width: 100%;
	overflow-x: hidden;
    padding: 0;
	width: 100%;
}
.user-complaints__inner {
	margin-inline: auto;
	max-width: 1150px;
	padding: 3rem 1rem;
}
.user-complaints__title {
	color: #1f2937;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3125;
	margin: 0 0 1.5rem;
	text-align: center;
}
.user-complaints__description {
	margin: 0 auto 1.5rem;
	text-align: center;
}
.user-complaints__description > :last-child {
	margin-bottom: 0;
}
.user-complaints__list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.user-complaints__load-more {
	padding: 2.25rem 0 0;
	text-align: center;
}
.user-complaints__button {
	background-color: transparent;
	border: 1px solid #d1d5db;
	border-radius: .5rem;
	color: #4b5563;
	cursor: pointer;
	font-size: 1rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.5;
	padding: .5rem 1.5rem;
	transition: border-color 0.2s ease, color 0.2s ease;
}
.user-complaints__button:hover,
.user-complaints__button:focus-visible {
	border-color: #2b241c;
	color: #1f2937;
}
.complaint-card {
	background: #fff;
	border-radius: .5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: space-between;
	padding: 1.5rem;
	width: 100%;
}
.complaint-card__header {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.complaint-card__header-top {
    display: flex;
	flex-direction: column;
	gap: .5rem;
}
.complaint-card__title-link {
	color: inherit;
	text-decoration: none;
}
.complaint-card__title {
	font-size: 1.25rem;
	line-height: 1.4;
	margin: 0;
}
.complaint-card__title-link:hover .complaint-card__title,
.complaint-card__title-link:focus-visible .complaint-card__title {
	text-decoration: underline;
}
.complaint-card__casino {
	color: #4b5563;
	line-height: 1.5;
}
.complaint-card__meta {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
.complaint-card__author,
.complaint-card__date {
	align-items: center;
	color: #1f2937;
	display: flex;
	flex-wrap: wrap;
	font-size: 1rem;
	gap: .25rem;
	line-height: 1.5;
}
.complaint-card__meta-label {
	color: #1f2937;
	font-weight: 700;
}
.complaint-card__meta-value {
	color: #4b5563;
	font-weight: 400;
}
.complaint-card__avatar {
	border-radius: 50%;
	height: 1rem;
	object-fit: cover;
	width: 1rem;
}
.complaint-card__excerpt {
	margin: 0;
}
.complaint-card__footer {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.complaint-card__details {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
.complaint-card__detail {
	align-items: center;
	display: flex;
	gap: .375rem;
}
.complaint-card__detail::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	flex: 0 0 0.875rem;
	height: 0.875rem;
	width: 0.875rem;
}
.complaint-card__detail--amount::before {
	background-image: url("/wp-content/themes/casinobee/assets/img/bank-notice.svg");
}
.complaint-card__detail--status::before {
	background-image: url("/wp-content/themes/casinobee/assets/img/status.svg");
}
.complaint-card__detail-text {
	color: #1f2937;
	margin: 0;
}
.complaint-card__detail-text strong {
	font-weight: 700;
}
.complaint-card__detail-text span {
	color: #4b5563;
	font-weight: 400;
}
.complaint-card__cta {
	align-items: center;
	align-self: stretch;
	background: linear-gradient(to left, #fbbf24 50%, #1f2937 50%);
	background-position: right bottom;
	background-size: 200% 100%;
	border-radius: 0.5rem;
	color: #1f2937;
	cursor: pointer;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 600;
	justify-content: center;
	line-height: 1.5;
	padding: 0.75rem 1rem;
	text-align: center;
	text-decoration: none;
	transition: background-position 0.2s ease, color 0.2s ease;
	width: 100%;
}
.complaint-card__cta:hover,
.complaint-card__cta:focus-visible {
	background-position: left bottom;
	color: #fbbf24;
}
.complaint-card__cta:visited {
    color: #1f2937;
}
.complaint-card__cta:hover:visited{
	color: #fbbf24;
}
.user-complaints__loader {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 1.25rem;
}
.user-complaints__loader-img {
	display: block;
	height: 1.25rem;
	width: 1.25rem;
}
.user-complaints__button:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}
.user-complaints--loading .user-complaints__button {
	pointer-events: none;
}

@media (min-width: 768px) {
	.user-complaints__inner {
		padding: 3rem 1.5rem;
	}
	.complaint-card__meta {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 1rem 3rem;
	}
	.complaint-card__footer {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
	}
	.complaint-card__details {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 1rem 4rem;
	}
	.complaint-card__cta {
		align-self: center;
		width: auto;
	}
}

@media (min-width: 1024px) {
	.user-complaints__list {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.complaint-card {
		width: calc(50% - 0.75rem);
	}
}

@media (min-width: 1280px) {
	.user-complaints__inner {
		padding: 3rem 0;
	}
	.user-complaints__title {
		font-size: 2.25rem;
		line-height: 1.2222;
	}
}