/* section.bannerheading,
.header____wrap {
	position: relative;
} */

/* TOP BAR */
.community-topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

/* TABS */
.nav-tabs {
	border: none;
	gap: 10px;
}

.nav-tabs .nav-link {
	border: none;
	background: #262131;
	color: #888198;
	padding: 9px 18px;
	border-radius: 30px;
}

.nav-tabs .nav-link.active {
	background: #ca9043;
	color: #fff;
}

/* CREATE BUTTON */
.create-post-btn {
	border: none;
	background: #ca9043;
	color: #000;
	padding: 10px 18px;
	border-radius: 30px;
}

/* CARD */
.post-card {
	background: #141622;
	border: 1px solid #1f2230;
	border-radius: 16px;
	padding: 18px;
	margin-bottom: 20px;
}

/* HEADER */
.post-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.post-user {
	display: flex;
	align-items: center;
	gap: 10px;
}

.post-user img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	object-fit: cover;
}

.post-user h6 {
	margin: 0;
	color: #fff;
}
.progress-area h4 {
	color: #fff;
}
.post-user span {
	color: #999;
	font-size: 12px;
}

/* FOLLOW BTN */
.follow-btn {
	border: none;
	background: #2a2230;
	color: #ca9043;
	padding: 7px 15px;
	border-radius: 30px;
	transition: all 0.2s ease;
}

.follow-btn.following {
	background: #ca9043;
	color: #000;
}

/* AUDIO BOX */
.audio-box {
	margin-top: 12px;
	background: #1b1d2a;
	border-radius: 14px;
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}

/* PLAY BUTTON */
.play-btn {
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: #463734;
	color: #ca9043;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	cursor: pointer;
	flex-shrink: 0;
}

/* PROGRESS WRAP */
.progress-area {
	flex: 1;
}

.progress-bar {
	width: 100%;
	height: 6px;
	background: #333;
	border-radius: 30px;
	overflow: hidden;
	cursor: pointer;
}

.progress-fill {
	width: 0%;
	height: 100%;
	background: #ca9043;
}

/* TIMER */
.time-row {
	display: flex;
	justify-content: space-between;
	margin-top: 6px;
	color: #9d9d9d;
	font-size: 12px;
}

/* ACTIONS */
.post-actions {
	display: flex;
	gap: 18px;
	margin-top: 14px;
	color: #999;
	font-size: 14px;
}

.post-actions span {
	cursor: pointer;
	transition: color 0.2s;
}

.post-actions span:hover {
	color: #ca9043;
}

.post-actions span.liked {
	color: #ca9043;
}

/* COMMENT SECTION - Hidden/Static */
.comment-section {
	margin-top: 20px;
}

.comment-box {
	display: flex;
	gap: 10px;
	position: relative;
}

.comment-box input {
	flex: 1;
	border: 1px solid #ca9043;
	background: #1b1d2a;
	color: #fff;
	border-radius: 10px;
	padding: 15px 15px;
	outline: none;
}

.comment-box button {
	border: none;
	background: transparent;
	color: #000;
	border-radius: 30px;
	padding: 0 16px;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 12px;
}

.comments-list {
	margin-top: 20px;
	max-height: 200px;
	overflow-y: auto;
}

.comment-item {
	background: #1b1d2a;
	border-radius: 20px;
	padding: 8px 12px;
	margin-bottom: 8px;
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* BUTTON */
.create-post-btn {
	background: #ca9043;
	border: none;
	padding: 10px 18px;
	border-radius: 30px;
	font-family: var(--font-inter);
	font-weight: 500;
}

/* MODAL */
.create-modal {
	background: #1a1b23;
	border-radius: 16px;
	padding: 10px;
}

.modal-title {
	color: #fff;
}

/* TABS */
.create-tabs .nav-link {
	border: 1px solid #ca9043;
	color: #ca9043;
	border-radius: 10px;
	margin-right: 6px;
	font-family: var(--font-inter);
	font-weight: 500;
}

.create-tabs .nav-link.active {
	background: #ca9043;
	color: #000;
}

/* INPUT */
.post-input {
	background: #2a2c36;
	border: none;
	color: #fff;
	border-radius: 10px;
	padding: 12px;
	font-family: var(--font-inter);
	font-weight: 500;
	height: 130px;
}

/* UPLOAD BOX */
.upload-box {
	width: 100%;
	border: 2px dashed #ca9043;
	border-radius: 14px;
	padding: 30px;
	text-align: center;
	cursor: pointer;
	background: #1f2230;
	transition: 0.3s;
}

.comments-list h4 {
    color: var(--extra-color-17);
}

.upload-box:hover {
	background: #26293a;
}

.upload-content i {
	font-size: 30px;
	color: #ca9043;
}

.upload-content p {
	margin-top: 10px;
	color: #aaa;
}

/* PREVIEW */
.preview-img {
	width: 60px;
	border-radius: 10px;
	margin-top: 10px;
	height: 60px;
	object-fit: scale-down;
}

/* BUTTON */
.publish-btn {
	background: #ca9043;
	color: #000;
	border-radius: 10px;
	padding: 10px;
	font-family: var(--font-inter);
	font-weight: 500;
	text-decoration: uppercase;
}
