.profile-header {
    background: #0a0a0a;
    background-size: cover;
   	background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    color: #fff;
}

.profile-header-overlay {
    text-align: center;
    padding: 2rem;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin-bottom: 1rem;
}

.profile-role {
    color: #0d6b54;
    font-weight: bold;
}

.profile-content {
    max-width: 700px;
    margin: 3rem auto 4rem;
    padding: 2rem;
    color: #fff;
    min-height: auto;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.profile-bio,
.profile-posts {
    margin-bottom: 3rem;
}

.posts-list {
    display: grid;
    gap: 1rem;
}

.post-item {
    border-left: 3px solid #0d6b54;
    padding-left: 1rem;
    color: #fff;
}

.post-item h3 a {
    color: #fff;
    text-decoration: none;
}

.post-item h3 a:hover {
    color: #fff;
}

.post-date {
    font-size: 0.9rem;
    color: #ccc;
}
@media (max-width: 768px) {
    .profile-header {
        min-height: 200px;
        margin-top: 60px;
    }

    .profile-avatar {
        width: 100px;
        height: 100px;
        border: 3px solid #fff;
    }

    .profile-header-overlay {
        padding: 1rem;
    }

    .profile-content {
        max-width: calc(100% - 2rem);
        margin: 1.5rem 1rem 8rem;
        padding: 1.5rem;
    }

    .profile-bio,
    .profile-posts {
        margin-bottom: 2rem;
    }

    .profile-bio h2,
    .profile-posts h2 {
        font-size: 1.3rem;
    }

    .profile-bio p,
    .profile-posts p {
        font-size: 0.95rem;
    }
}