.greeting-photo {
    width: 150px;
    height: auto;
    float: right;
    margin-left: 20px;
}

.greeting-name {
    text-align: right;
}

.officer-list {}

.officer-box {
    display: flex;
    border-bottom: solid 1px #ccc;
    align-items: center;
    padding: 4px 0;
}

.officer-box dt {
    width: 10%;
    text-align: center;
    font-weight: 600;
    background: #73401b;
    color: #fff;
    border-radius: 5px;
}

.officer-name {
    width: 20%;
    padding: 0 1em;
    font-weight: 600;
}

.officer-station {
    width: 70%;
    padding: 0 1em;
}

@media screen and (max-width: 1024px) {
    .officer-box dt {
        width: 5em;
    }

    .officer-name {
        width: 10em;
    }
}

@media screen and (max-width: 425px) {
    .greeting-photo {
        float: none;
        margin: auto;
        margin-bottom: 1em;
    }

    .officer-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .officer-name {
        width: 100%;
    }

    .officer-station {
        width: 100%;
    }
}