/* ============================================================
   Quixta Press Recognition Widget — press-widget.css
   ============================================================ */

.quixta-press-section {
	display: flex;
	width: 100%;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.1);
}


/* Tablet (up to 1024px) */
@media (max-width: 1024px) {
  .quixta-press-left {
    padding: 28px 28px !important;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .quixta-press-left {
    padding: 20px 20px !important;
  }
}

/* ---- LEFT PANEL ---- */
.quixta-press-left {
	flex: 0 0 400px;
	padding: 40px 44px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.quixta-press-featured-img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.quixta-press-featured-fallback {
	width: 100%;
	height: 190px;
	background: #1a1fe8;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.quixta-press-featured-fallback span {
	color: #fff;
	font-size: 44px;
	font-weight: 900;
	letter-spacing: -2px;
	text-align: center;
	line-height: 1.05;
	text-transform: uppercase;
}

.quixta-press-quote {
	font-size: 21px;
	font-weight: 600;
	color: #111111;
	line-height: 1.4;
	letter-spacing: -0.3px;
	margin: 0;
}

.quixta-press-desc {
	font-size: 14px;
	color: #555555;
	line-height: 1.65;
	font-weight: 400;
	margin: 0;
}

.quixta-press-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f0f0f0;
	color: #111111;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 20px;
	border-radius: 4px;
	text-decoration: none;
	width: fit-content;
	transition: background 0.2s ease;
}

.quixta-press-cta:hover {
	background: #e2e2e2;
	color: #111111;
}

.quixta-press-cta svg {
	flex-shrink: 0;
}

/* ---- RIGHT GRID ---- */
.quixta-press-right {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.quixta-press-media-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 26px 16px 20px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: background 0.15s ease;
}

.quixta-press-media-item:hover {
	background: #fafafa;
}

/* Last column — no right border */
.quixta-press-media-item:nth-child(3n) {
	border-right: none;
}

/* Last row — no bottom border */
.quixta-press-media-item:nth-child(n+7) {
	border-bottom: none;
}

.quixta-press-media-logo {
	width: 100px;
	height: 100px;
	object-fit: contain;
	border-radius: 12px;
	display: block;
}

.quixta-press-media-logo-placeholder {
	width: 100px;
	height: 100px;
	border-radius: 12px;
	background: #f3f3f3;
	border: 1.5px dashed rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.quixta-press-media-logo-placeholder span {
	font-size: 10px;
	color: #bbb;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.quixta-press-media-name {
	font-size: 13px;
	font-weight: 500;
	color: #111111;
	text-align: center;
	letter-spacing: -0.1px;
	margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
	.quixta-press-section {
		flex-direction: column;
	}

	.quixta-press-left {
		flex: none;
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		padding: 28px 24px;
	}

	.quixta-press-featured-img,
	.quixta-press-featured-fallback {
		height: 160px;
	}
}

@media (max-width: 540px) {
	.quixta-press-right {
		grid-template-columns: repeat(2, 1fr);
	}

	.quixta-press-media-item:nth-child(3n) {
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}

	.quixta-press-media-item:nth-child(2n) {
		border-right: none;
	}

	.quixta-press-media-item:nth-child(n+7) {
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	.quixta-press-media-item:nth-last-child(-n+2) {
		border-bottom: none;
	}
}
