/* Brand Portal – front-end styles (easy.com inspired) */
:root{
	--brand-accent:#FF6600;
	--brand-ink:#333333;
	--brand-muted:#6b6b6b;
	--brand-line:#ececec;
	--brand-bg:#ffffff;
}

.brand-portal-container{
	max-width:1180px;
	margin:0 auto;
	padding:0 20px;
}

/* Hero */
.brand-portal-hero{
	background:var(--brand-bg);
	text-align:center;
	padding:70px 0 40px;
}
.brand-portal-hero__title{
	font-size:clamp(34px,6vw,64px);
	line-height:1.05;
	margin:0 0 18px;
	color:var(--brand-ink);
	font-weight:800;
	letter-spacing:-.5px;
}
.brand-portal-hero__title::after{
	content:"";
	display:block;
	width:88px;height:5px;
	background:var(--brand-accent);
	border-radius:3px;
	margin:20px auto 0;
}
.brand-portal-hero__logo{
	max-width:min(420px,80%);
	height:auto;
	display:block;
	margin:0 auto 22px;
}
.brand-portal-hero__text{
	max-width:760px;
	margin:0 auto;
	font-size:18px;
	line-height:1.7;
	color:var(--brand-muted);
}
.brand-portal-hero__text a{color:var(--brand-accent);text-decoration:none;}
.brand-portal-hero__text a:hover{text-decoration:underline;}

/* Section */
.brand-portal-section{padding:40px 0 80px;background:var(--brand-bg);}
.brand-portal-section__title{
	text-align:center;
	font-size:clamp(26px,4vw,40px);
	color:var(--brand-ink);
	margin:0 0 8px;
	font-weight:800;
}
.brand-portal-section__subtitle{
	text-align:center;
	color:var(--brand-muted);
	margin:0 0 44px;
	font-size:17px;
}

/* Category groups */
.brand-portal-group{margin:0 0 56px;}
.brand-portal-group:last-child{margin-bottom:0;}
.brand-portal-group__title{
	text-align:center;
	font-size:clamp(22px,3.2vw,32px);
	color:var(--brand-ink);
	font-weight:800;
	margin:0 0 6px;
	position:relative;
}
.brand-portal-group__title::after{
	content:"";
	display:block;
	width:60px;height:4px;
	background:var(--brand-accent);
	border-radius:3px;
	margin:14px auto 0;
}
.brand-portal-group__desc{
	text-align:center;
	color:var(--brand-muted);
	margin:0 0 30px;
	font-size:16px;
}
.brand-portal-group__title + .brand-portal-grid{margin-top:30px;}

/* Grid */
.brand-portal-grid{
	display:grid;
	grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
	gap:26px;
}

/* Card */
.brand-portal-card{
	display:flex;
	flex-direction:column;
	background:#fff;
	border:1px solid var(--brand-line);
	border-radius:14px;
	overflow:hidden;
	text-decoration:none;
	color:inherit;
	transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
	box-shadow:0 1px 2px rgba(0,0,0,.04);
}
a.brand-portal-card:hover{
	transform:translateY(-6px);
	box-shadow:0 14px 30px rgba(0,0,0,.12);
	border-color:var(--brand-accent);
}
.brand-portal-card__media{
	aspect-ratio:16/10;
	background:#faf7f4;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
	border-bottom:1px solid var(--brand-line);
}
.brand-portal-card__img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
.brand-portal-card__placeholder{
	font-size:56px;
	font-weight:800;
	color:#fff;
	width:88px;height:88px;
	border-radius:50%;
	background:var(--brand-accent);
	display:flex;align-items:center;justify-content:center;
}
.brand-portal-card__body{padding:20px 22px 24px;}
.brand-portal-card__name{
	margin:0 0 6px;
	font-size:20px;
	font-weight:700;
	color:var(--brand-ink);
}
.brand-portal-card__desc{
	margin:0 0 14px;
	font-size:15px;
	line-height:1.5;
	color:var(--brand-muted);
}
.brand-portal-card__cta{
	font-size:14px;
	font-weight:700;
	color:var(--brand-accent);
	margin-top:auto;
}
.brand-portal-empty{
	text-align:center;
	color:var(--brand-muted);
	padding:40px 0;
}

@media (max-width:600px){
	.brand-portal-hero{padding:48px 0 28px;}
	.brand-portal-grid{grid-template-columns:1fr 1fr;gap:16px;}
	.brand-portal-card__body{padding:14px 14px 18px;}
	.brand-portal-card__name{font-size:17px;}
}
@media (max-width:380px){
	.brand-portal-grid{grid-template-columns:1fr;}
}
