.EpisodeHeader {
    align-items: center;
    display: flex;
    margin-bottom: 30px;

    &-header-title {
        font-size: 24px;
        margin-right: 20px;
        opacity: 0.5;
    }

    &-title {
        border-bottom: 1px solid var(--gray-300);
        color: var(--gray-800);
        font-size: 24px;
        margin-bottom: 10px;
    }

    &-draft-line {
        display: flex;
    }

    &-status-chiclet {
        border-radius: 10px;
        color: var(--gray-500);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    &-status-chiclet-dot {
        background-color: var(--orange);
        border-radius: 10px;
        display: inline-block;
        height: 10px;
        margin-right: 5px;
        vertical-align: middle;
        width: 10px;
    }

    &-published {
        background-color: var(--green);
    }

    &-scheduled {
        background-color: var(--blue);
    }

    &-podcast-image {
        background-color: var(--gray-100);
        height: 68px;
        margin-right: 25px;
        width: 68px;
    }

    &-header-right {
        flex: 1;
    }

    &-created-at {
        color: var(--gray-500);
        font-size: 12px;
        margin-left: 5px;
    }
}
