* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

.published-container {
    border: red solid 1px;
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    height: 100vh;
    gap: 0;
}

.published-container p {
    line-height: 1.6;
    margin-top: 10px;
}
 
.site-body-left-column {
    background-color: #fdfdfa;
    padding: 20px;
    overflow-y: auto;
}

.site-body-left-column nav ul {
    list-style: none;
}

.site-body-left-column h2 {
    margin-bottom: 50px;
    margin-top: 25px;
}

.site-body-left-column nav li {
    margin-bottom: 20px;
}

.site-body-left-column nav li a {
    text-decoration: none;
    color: #666;
    display: block;
    border-radius: 4px;
    transition: background-color 0.1s;
}

.site-body-left-column nav li a:hover {
    background-color: #f5b5f7;
    color: #000000;
}

.main-content{
    border: rgb(0, 0, 0) solid 1px;
    padding: 50px;
    overflow-y: auto;
}

.main-content h1{
    margin-bottom: 15px;
}

.svgs {
    margin-left: 11px;
}

.title-with-image {
    display: flex;
    align-items: center; /* important */

    /* border: red solid 1px; */
    max-width: 331px; /* important */
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
    border: 1px solid #e0e0e0;
}

.socials svg{
    width: 20px;
    height: 20px;
}

.socials a:hover {
    background-color: #5b5b5c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.site-body-right-column {
    background-color: #fdfdfa;
    padding: 20px;
    overflow-y: auto;
}

h1 {
    font-size: 2.6em;
    cursor: pointer;
}

@media (max-width: 980px) {
    .published-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
    }
    
    .site-body-left-column ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        padding: 0;
        margin-bottom: 0;
    }

    .site-body-left-column li {
        line-height: 0;
    }

    .site-body-left-column h2 {
        margin-bottom: 30px;
    }
    .site-body-right-column {
        height: auto;
        max-height: 400px;
    }
}

@media (max-width: 800px) {
    .site-body-left-column ul {
        padding-right: 8rem;
    }
}