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

    text-align: center;
    margin: 2rem 0;

    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;
    margin: 2rem 0;

    .__item {
        display: flex;

        flex-direction: column;
        gap: 5px;

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

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

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

.__embeddingTime {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px;
    margin: 2rem 0;

    .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: 2rem;
    }
}

.__img {
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: center;
    margin: 2rem 0;

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

.block {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

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

.__list {
    list-style: disc;
    margin: 1.5rem 0;
    line-height: 1.8;
}

.__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    margin: 2rem 0;

    img {
        object-fit: scale-down;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.__mediaText {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin: 2rem 0;

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

        border-right: 1px solid #999;
        padding-right: 1rem;
    }
}

.__quote {
    margin: 2rem 0;
    padding: 1.5rem 0;

    p {
        display: flex;
        flex-direction: column;
        text-align: center;
        line-height: 1.8;
    }

    q {
        quotes: "" " " "" "'" "'";
    }

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

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

.__table {
    /* spacing */
    margin: 2rem 0;

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

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

.__detail {
    margin: 2rem 0;

    summary {
        font-size: 1.25em;
        padding-bottom: 1rem;
        cursor: pointer;
    }

    p {
        background: #ccc;
        padding: 1rem;
        margin-top: 1rem;
    }
}

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

    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;
    }
}

.__members {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.__member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    gap: 1rem;
    flex: 0 1 calc(33.333% - 1.333rem);
    min-width: 250px;

    img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    h6 {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: #333;
    }

    small {
        display: block;
        color: #666;
        font-size: 0.875rem;
        line-height: 1.4;

        &:first-of-type {
            font-weight: 500;
            color: #555;
            margin-bottom: 0.5rem;
        }

        &.description {
            font-style: italic;
            color: #777;
            margin-top: 0.5rem;
        }
    }
}

@media only screen and (max-width: 1024px) {
    .__member {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media only screen and (max-width: 767px) {
    .__members {
        flex-direction: column;
        gap: 1.5rem;
    }

    .__member {
        flex: 1 1 100%;
        padding: 1rem;
        min-width: unset;
    }
}

.__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 3rem;
    width: 100%;
    padding: 2rem 0;
    margin: 2rem 0;
}

.__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    padding-bottom: 1rem;

    &:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        border-color: #2d5016;
    }

    img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        background: #f0f0f0;
        display: block;
    }

    h6 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: #222;
        padding: 0 1rem;
        line-height: 1.4;
    }

    strong {
        font-size: 1.4rem;
        font-weight: 700;
        color: #2d5016;
        padding: 0 1rem;
    }
}

@media only screen and (max-width: 1024px) {
    .__items {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 2rem;
    }
}

@media only screen and (max-width: 767px) {
    .__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .__item {
        h6 {
            font-size: 0.9rem;
        }

        strong {
            font-size: 1.1rem;
        }

        img {
            height: 150px;
        }
    }
}
