/* =============================
   PAR Frontend Styles v2
   ============================= */

.par-wrap {
    font-family: 'Poppins', sans-serif;
}

/* =============================
   COMPACT STYLE
   ============================= */

.par-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
    background: #f7f7f7;
    border-radius: 12px;
    padding: 16px 20px;
    align-items: center;
}

.par-compact-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.par-compact-avatar img,
.par-compact-avatar .par-avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.par-compact-avatar .par-avatar-placeholder {
    background: #343920;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.par-compact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.par-compact-label {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.par-compact-label svg {
    opacity: 0.6;
}

.par-compact-name {
    font-size: 14px;
    font-weight: 400;
    color: #222;
    margin: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    line-height: 1.3;
}

.par-compact-name a {
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.par-compact-name a:hover {
    text-decoration: underline;
}

.par-compact-desig {
    font-size: 13px;
    font-weight: 400;
    color: #555;
}

/* =============================
   DETAILED STYLE
   ============================= */

.par-detailed {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #f7f7f7;
    border-radius: 16px;
    padding: 24px 28px;
}

.par-detailed-card {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.par-detailed-card:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.par-detailed-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.par-detailed-avatar img,
.par-detailed-avatar .par-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.par-detailed-avatar .par-avatar-placeholder {
    background: #343920;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.par-detailed-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.par-detailed-label {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.par-detailed-label svg {
    opacity: 0.6;
}

.par-detailed-name {
    font-size: 15px;
    font-weight: 400;
    color: #222;
    margin: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
    line-height: 1.3;
}

.par-detailed-name a {
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.par-detailed-name a:hover {
    text-decoration: underline;
}

.par-detailed-desig {
    font-size: 13px;
    font-weight: 400;
    color: #555;
}

.par-detailed-bio {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.75;
}

.par-detailed-bio p {
    margin: 0 0 10px;
}

.par-detailed-bio p:last-child {
    margin-bottom: 0;
}

.par-detailed-bio strong, .par-detailed-bio b {
    font-weight: 600;
}

.par-detailed-bio em, .par-detailed-bio i {
    font-style: italic;
    color: #555;
}

.par-detailed-bio blockquote {
    border-left: 3px solid #343920;
    margin: 10px 0;
    padding: 6px 14px;
    color: #555;
    font-style: italic;
    background: #f0f0ee;
    border-radius: 0 6px 6px 0;
}

.par-detailed-bio ul,
.par-detailed-bio ol {
    padding-left: 20px;
    margin: 8px 0;
}

.par-detailed-bio a {
    color: #343920;
    text-decoration: underline;
}

/* =============================
   RESPONSIVE
   ============================= */

@media (max-width: 600px) {
    .par-compact {
        flex-direction: column;
        gap: 14px;
        padding: 14px 16px;
    }

    .par-compact-card {
        width: 100%;
    }

    .par-detailed {
        padding: 18px 16px;
    }

    .par-detailed-avatar img,
    .par-detailed-avatar .par-avatar-placeholder {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}
