.header {
display: flex
;
    gap: 24px;
    align-items: center;
    margin-bottom: 22px;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;

}

.avatar {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.head-right {
    position: relative;
    flex: 1;
}

.manager-btn {
    position: absolute;
    top: 0;
    right: 0;
    display:inline-block;
    color:#fff;
    padding:7px 18px 10px 18px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    white-space:nowrap;
	width:170px;
	min-width:170px;
	text-align:center;
}

.title {
	margin: 2px 0 8px;
    font-size: 34px;
    letter-spacing: -0.01em;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
	text-align:left;
}

.desc {
    margin: 0 0 12px 0;
    color: var(--muted);
    font-size: 15px;
    max-width: 680px;
    overflow-wrap: break-word;
    line-height: 1.45;
	text-align: left;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.chip {
    display: inline-flex
;
    gap: 8px;
    align-items: center;
    background: #fff;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #eee;
    color: var(--muted);
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.social-links { display:flex; gap:8px; margin-left:6px; }
.social-links a {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:8px; background:#fff;
  border:1px solid #eee; text-decoration:none; color:var(--muted);
  font-size:13px; box-shadow:0 2px 6px rgba(0,0,0,0.02);
}


@media (max-width: 768px) {

	.base_con_box{

		
	}

    .header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 16px;
    }

    .avatar {
        margin: 0 auto;
    }
	
	.manager-btn-div{
        text-align: center;		
	}

    .head-right {
        position: static;

    }

    .manager-btn {
        position: static;
        display: inline-block;
        margin-bottom: 12px;
        font-size: 13px;
        padding: 8px 14px 10px 14px;
		width:150px;
		min-width:150px;		
    }

    .title {
        font-size: 24px;
        margin: 6px 0 6px;
		text-align: center;
    }

    .desc {
        font-size: 14px;
        margin-bottom: 10px;
        max-width: 100%;
		text-align: center;
    }

    .meta-row {
        justify-content: center;
        gap: 8px;
    }

    .chip {
        font-size: 12px;
        padding: 6px 10px;
    }

    .social-links {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 6px;
        flex-wrap: wrap;
    }

    .social-links a {
        font-size: 12px;
        padding: 6px 10px;
    }
}
