.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.profile-name {
    font-size: 1.4rem;
    margin: 0;
}

.profile-title,
.profile-company {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.profile-socials {
    margin-top: 0.4rem;
}

.post-list ul {
    padding-left: 0;
    list-style: none;
}

.post-list .post-header {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
}

.post-list .meta {
    justify-content: center;
}

.post-list .readmore {
    text-decoration: underline;
    opacity: 0.8;
}

body {
    flex-direction: column !important;
    min-height: 100vh;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 0 !important;
    margin: 0 !important;
}

.page-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0.9rem;
}

@media (min-width: 992px) {
    .page-body {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
}

.site-footer {
    position: relative;
    width: 100%;
    padding: 0.5rem 0.5rem 0.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    opacity: 0.6;
    text-align: center;
    box-sizing: border-box;
}

.footer-built {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}
