.resume-company {
    border: 0;
    border-bottom: 2px solid #000;
    padding: 0;
    padding-top: 1em;
}

.resume-company-name {
    border: 0;
    font-size: x-large;
}
.resume-company-details {
    font-size: smaller;
    font-style: italic;

    display: flex;
    flex-wrap: wrap;
}

.resume-company-location {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    padding: 0;
}
.resume-company-tenure {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    padding: 0;
    text-align: right;
}

@media (max-width: 767px) {
    .resume-company-details {
        flex-direction: column;
    }
    .resume-company-location {
        width: 100%;
    }
    .resume-company-tenure {
        width: 100%;
        text-align: unset;
    }
}

.resume-job {
    border: 0;
    padding: 0;
    padding-top: 1em;
}

.resume-job-title {
    border: 0;
    border-bottom: 1px solid #ccc;
    font-size: large;
    font-weight: bold;
}
.resume-job-details {
    font-size: smaller;
    font-style: italic;

    display: flex;
    flex-wrap: wrap;
}
.resume-job-tenure {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    padding: 0;
}
.resume-job-description {
    padding-left: 1em;
}

@media (max-width: 767px) {
    .resume-job-details {
        flex-direction: column;
    }
    .resume-job-location {
        width: 100%;
    }
    .resume-job-tenure {
        width: 100%;
        text-align: unset;
    }
}