
h3 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 3rem;
    letter-spacing: 0;
    text-align: center;
}
.sample-list {
    padding: 0 8rem;
}
.sample-item {
    display: flex;
    margin-bottom: 3.5rem;
}
.sample-item > div:first-child {
    flex-basis: 360px;
    flex-shrink: 0;
}
.sample-item > div:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sample-item > div:last-child {
    border: 1px solid #CCC;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sample-item .title {
    font-size: 1rem;
    font-weight: bold;
    padding: 1.2rem;
    letter-spacing: 0;
    border-bottom: 1px solid #CCC;
}
.sample-item .description {
    font-size: 0.8rem;
    padding: 0.8rem 1.2rem;
    color: #999;
    flex-grow: 1;
}
.sample-item .subtext {
    font-size: 0.9rem;
    color: #6d7a83;
    padding: 0.8rem 1.2rem;
    background-color: #dfe5e9;
}
@media (max-width: 1000px) {
    .sample-list {
        padding: 0 4rem;
    }
    .sample-item {
        display: block;
    }
}