@import "./colors.css";

.company_item {
    width: 100%;
    background-color: var(--color-light-pink);
    padding: 0.75rem 0;
    display: flex;
    border-radius: 0.5rem;
    @media screen and (min-width: 1023px) {
        padding-left: 0.5rem;
    }
}
.item_nameWrap {
    width: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0;
    border-right: 1px solid var(--color-pink);
    flex-shrink: 0;
}
.item_name {
    font-size: 1rem;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}
.item_contentWrap {
    width: 100%;
    padding: 0 1.15rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.item_content {
    font-size: 1.25rem;
    @media screen and (max-width: 1023px) {
        font-size: 0.875rem;
    }
}
