/* Public Profile CSS */
.hh-public-profile-page {
    font-family: 'Google Sans', 'Roboto', 'Segoe UI', Arial, sans-serif;
    color: #202124;
    max-width: 900px;
    margin: 2em auto;
}

/* Profile Hero */
.hh-profile-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 2em;
    box-shadow: 0 1px 3px rgba(60,64,67,0.1), 0 1px 2px rgba(60,64,67,0.06);
    margin-bottom: 2em;
}

.hh-profile-header-info {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.hh-profile-avatar {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hh-profile-names h1 {
    margin: 0;
    font-size: 2em;
    font-weight: 500;
}

.hh-profile-username {
    margin: 0.2em 0 0.8em 0;
    color: #5f6368;
    font-size: 1.1em;
}

.hh-profile-stats-pill {
    display: inline-block;
    background: #f1f3f4;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.9em;
    color: #3c4043;
}

/* Follow Button */
.hh-btn-follow {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.hh-btn-follow:hover {
    background: #1765cc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.hh-btn-follow.following {
    background: #f1f3f4;
    color: #1a73e8;
    box-shadow: none;
}

.hh-btn-follow.following:hover {
    background: #e8eaed;
}

.hh-btn-follow.outline {
    background: transparent;
    color: #1a73e8;
    border: 1px solid #dadce0;
    box-shadow: none;
}
.hh-btn-follow.outline:hover {
    background: #f8f9fa;
}

/* Profile Body Layout */
.hh-profile-body {
    display: flex;
    gap: 2em;
}

.hh-profile-sidebar {
    flex: 0 0 300px;
}

.hh-profile-main {
    flex: 1;
    min-width: 0;
}

/* Boxes */
.hh-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5em;
    box-shadow: 0 1px 3px rgba(60,64,67,0.1), 0 1px 2px rgba(60,64,67,0.06);
    margin-bottom: 2em;
}

.hh-box h3, .hh-profile-main h3 {
    margin-top: 0;
    margin-bottom: 1em;
    font-size: 1.2em;
    font-weight: 500;
    color: #202124;
}

.hh-bio-box p {
    color: #5f6368;
    line-height: 1.5;
    margin: 0;
}

/* Recent Posts */
.hh-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.hh-recent-post-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.2em;
    border: 1px solid #dadce0;
    transition: box-shadow 0.2s;
}

.hh-recent-post-card:hover {
    box-shadow: 0 1px 4px rgba(60,64,67,0.1);
}

.hh-recent-post-card h4 {
    margin: 0 0 0.5em 0;
    font-size: 1.1em;
    font-weight: 500;
}

.hh-recent-post-card h4 a {
    color: #1a73e8;
    text-decoration: none;
}

.hh-recent-post-card h4 a:hover {
    text-decoration: underline;
}

.hh-post-meta {
    font-size: 0.85em;
    color: #5f6368;
}

/* Responsive */
@media (max-width: 768px) {
    .hh-profile-hero {
        flex-direction: column;
        text-align: center;
        gap: 1.5em;
    }
    .hh-profile-header-info {
        flex-direction: column;
    }
    .hh-profile-body {
        flex-direction: column;
    }
    .hh-profile-sidebar {
        flex: none;
    }
}
