.share-post-widget {
    width: 752px;
    justify-self: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 48px;
    color: var(--Gray-Gray-500, #606060);
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.share-post-widget p{
    margin: 0;
}

.share-post-widget .separator-line {
    height: 0.5px;
    width: 100%;
    background-color: #363636;
}

.share-post-widget .tags {
    justify-content: center;
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.share-post-widget .tag {
    color: var(--Color-Palette-Yellow-Yellow-500, #FFC432);
    cursor: pointer;
    border: 1px solid;
    padding: 8px 24px;
    border-radius: 27px;
    font-weight: 700;
    transition: 0.3s;
}

.share-post-widget .tag:hover {
    color: var(--Color-Palette-Blue-Blue-500, #25B1E1);
    transition: 0.3s;
}

.share-post-widget .share {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
    align-items: center;
}

.share-post-widget .social-icons {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.share-post-widget .social-icons a {
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--Gray-Gray-100, #161616);
    transition: 0.3s;
}

.share-post-widget .social-icons a:hover {
    background-color: var(--Color-Palette-Yellow-Yellow-500, #FFC432);
    transition: 0.3s;
}

.share-post-widget .social-icons a img {
    width: 24px;
    height: 24px;
    transition: 0.3s;
}

.share-post-widget .social-icons a:hover img {
    filter: contrast(5);
}

.share-post-widget .site-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    padding-bottom: 72px;
}

.share-post-widget .site-separator {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.share-post-widget .site-separator .separator-line {
    flex: 1 1 0;
}

.share-post-widget .site-separator img {
    width: 96px;
    height: 96px;
    aspect-ratio: 1 / 1;
    padding: 20px;
}

.share-post-widget .site-info .about-link{
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.share-post-widget .site-info .about-link a {
    color: var(--Default-White, #FFF);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: dimgrey;
    text-underline-offset: 8px;
    transition: 0.3s;
}

.share-post-widget .site-info .about-link a:hover {
    text-decoration-color: white;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .share-post-widget {
        width: 100%;
        font-size: 16px;
    }
    .share-post-widget .tag{
        padding: 4px 16px;
    }
    .share-post-widget .social-icons a{
        width: 40px;
        height: 40px;
    }
    .share-post-widget .site-info{
        padding-bottom: 48px;
    }
}