.digi-post-title-single {
    margin-bottom: 1.25rem;
}

.digi-post-meta-single {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.digi-post-share {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.digi-share-text {
    color: var(--digi-charcoal);
}

.digi-share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.digi-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 13px 16px;
    background-color: var(--digi-silver);
    color: var(--digi-charcoal);
    border-radius: 9999px;
    text-decoration: none;
}

.digi-share-btn:hover {
    background-color: var(--digi-crimson);
    color: #fff;
}

.digi-share-icon {
    fill: currentColor;
}

.digi-featured-image-single {
    display: flex;
    max-height: 570px;
    margin-bottom: 2rem;
}

.digi-post-thumbnail-single {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}

.digi-single-article {
    max-width: 100%;
    padding-bottom: 3rem;
}

.digi-post-content-single {
    padding-bottom: 4rem;

    &::after {
        content: "";
        display: table;
        clear: both;
    }
}

.digi-author-box {
    position: relative;
    overflow: hidden;
    background-color: var(--digi-silver);
    border-radius: 0.75rem;
    padding: 2.5rem;
}

.digi-author-avatar-wrapper {
    display: flex;
}

.digi-author-avatar-link {
    display: flex;
}

.digi-author-avatar {
    border-radius: 9999px;
    width: 100px;
    height: 100px;
}

.digi-author-content {
    flex: 1;
    position: relative;
    z-index: 20;
    margin-top: 2rem;
}

.digi-author-name-wrapper {
    display: flex;
    margin-bottom: 0.75rem;
}

.digi-author-name {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--digi-charcoal);
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.digi-author-name:hover {
    color: var(--digi-crimson);
}

.digi-author-bio {
    margin-bottom: 2rem;
}

.digi-author-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.digi-author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 13px 16px;
    background-color: var(--digi-crimson);
    color: #fff;
    border-radius: 9999px;
    text-decoration: none;
}

.digi-author-social-link:hover {
    background-color: var(--digi-ruby);
    color: #fff;
}

.digi-social-icon {
    fill: currentColor;
}

.digi-default-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: all 300ms ease-in-out;
}

.digi-loader-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}

.digi-related-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
}

.digi-related-title {
    font-size: 1.875rem;
    margin: 0;
}

.digi-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.digi-related-post {
    display: flex;
    flex-direction: column;
}

.digi-related-image {
    position: relative;
    display: flex;
    margin-bottom: 1.5rem;
}

.digi-related-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
}

.digi-related-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.digi-related-post-title {
    font-size: 1.7rem;
    margin: 0;
}

.digi-comments-wrapper {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 2.25rem;
}
