/*jobs*/
.latest-job{
    background:#fff;
    border:1px solid #E7EAF0;
    border-radius:14px;
    padding:12px 14px;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
	margin:10px 0;
}

.latest-job-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.latest-job-title{
    margin:0;
    flex:1;
    font-size:16px;
    font-weight:700;
    color:#1F2937;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.latest-job-time{
    font-size:12px;
    color:#8A8A8A;
    white-space:nowrap;
    flex-shrink:0;
}

.latest-job-meta{
    display:flex;
    align-items:center;
    gap:18px;
}

.latest-job-item{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    color:#666;
    white-space:nowrap;
}

.latest-job-link{
    display:block;
    text-decoration:none!important;
    color:inherit!important;
}

.latest-job-link:hover,
.latest-job-link:focus,
.latest-job-link:visited{
    text-decoration:none!important;
    color:inherit!important;
}


/*company*/



.latest-member{
    display:flex;
    align-items:center;
    gap:15px;
    padding:10px 14px;
    border:1px solid #E5E7EB;
    border-radius:12px;
    background:#fff;
	    box-shadow:0 2px 8px rgba(0,0,0,.05);
	margin:10px 0;

}

.member-logo{
    flex:0 0 56px;
}

.member-logo img{
    width:56px;
    height:56px;
    border-radius:50%;
    object-fit:cover;
}

.member-info{
    flex:1;
}

.member-info h4{
    margin:0 0 6px;
    font-size:16px;
    font-weight:700;
    color:#1F2937;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.member-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.member-bottom p{
    margin:0;
    font-size:13px;
    color:#6B7280;
}

.member-profile-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:105px;
    height:25px;

    border:1px solid #D7E5FF;
    border-radius:8px;

    color:#0044ed;
    background:#fff;

    font-size:13px;
    font-weight:600;
    text-decoration:none!important;
}

.latest-member-link{
    display: block;
    color:inherit;
    text-decoration:none!important;
}

.member-profile-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:105px;
    height:25px;

    border:0px solid #D7E5FF;
    border-radius:8px;

    background:#fff;
    color:#D4AF37;

    font-size:13px;
    font-weight:600;

    text-decoration:none!important;

    transition:none !important;
    cursor:pointer;
}

.member-profile-btn:hover,
.member-profile-btn:focus,
.member-profile-btn:active,
.member-profile-btn:visited{
    background:#fff !important;
    color:#D4AF37 !important;
    border:0px solid #D7E5FF !important;
    text-decoration:none !important;
    box-shadow:none !important;
    transform:none !important;
    outline:none !important;
}

/*events*/

.latest-event{
    display:flex;
    align-items:center;
    gap:15px;

    background:#fff;
    border:1px solid #E7EAF0;
    border-radius:14px;
	 padding:10px 14px;

    margin:10px 0;

    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.event-date{

    width:56px;
    height:56px;

    border-radius:12px;
    background:#F5F8FF;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

}

.event-day{

    font-size:24px;
    font-weight:700;
    color:#2956D7;
    line-height:1;

}

.event-month{

    font-size:11px;
    font-weight:700;
    color:#2956D7;
    margin-top:4px;

}

.event-info{

    flex:1;
    min-width:0;

}

.event-title{

    margin:0 0 6px;
    font-size:16px;
    font-weight:700;
    color:#1F2937;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

}

.event-location{

    margin:0 !important;
    font-size:14px;
    color:#666;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
   
}

.latest-event-link{

    display:block;
    text-decoration:none!important;
    color:inherit!important;

}

.latest-event-link:hover,
.latest-event-link:visited,
.latest-event-link:focus{

    text-decoration:none!important;
    color:inherit!important;

}








/*Quote Requests css*/

.quote-list{
    max-width:1100px;
    margin:auto;
}

.quote-card{
    display:grid;
    grid-template-columns:170px 1fr 180px 170px;
    align-items:center;
    gap:20px;
    background:#fff;
    border:1px solid #edf1f5;
    border-radius:18px;
    padding:10px 24px;
    margin-bottom:18px;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
}

.quote-route{
    display:flex;
    align-items:center;
    gap:12px;
}

.quote-route img{
    width: 32px;
    height: 22px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
}

.quote-arrow{
    font-size:26px;
    color:#173B74;
}

.quote-title{
    font-size:17px;
    font-weight:600;
    color:#0F3D55;
    margin-bottom:4px;
}

.quote-meta{
    color:#6d7786;
    font-size:15px;
}

.quote-date{
    color:#0F3D55;
}

.quote-date small{
    display:block;
    color:#777;
    margin-bottom:4px;
}

.quote-date strong{
    font-size:16px;
}

.quote-btn{
    text-align:right;
}

.quote-btn a{
    display:inline-block;
    background:#0F3D55;
    color:#fff;
    text-decoration:none  !important;
    padding:10px 24px;
    border-radius:8px;
    font-weight:500;
	font-size:12px;
}

.quote-btn a:hover{
    background:#0F3D55;
}


/*mobile*/
@media (max-width:768px){

.quote-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:18px 16px !important;
    gap:0px !important;
}

.quote-route{
    justify-content:center;
    margin-bottom:2px;
}

.quote-title{
    margin:4px 0 2px;
    line-height:1.3;
}

.quote-meta{
    margin:0;
    line-height:1.4;
}

.quote-date{
    margin:4px 0 0;
}

.quote-date small{
    display:block;
    margin-bottom:2px;
}

.quote-btn{
    margin-top:6px;
    text-align:center;
}

.quote-btn a{
    text-decoration:none !important;
    padding:6px 24px !important;
	font-size:12 !important;
}

.quote-btn a:hover,
.quote-btn a:focus,
.quote-btn a:active,
.quote-btn a:visited{
    text-decoration:none !important;
}

}

/* Tablet */
@media (min-width:768px) and (max-width:1024px){

.quote-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-wrap:nowrap;
    padding:14px 16px;
}

.quote-route{
    flex:0 0 170px;
}

.quote-info{
    flex:1;
    min-width:0;
}

.quote-date{
    flex:0 0 110px;
    text-align:center;
}

.quote-btn{
    flex:0 0 130px;
    text-align:right;
}

.quote-title{
    line-height:1.35;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
    text-overflow:ellipsis;

    word-break:break-word;
    overflow-wrap:anywhere;
   /*  min-height:2.7em;   Keeps all cards same height */
}
.quote-meta{
    font-size:13px;
}

.quote-btn a{
    padding:10px 18px;
    font-size:13px;
}

.quote-route img{
    width:38px;
    height:22px;
}

}