* {--avatar-outline: 4px;
    --caliber-avatar-clip-path-y: 90%;
    --caliber-avatar-clip-path-x: 10%;
    --avatar-clip-path: polygon(0 -10px,calc(100% + 10px) -10px,calc(100% + 10px) calc(100% + 10px),var(--avatar-triangle-clip-path));
    --avatar-triangle-clip-path: calc(var(--caliber-avatar-clip-path-x) + 10px) calc(100% + 10px), 0 var(--caliber-avatar-clip-path-y);
}

.auther-intro img {
    width: -webkit-fill-available;
    clip-path: var(--avatar-clip-path);
}

.auther-intro h1 {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.auther-intro .auther-intro-content p {
    font-size: 15px;
    color: #1A80B6;
    font-weight: 600;
}

.auther-profile a {
    padding: 12px 14px ;
    border: 1px solid #dfe3e9;
    background: #f3f4f6;
    width: max-content;
}

.share-profile {
    font-size: 12px;
}

.auther-edu-box {
    border-top: 1px solid #e5e7ea;
    border-bottom: 1px solid #e5e7ea;
    margin: 24px 0;
}

.auther-project div,
.auther-post div {
    border: 1px solid #1A80B6;
    padding: 2px 8px;
    border-radius: 20px;
}

.auther-project {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.auther-post {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.auther-project a,
.auther-post a {
    display: flex;
    width: max-content;
    color: #455065;
    font-size: 12px;
    font-weight: 400;
}

.auther-project a:hover,
.auther-post a:hover {
    color: #1A80B6;
}

.auther-workarea {
    border-left: 1px solid #e5e7ea;
    font-weight: 600;
    color: black;
}

.auther-edu {
    font-weight: 600;
    color: black;
}

.auther-recent-post .recent-post-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.auther-recent-post .recent-post-box > .col-12 {
    min-width: 0;
    overflow: hidden;
}

.auther-recent-post .recent-post-box a {
    display: block;
}

.auther-bio p,
.auther-edu-box p,
.auther-recent-post p {
    color: #455065;
}

.auther-intro .auther-img {
    position: sticky;
    top: 48px;
    align-self: flex-start;
}

.auther-recent-post h2 {
    font-size: 25px;
    font-weight: 600;
    color: #1A80B6;
}

.auther-recent-post h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A80B6;
    line-height: 25px;
}

.post-box {
    box-shadow: 0 4px 8px 0 rgba(100, 102, 106, .1), 0 1px 4px 0 rgba(100, 102, 106, .36);
    border-radius: 4px;
    transition: background-color .15s linear,border .15s linear;
    border: 1px solid transparent;
    background-color: white;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.post-box img,
.picks-box img {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-box:hover {
    border: 1px solid #005fb9 !important;
    border-radius: 4px;
}

.post-box:hover {
    border: 1px solid #1A80B6;
    border-radius: 5px;
}

.post-content {
    padding: 15px;
}

.author-bios a:hover {
    text-decoration: none !important;
}

.post-content p {
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
    height: 70px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.picks-content p {
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    height: 50px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.post-read div {
    color: #1A80B6;
}

.post-read div:hover {
    color: #455065;
    text-decoration: none;
}

.post-read {
    padding: 16px;
}

.picks-box:hover {
    box-shadow: 0 4px 8px 0 rgba(100, 102, 106, .1), 0 1px 4px 0 rgba(100, 102, 106, .36) !important;
    border-radius: 4px;
}

.picks-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.img-logo {
    height: 20px;
    width: 20px;
    position: absolute;
    bottom: 65px;
}

@media only screen and (max-width: 1024px) {

    .auther-recent-post .recent-post-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .auther-intro .auther-img {
        position: relative;
        top: 0;
    }
}

@media only screen and (max-width: 576px) {

    .auther-recent-post .recent-post-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .auther-workarea {
        border-left: none;
        border-top: 1px solid #e5e7ea;
    }

    .auther-recent-post h2 {
        font-size: 20px;
    }

    .auther-intro h1 {
        font-size: 25px;
    }

    .auther-recent-post h3 {
        font-size: 15px;
    }

    .auther-bio p, 
    .auther-edu-box p, 
    .auther-recent-post p {
        font-size: 14px;
    }

    .post-content p {
        height: 65px;
    }

    .picks-content p {
        height: 45px;
    }
    .auther-intro .auther-intro-content p {
        text-align: center;
    }
}