.site-header-new{
    padding: .7em 5.5%;
}

/* Portfolio section action buttons */
.home-portfolio-content .portfolio-links {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.home-portfolio-content .portfolio-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    color: #fff;
    background: #0077b5;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    cursor: pointer;
    outline: none;
}

.home-portfolio-content .portfolio-btn.about {
    background: #f60;
    color: #fff;
}
.home-portfolio-content .portfolio-btn.about:hover {
    background: rgb(182, 79, 10);
}

.home-portfolio-content .portfolio-btn.linkedin {
    background: #0a66c2;
}
.home-portfolio-content .portfolio-btn.linkedin:hover {
    background: #005983;
}
/* Custom styles for home page single column layout */
body:before { width: 0px;}
.home-main-container {
    max-width: 1100px;
    width: 95vw;
    margin: 40px auto 0 auto;
    padding: 32px 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    transition: max-width 0.2s;
}

.home-portfolio-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
}

.home-portfolio-content {
    flex: 2;
    min-width: 0;
}

.home-portfolio-content header{
    margin-left: 5%;
    margin-bottom: 1em;
    padding: .25% 2.5% 0 5%;
}

.home-portfolio-photo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
}

.home-portfolio-photo img {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.home-portfolio-photo .profileTitle {
    margin-top: 12px;
    font-size: 1.1em;
    color: #555;
    font-weight: 600;
    text-align: center;
}


@media (max-width: 1100px) {
    .home-main-container {
        max-width: 98vw;
        padding: 18px 6vw;
    }
}

@media (max-width: 800px) {
    .home-main-container {
        max-width: 100vw;
        padding: 8vw 2vw;
    }
    .home-portfolio-section {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }
    .home-portfolio-photo {
        margin-bottom: 0;
        margin-top: 18px;
        align-items: center;
    }
    .home-portfolio-photo img {
        width: 120px;
        height: 120px;
    }
    .home-portfolio-content {
        width: 100%;
    }
}

.section-posts {
    width: 100%;
    margin-bottom: 36px;
}

.section-header {
    text-align: center;
    margin-bottom: 18px;
}

.entry-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 0.2em;
}


