.__socialize {
    display: flex;
    flex-direction: column;
    gap: 20px;

    text-align: center;

    h6 {
        font-size: 1rem;
    }

    .__links {
        display: flex;
        align-content: center;
        justify-content: center;
        flex-direction: row;
        gap: 30px;

        svg {
            width: 30px;
            height: 30px;
        }
    }

}

.__contact {
    display: flex;

    flex-direction: column;

    .__item {
        display: flex;

        flex-direction: column;
        gap: 5px;

        border-radius: 4px;
        padding-bottom: 1rem;
        padding-top: 1rem;

        h4 {
            text-align: left;
            color: #999;
            font-size: 1rem;
            font-weight: normal;
            padding-bottom: .5rem;
        }

        strong {
            text-align: left;
            font-weight: normal;
            font-size: 1.25rem
        }
    }
}

.__embeddingTime {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 30px;

    .code {
        iframe {
            width: 100%;
        }
    }

    .times {

        border-radius: 4px;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;

        ul {
            padding: 0px;

            list-style: none;

            li {
                padding-bottom: 2rem;
            }
        }
    }

}

@media only screen and (max-width: 767px) {
    .__embeddingTime {
        display: flex;
        flex-direction: column;
    }

}

.__meta {
    img {
        object-fit: cover;
        width: 100%;
        height: 200px;
        background: #999;
        margin-bottom: 1rem;
    }
}

.__img {
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: center;

    img {
        width: 75%;
        padding: .5rem;
        background: #999;
        object-fit: scale-down;
    }

}

.block {
    padding-top: .3rem;
    padding-bottom: .3rem;

}

@media only screen and (max-width: 767px) {
    .block {
        padding-top: .7rem;
        padding-bottom: .7rem;
    }
}

.__list {
    list-style: disc;
}

.__gallery {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    width: 100%;
    gap: 20px;

    img {
        object-fit: scale-down;
        width: 25%;


    }
}

.__mediaText {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;

    img {
        object-fit: scale-down;
        width: 25%;
        background: #999;

        border-right: 1px solid #999;
    }

}

.__quote {
    p {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    q {
        quotes: "“" "”" "‘" "’";
    }

    q::before {
        content: open-quote;
    }

    q::after {
        content: close-quote;
    }
}

.__table {
    /* spacing */

    table {
        table-layout: fixed;
        width: 100%;
        border-collapse: collapse;

    }

    td,
    th {
        border: 1px solid #999;
        padding: 0.5rem;
    }
}

.__detail {
    summary {
        font-size: 1.25em;
        padding-bottom: 1rem;
    }

    p {
        background: #ccc;
        padding: .5rem
    }
}

.__cover {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 18px;
    border: none;
    margin-top: 1em;
    margin-bottom: 1em;

    img {

        position: absolute;
        border: none;
        border-radius: 18px;
        top: 0px;
        left: 0px;
        width: 100%;
        height: inherit;
        object-fit: cover;

        z-index: 1;

    }

    &::before {
        position: absolute;
        border-radius: 18px;
        left: 0px;
        top: 0px;

        width: 100%;
        height: inherit;
        background: rgba(0, 0, 0, 0.3);
        content: "";
        z-index: 2;
    }

    .__text {
        width: 100%;
        height: inherit;
    }

    strong {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.5em;
        font-weight: 700;
        text-align: center;
        z-index: 3;
    }
}
