.pc-service-overview .pc-service-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 38px;
}
.pc-channel-labels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.pc-channel-labels > span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    white-space: nowrap;
}
.pc-channel-labels > span + span {
    padding-left: 24px;
    border-left: 1px solid #c9d7ce;
}
.pc-service-overview .pc-channel-labels svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    stroke-width: 1.5;
}
.pc-service-channels > p {
    margin: 0;
    color: #627269;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
}
.pc-service-channels > p > span {
    display: inline-block;
}
.pc-service-foot {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 12px;
    margin-top: 18px;
}
.pc-service-foot .pc-service-note {
    margin: 0;
}
.pc-channel-detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #24594f;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    padding: 8px 0;
    text-decoration: underline;
    text-decoration-color: #bccdc3;
    text-underline-offset: 5px;
}
.pc-channel-detail svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
}
.pc-channel-detail:hover {
    text-decoration-color: currentColor;
}
.pc-channel-detail:focus-visible {
    outline: 2px solid #24594f;
    outline-offset: 5px;
    border-radius: 2px;
}
@media (max-width: 1000px) {
    .pc-service-overview .pc-service-channels {
        margin-bottom: 8px;
    }
}
@media (max-width: 600px) {
    .pc-channel-labels {
        gap: 12px;
    }
    .pc-channel-labels > span {
        gap: 6px;
        font-size: 12px;
    }
    .pc-channel-labels > span + span {
        padding-left: 12px;
    }
    .pc-service-overview .pc-channel-labels svg {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }
    .pc-service-channels > p {
        font-size: 12px;
    }
    .pc-service-foot {
        row-gap: 4px;
    }
}
