/* AlumniHub app shell — not CMS style.css */

.glass-card {
	border: 1px solid #edf0f3;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 28px -12px rgba( 15, 23, 42, 0.08 );
}

.alumni-section-nav {
	background-color: #f4f7f5;
	border-bottom: 1px solid #e4e9e6;
}

.alumni-section-nav .container {
	padding-top: 0;
	padding-bottom: 0;
}

.alumni-section-nav-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.alumni-section-nav-list > li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.alumni-section-nav-list a {
	display: block;
	padding: 0.85rem 1.25rem;
	color: #344054;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	text-transform: capitalize;
	border-bottom: 3px solid transparent;
	transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.alumni-section-nav-list a:hover {
	color: #FB6514;
}

.alumni-section-nav-list a.active {
	color: #1f3a2f;
	border-bottom-color: #FB6514;
	background-color: rgba( 255, 255, 255, 0.65 );
}

@media (max-width: 575px) {
	.alumni-section-nav-list {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.alumni-section-nav-list a {
		padding: 0.75rem 1rem;
		font-size: 0.9rem;
		white-space: nowrap;
	}
}

/* Feed */
html {
	scroll-behavior: smooth;
}

.feed-shell {
	max-width: 1280px;
	margin: 0 auto;
}

.feed-panel {
	border: 1px solid #edf0f3;
	border-radius: 12px;
	background: #fff;
}

.feed-list-item {
	border-bottom: 1px dashed #e8edf3;
	padding: .65rem 0;
}

.feed-list-item:last-child {
	border-bottom: none;
}

.feed-sticky {
	position: sticky;
	top: 88px;
}

.feed-post-card {
	border: 1px solid #edf0f3;
	border-radius: 12px;
	background: #fff;
}

.feed-skeleton {
	border: 1px solid #edf0f3;
	border-radius: 12px;
	background: #fff;
	padding: .75rem;
	margin-bottom: .75rem;
}

.feed-skeleton .bar {
	display: block;
	height: 10px;
	border-radius: 8px;
	margin-bottom: .5rem;
	background: linear-gradient( 90deg, #eef2f6 25%, #f8fafc 37%, #eef2f6 63% );
	background-size: 400% 100%;
	animation: feedSkeleton 1.2s ease-in-out infinite;
}

.feed-skeleton .bar:last-child {
	margin-bottom: 0;
}

.feed-skeleton .bar.w-20 {
	width: 20%;
}

.feed-skeleton .bar.w-35 {
	width: 35%;
}

.feed-skeleton .bar.w-55 {
	width: 55%;
}

.feed-skeleton .bar.w-70 {
	width: 70%;
}

.feed-skeleton .bar.w-90 {
	width: 90%;
}

.feed-top-btn {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 1050;
	border-radius: 999px;
	box-shadow: 0 10px 30px rgba( 0, 0, 0, .18 );
}

.feed-hero {
	border-bottom: 1px solid #edf0f3;
	padding-bottom: 1rem;
}

.feed-site-badge {
	color: #007944;
	background: #eef7f1;
	border-color: #cfe8d8 !important;
	font-weight: 600;
	letter-spacing: .02em;
}

.feed-hero-title {
	color: #1f2937;
	font-weight: 700;
}

.feed-mobile-toggle {
	display: none;
}

.mobile-compact-item .feed-list-item {
	padding: .45rem 0;
}

#feed-section-profile,
#feed-section-snapshot,
#feed-section-skills,
#feed-section-network,
#feed-section-members,
#feed-section-birthdays,
#feed-section-groups {
	scroll-margin-top: 92px;
}

@media ( max-width: 991.98px ) {
	.feed-mobile-toggle {
		display: flex;
	}

	.feed-side-column {
		display: none;
	}

	.feed-sticky {
		position: static;
		top: auto;
	}

	#feed-section-profile,
	#feed-section-snapshot,
	#feed-section-skills,
	#feed-section-network,
	#feed-section-members,
	#feed-section-birthdays,
	#feed-section-groups {
		scroll-margin-top: 76px;
	}
}

@keyframes feedSkeleton {
	0% {
		background-position: 100% 0;
	}

	100% {
		background-position: 0 0;
	}
}

/* Profile hub */
.profile-hub-shell {
	max-width: 1100px;
	margin: 0 auto;
}

.profile-hub-nav .nav-link {
	border-radius: 8px;
	color: #475569;
	padding: .5rem .75rem;
}

.profile-hub-nav .nav-link.active {
	background: #eef4ff;
	color: #0d6efd;
	font-weight: 600;
}

.profile-edit-section {
	border: 1px solid #edf0f3;
	border-radius: 12px;
	padding: 1rem;
	background: #fff;
	margin-bottom: 1rem;
}

.profile-edit-section-title {
	font-size: .95rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: .75rem;
}

.profile-sections-item {
	border: 1px solid #edf0f3;
	border-radius: 10px;
	padding: .85rem 1rem;
	background: #fbfdff;
}

.profile-sections-card-title {
	font-weight: 600;
	color: #1e293b;
}

.profile-sections-card-subtitle {
	color: #475569;
	font-size: .9rem;
}

.profile-sections-card-meta {
	color: #64748b;
	font-size: .85rem;
}

.profile-sections-edit-panel {
	border-top: 1px dashed #e2e8f0;
	margin-top: .75rem;
	padding-top: .75rem;
}

@media (max-width: 991.98px) {
	.profile-hub-nav {
		flex-direction: row !important;
		flex-wrap: wrap;
	}
}

.feed-network-item {
	padding-bottom: .85rem;
}

.feed-network-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.feed-network-avatar {
	width: 34px;
	height: 34px;
	object-fit: cover;
}

.feed-network-avatar-fallback {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f8fafc;
	color: #64748b;
	font-size: .85rem;
	font-weight: 600;
}

.feed-network-tag {
	display: inline-block;
	padding: .1rem .45rem;
	border-radius: 999px;
	background: #eef7f1;
	border: 1px solid #cfe8d8;
	color: #1f3a2f;
	font-size: .7rem;
	font-weight: 600;
	line-height: 1.4;
}
