/* SkillTap Centers — student dashboard */

/* ---- Site-wide branding banner (logged-in students) ---- */
.sst-brandbar {
	background: linear-gradient(90deg, #1a3c6e 0%, #2b5aa0 100%);
	color: #fff;
	line-height: 1.35;
	position: relative;
	z-index: 99999;
}
.sst-brandbar-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px 24px;
}
.sst-brandbar-identity {
	display: flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
	color: #fff;
	min-width: 0;
}
.sst-brandbar-identity img {
	width: 64px;
	height: 64px;
	object-fit: contain;      /* square logo box, image fits inside */
	background: #fff;
	border-radius: 10px;
	padding: 5px;
	flex-shrink: 0;
}
.sst-brandbar-name {
	font-weight: 800;
	font-size: 30px;          /* double-size center name */
	letter-spacing: .3px;
	line-height: 1.15;
}
.sst-brandbar-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	font-size: 14px;
	text-align: right;
	max-width: 45%;
	opacity: .95;
}
.sst-brandbar-addr {
	display: -webkit-box;
	-webkit-line-clamp: 4;     /* up to 4 lines (e.g. 3 branches + wrap room) */
	-webkit-box-orient: vertical;
	overflow: hidden;
	white-space: pre-line;     /* respect line breaks typed in the Address box */
}
.sst-brandbar-meta a { color: #cfe3ff; text-decoration: none; font-weight: 600; }
@media (max-width: 782px) {
	.sst-brandbar-identity img { width: 46px; height: 46px; }
	.sst-brandbar-name { font-size: 20px; }
	.sst-brandbar-meta { max-width: 100%; align-items: flex-start; text-align: left; }
}

.sst-center-logo {
	max-height: 60px;
	width: auto;
	background: #fff;
	border-radius: 6px;
	padding: 4px 10px;
	margin-bottom: 8px;
	display: block;
}

.sst-student-dash { max-width: 1080px; margin: 0 auto; }

.sst-center-header {
	background: linear-gradient(135deg, #1a3c6e 0%, #2b5aa0 100%);
	color: #fff;
	border-radius: 12px;
	padding: 26px 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}
.sst-center-label {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 11px;
	opacity: .8;
}
.sst-center-header h2 { color: #fff; margin: 4px 0 0; font-size: 28px; }
.sst-center-meta p { margin: 3px 0; font-size: 14px; opacity: .95; }
.sst-center-meta a { color: #cfe3ff; text-decoration: none; }

.sst-welcome {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}
.sst-logout { font-size: 13px; }

.sst-section-title { margin: 18px 0 12px; }

.sst-course-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}
.sst-course-card {
	border: 1px solid #e3e6ea;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.05);
	display: flex;
	flex-direction: column;
	transition: box-shadow .15s ease;
}
.sst-course-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.sst-course-thumb {
	display: block;
	height: 150px;
	background: #e9eef5 center/cover no-repeat;
}
.sst-course-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.sst-course-body h4 { margin: 0; font-size: 17px; }
.sst-course-body h4 a { text-decoration: none; color: #1d2327; }

.sst-progress {
	height: 8px;
	background: #edf0f3;
	border-radius: 999px;
	overflow: hidden;
}
.sst-progress-bar { height: 100%; background: #2b5aa0; border-radius: 999px; }
.sst-progress-text { font-size: 12px; color: #6b7280; }

.sst-btn {
	display: inline-block;
	margin-top: 4px;
	background: #1a3c6e;
	color: #fff !important;
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	text-align: center;
}
.sst-btn:hover { background: #2b5aa0; }

.sst-empty { padding: 18px; background: #f7f8fa; border-radius: 8px; }

.sst-login-box { max-width: 380px; margin: 0 auto; }
.sst-login-box input[type=text], .sst-login-box input[type=password] { width: 100%; }
