@charset "utf-8";

.company__profile {
    width: 100%;
    height: auto;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.13);
    /* Note: currently only Safari supports backdrop-filter */
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 24px;
}

.company__profile-list{
    display: grid;
}

.company__profile-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #6A6F86;
    align-items: flex-start;
    padding: 2em 0;
}

.company__profile-item:last-child{
    border-bottom: none;
}


.company__profile-title {
    width: 100%;
}

.company__profile-text {
    width: 100%;
    margin-top: 8px;
    line-height: 1.8;
}

@media (min-width:768px){

    .company__profile{
        padding: 24px 38px;
    }
    .company__profile-item{
        flex-direction: row;
    }

    .company__profile-title {
    width: 30%;
    padding-left:1em;
}
    .company__profile-text {
        margin-top: 0;
        padding-right: 1em;
}
}