h2.project-name {
    margin-bottom: 2rem;
}

.stone-wrapper {
    display: flex;
    gap: 2rem;

    .left-col {
        flex: 0 1 66%;
        text-align: left;

        & > div {
            margin-bottom: 2rem;
        }
    }
    span.label {
        font-weight: 700;
        display: block;
    }
    .stone-image {
        img {
            max-width: 300px;
            height: auto;
            margin-bottom: 1rem;
        }
    }
    .description {
        p {
            margin-bottom: 1rem;
        }
    }
    .geo-location {
        margin-top: 1rem;
    }
    .significant-dates {
        ul {
            margin-top: 1.5rem;
            list-style: disc inside;


            li {
                padding: 0.5rem;

                &:nth-child(odd) {
                    background-color: #f8f8f8;
                }

                .date-type {

                }
            }
        }
    }
    .partners, .sources, .project-documentation {
        margin-top: 3rem;

        h3 {
            margin-bottom: 1rem;
        }
        .sources-wrapper, .document-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            @media only screen and (min-width: 1000px) {
                grid-template-columns: repeat(3, 1fr);
            }
            gap: 2rem;
            .source, .document {
                .photo, .logo {
                    a {
                        display: flex;
                        margin-bottom: 1rem;
                    }
                }

                img {
                    width: 150px;
                    height: 150px;
                    object-fit: cover;
                }
                a {
                    color: #D8613C;
                    &:hover {
                        text-decoration: none;
                    }
                }
                .name {
                    margin-bottom: 0.5rem;
                }
                .caption {
                    font-size: 0.9375rem;
                }
                .credit {
                    font-size: 0.9375rem;
                    font-style: italic;
                }
            }
        }
    }

    .right-col {
        flex: 1 1 34%;
        h3 {
            margin-bottom: 1rem;
        }
        .details > div {
            margin-bottom: 1rem;
        }
        .embedded-map {
            margin-top: 1rem;
        }
    }
}