body {
    --postcontent-width: 800px;
    --orange-light: hsl(from var(--e-global-color-d49ac81) h s calc(l + 36));
}

.blogPost--intro {
    height: 50vh;
    text-align: center;
    width: 100%;
    display: flex;
    max-width: var(--postcontent-width);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10vh auto;
}

@media (max-width:768px) {
    .blogPost--intro {
        height: auto;
        margin: 13vh auto;
    }
}

.blogPost--content {
    width: 100%;
    display: grid;
    grid-template-columns: 9fr 3fr;
    max-width: 1280px;
    gap: 20px;
}

.blogPost--author {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--e-global-color-6606447);
    padding: 25px 0px;
}

.meta-column {
    display: flex;
    flex-direction: column;
    gap: 0px;

    & p {
        margin: 0px !important;

        &:nth-child(1) {
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            color: rgb(0, 0, 0);
            letter-spacing: 1px;
        }
    }
}

.blogPost--image {
    width: 100%;
    height: auto;
    border-radius: 10px !important;
}

.blogPost--social {
    display: flex;
    gap: 10px;

    & i {
        height: 40px;
        width: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: 0.3s;
        background-color: rgba(0, 0, 0, 0);
        border-radius: 10px;

        &:hover {
            background-color: rgba(0, 0, 0, 0.09);
        }
    }

    & svg {
        width: 70%;
        height: auto;
    }
}

.blogPost--excerpt {
    font-size: 21px;
    line-height: 1.6;
    max-width: 700px;
    font-weight: 300;
    padding: 0px;
    margin: 0px !important;
}

.shareModal {
    position: fixed;
    inset: 0px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.shareModal.is-open {
    opacity: 1;
    visibility: visible;
}

.shareModal__overlay {
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(10px);
}

.shareModal__dialog {
    position: relative;
    width: min(740px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.shareModal__header {
    position: relative;
    margin: 40px auto;
    text-align: center;
}

.shareModal__header h2 {
    margin: 0px;
    text-align: center;
    font-size: 44px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.shareModal__close {
    border: 0px;
    background: transparent;
    cursor: pointer;
    padding: 10px 20px;
    display: flex;
    margin-top: 50px;
    font-weight: 600 !important;
    letter-spacing: 3px;
    justify-content: center;
    width: 100% !important;
    color: rgb(255, 255, 255) !important;
    font-size: 18px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
}

@media (max-width:768px) {
    .shareModal__close {
        font-size: 15px !important;
        margin-top: 10px;
        margin-bottom: 10px;
        height: 40px !important;
        padding: 0;
        display: flex;
        align-items: center;
    }
}

.shareModal__close svg {
    width: 80%;
    height: auto;
}

.shareModal__preview {
    text-align: center;
    margin: 0px auto 30px;
    max-width: 420px;
}

.shareModal__preview img {
    width: 100%;
    max-width: 290px;
    height: 172px;
    object-fit: cover;
}

.shareModal__preview h3 {
    margin: 18px auto 0px;
    max-width: 420px;
    font-size: 30px;
    line-height: 1.14;
    font-weight: 400;
}

.shareModal__copyRow {
    display: flex;
    align-items: center;
    gap: 18px;
    /* background: rgb(249, 249, 249); */
    /* border: 1px solid silver; */
    border-radius: 5px;
    /* padding: 10px; */
    margin-bottom: 40px;
}

.shareModal__copyRow input {
    width: 100%;
    background: transparent;
    color: rgb(246, 246, 246);
    outline: none;
    padding: 5px !important;
    font-size: 15px !important;
    border: 1px solid rgba(192, 192, 192, 0.48) !important;
}

.shareModal__copyRow button {
    border: 0px;
    border-radius: 8px;
    color: rgb(16, 16, 16);
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    background-color: transparent !important;
    font-size: 13px !important;
    padding: 0px !important;

    &:hover,
    &:focus {
        color: black;
    }
}

.shareModal__links {
    display: flex;
    flex-direction: column;
}

.shareModal__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    border-bottom: 1px solid rgb(237, 237, 237);
    padding: 14px 0px;
    font-size: 21px;
    line-height: 1.2;
    transition: 0.3s;
    position: relative;
    color: rgb(41, 30, 1) !important;

    &::after {
        content: " ";
        display: block;
        height: 2px;
        width: 100%;
        background: black;
        position: absolute;
        bottom: -1px;
        transform: scaleX(0);
        transform-origin: left bottom;
        transition: transform 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    }

    &:hover::after {
        transform: scaleX(1);
    }

    &:hover {
        color: rgb(0, 0, 0) !important;
    }
}

@media (max-width:768px) {
    .shareModal__links a {
        font-size: 15px !important;
    }
}

.shareModal__links a svg {
    width: 24px;
    height: 24px;
    color: rgb(0, 0, 0);
    flex: 0 0 auto;
}

@media (max-width:768px) {
    .shareModal__links a svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 767px) {
    .shareModal {
        padding: 10px;
    }

    .shareModal__dialog {
        padding: 18px 18px 24px;
    }

    .shareModal__header h2 {
        font-size: 30px;
    }

    .shareModal__close {
        /* right: -2px; */
        /* top: -2px; */
        width: 30px;
        height: 30px;
    }

    .shareModal__preview img {
        max-width: 220px;
        height: 140px;
    }

    .shareModal__preview h3 {
        font-size: 24px;
    }

    .shareModal__copyRow {
        margin-bottom: 28px;
    }

    .shareModal__copyRow input {
        font-size: 16px;
    }

    .shareModal__links a {
        font-size: 25px;
        padding: 12px 0px;
    }
}