.references-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    width: 100vw;
    padding: 5rem 0;
}

.references-section-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    width: 100%;
    margin: auto;
}

.references-items {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    margin: auto;
}

.references-item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
}

.references-item-up {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.references-item-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-top: 1rem;
}

.references-item-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #333333;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.references-item-detail {
    font-size: 1rem;
    font-weight: 400;
    color: #767676;
}

.references-item-detail a {
    font-size: 1rem;
    font-weight: 400;
    color: #767676;
}

.references-item-image {
    width: 100%;
    height: 70vh;
    object-fit: contain;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.5);
}

.references-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1/1.41;
}

.references-item-image:hover {
    transform: scale(1.02);
    cursor: pointer;
}