

a{ text-decoration:none; }

/* ===============================
   HERO HEADER
================================*/

.agent-hero{
    background:linear-gradient(135deg,#008C44,#006B3F);
    color:#fff;
    padding:25px;
    border-radius:12px;
    margin-top:20px;
}

/* ===== MOBILE HEADER ===== */

.agent-mobile-head{
    display:flex;
    align-items:center;
}

.agent-avatar{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;

    border:4px solid rgba(255,255,255,.9);
    box-shadow:0 6px 18px rgba(0,0,0,.25);
}

.agent-info{
    padding-left:15px;
}

.agent-name{
	display:flex;
    align-items:center;
    flex-wrap:wrap;
    font-size:20px;
    font-weight:700;
}

.agent-badge{
    background:#E6F4EA;
    color:#006B3F;
    font-size:12px;
    padding:4px 10px;
    border-radius:20px;
    margin-left:6px;
	white-space:nowrap;  
}

.agent-meta{
    font-size:13px;
    margin-top:5px;
    opacity:.9;
}

.agent-mobile-actions{
    margin-top:18px;
    display:flex;
    gap:10px;
}

.agent-mobile-actions .btn{
    flex:1;
    height:44px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
}

.btn-zalo{
    background:#00A859;
    border-color:#00A859;
    color:#fff;
    font-weight:600;
    border-radius:8px;
    transition:all .2s ease;
}

.btn-zalo:hover{
    background:#008C44;
    border-color:#008C44;
    color:#fff;
    transform:translateY(-2px);
}

.btn-call{
    background:#F57C00;
    border-color:#F57C00;
    color:#fff;
    font-weight:600;
    border-radius:8px;
    transition:all .2s ease;
}

.btn-call:hover{
    background:#E65100;
    border-color:#E65100;
    color:#fff;
    transform:translateY(-2px);
}
/* ===============================
   STATS BOX
================================*/

.agent-stats{
	display:flex;
    background:#F4FBF7;
    margin-top:15px;
    border-radius:10px;
    padding:10px;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
    margin-bottom: 10px;
}

.stat-item{
    text-align:center;
	white-space:nowrap;  
}

.stat-item h4{
    margin:0;
     color:#008C44;
}

.stat-item span{
    font-size:12px;
    color:#444;
}

/* ===============================
   TABS
================================*/

.nav-tabs>li>a{
    font-weight:600;
}

/* ===== DANH SÁCH TIN PUBLIC ===== */
.activ-property-list {
    display: flex;
    flex-wrap: wrap;
}

/* item */
.active-property-item {
    display: flex;
    margin-bottom: 18px;
}

/* card */
.active-property-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #006B3F;

    transition: all 0.25s ease;
}

.active-property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* ===== áº¢NH ===== */
.active-property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.active-property-card:hover img {
    transform: scale(1.05);
}

/* ===== BODY ===== */
.active-property-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.active-property-title {
    color: #2c2c2c;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    height: 44px;
    margin-bottom: 6px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;

    transition: color 0.2s ease;
}

.active-property-card:hover .active-property-title {
    color: #008C44;
}

.active-price-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0 10px;
}

.active-price {
    font-size: 17px;
    font-weight: 700;
    color: #008C44;
}

.active-area {
    background: rgba(0, 140, 68, 0.12);
    color: #006B3F;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* ===== META ===== */
.active-property-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 14px;
    color: #666;

    border-top: 1px dashed #e5e5e5;
    padding-top: 8px;
    margin-top: auto;
}

.active-property-meta .active-views {
    color: #008C44;
    font-weight: 600;
}


/* ===============================
   RESPONSIVE
================================*/

@media(min-width:768px){

    .agent-avatar{
        width:110px;
        height:110px;
    }

    .agent-mobile-actions{
        max-width:420px;
    }

}