/**
 * Shortcode [stream_brands_list]: lưới thẻ brand — avatar, tên, mô tả, nút Khám phá.
 */
.stream-brands-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 1.5rem 0;
	max-width: 100%;
	list-style: none;
	padding: 0;
}

.stream-brands-list__card {
	margin: 0;
}

.stream-brands-list__card-inner {
	display: flex;
	align-items: stretch;
	gap: 1rem;
	padding: 1rem;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	height: 100%;
	box-sizing: border-box;
}

.stream-brands-list__avatar-wrap {
	flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}

.stream-brands-list__avatar {
	display: block;
    width: 75%;
    height: auto;
    object-fit: contain;
    margin: auto;
}

.stream-brands-list__avatar--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
}

.stream-brands-list__content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.stream-brands-list__title {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}

.stream-brands-list__desc {
	margin: 0 0 1rem;
	font-size: 0.8rem;
	line-height: 1.5;
	color: #4b5563;
	flex: 1;
}

.stream-brands-list__btn {
	display: inline-block;
	padding: 0.3rem 1.35rem;
	background: #ff9903;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 9999px;
	transition: background 0.2s;
}

.stream-brands-list__btn:hover {
	background: #c2410c;
	color: #fff;
}

@media (max-width: 900px) {
	.stream-brands-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.stream-brands-list {
		grid-template-columns: 1fr;
	}
}
