.live-board--wrap {
    position: relative;
    padding: 0 0 40px;
    color: var(--color-white);
    background: var(--color-black);
    z-index: 1;
}

.live-board--wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000 6.07%, rgba(0, 0, 0, 0) 36.59%);
    z-index: -1;
}

img.live-board--bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    opacity: 0.6;
    z-index: -2;
}

.live-board--wrap .headline {
    max-width: 928px;
    margin: 0 auto;
}

.live-board--wrap .headline--title {
    position: relative;
    padding-left: 20px;
}

.live-board--wrap .headline--title::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #24f551;
}

.gantt-wrapper {
    margin-top: 36px;
}

.gantt-container {
    position: relative;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.gantt-row {
    min-height: 60px;
    display: grid;
    grid-template-columns: 244px minmax(148px, 1fr) 178px;
    align-items: center;
    border-bottom: 1px solid #dcdcdb;
    color: rgba(0, 0, 0, 0.9);
}

.gantt-row.header {
    min-height: 52px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    color: #b7b7b7;
}

.gantt-row.highlight {
    height: 80px;
    color: #fff;
    border-bottom: none;
    background: linear-gradient(80.76deg, #7235E8 7%, #3FF1C3 93%);
}

.col-name,
.col-status,
.col-industry {
    position: relative;
    padding: 0 24px;
    z-index: 2;
}

.col-industry.col-button {
    padding: 0 13px;
}

.gantt-row:not(.header) .col-industry {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
}

.gantt-wrapper .project-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 1px;
}

.project-logo { border-radius: 8px; width: 40px; height: 40px; background: #fff; object-fit: contain; }

.col-timeline {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.gantt-row.header .col-timeline {
    justify-content: flex-end;
    padding: 0 12px 7px 0;
}

.gantt-row.highlight .col-timeline {
    justify-content: center;
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #7c7c7c;
    border-radius: 4px;
    background: #cfcfcf;
    z-index: 6;
}

.month-grid span {
    min-height: 18px;
    align-content: center
}


.progress-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: relative;
    margin: auto 0;
    padding: 0;
    height: 10px;
    align-items: center;
}

.gantt-row.highlight .progress-container {
    margin: 0;
}

.progress-track {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    grid-column: 1 / 13;
    border-radius: 8px;
    background: #f5f5f5;
}

.gantt-row.highlight .progress-track {
    margin-left: auto;
    border-radius: 0 8px 8px 0;
    background: rgba(255,255,255,0.8);
}


.progress-bar {
    position: relative;
    height: 100%;
    z-index: 2;
}

.highlight .progress-bar.main-gradient {
    grid-column: 1 / 13;
    border-radius: 8px 0 0 8px;
    background: rgba(255,255,255,0.2);
}

.bar-gradient {
    width: 28%;
    border-radius: 8px;
    background: linear-gradient(90deg, #7235E8 0%, #3FF1C3 100%);
}

.current-date-bubble {
    position: absolute;
    top: 7px;
    padding: 1px 7px;
    font-size: 10px;
    color: #8a8a8a;
    white-space: nowrap;
    border-radius: 12px;
    border: 1px solid #cfcfcf;
    background: #fff;
    transform: translateX(-50%);
    z-index: 4;
}

.current-date-bubble::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 2000px;
    border-left: 1px dashed rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: -1;
}

.highlight .current-date-bubble::after {
    border-left: 1px dashed rgba(255,255,255,0.4);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 7px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    text-transform: capitalize;
}

.status-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-pill.new {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.status-pill.new .dot {
    background: rgba(255, 255, 255, 0.3);
}

.status-pill.design {
    color: #ce0303;
    background: rgba(253, 236, 236, 1);
}
.status-pill.design .dot { background: #ce0303; }
.status-pill.build {
    color: #366ceb;
    background: rgba(245, 248, 255, 1);
}
.status-pill.build .dot { background: #366ceb; }
.status-pill.testing {
    color: #097549;
    background: rgba(236, 253, 243, 1);
}
.status-pill.testing .dot {background: #17ac67; }

.status-pill.launching {
    background: rgba(255, 246, 237, 1);
}

.status-pill.launching .status-pill--text {
    background: linear-gradient(90deg, #FF6216 0%, #FFB53E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.status-pill.launching .dot { background: #f06520}

.status-pill.maintenance {
    color: rgba(164, 164, 164, 1);
    background: rgba(246, 246, 246, 1);
}

.status-pill.maintenance .dot {background: rgba(181, 181, 181, 1)}
.start-project-btn {
    min-width: auto;
    white-space: nowrap;
    padding: 11px 16px 10px;
    align-items: center;
    background: rgba(40,40,40,0.2);
}

.gantt-row.last {
    position: relative;
    min-height: 52px;
    background: #ffffff;
    z-index: 6;
}

.gantt-footer-caption {
    grid-column: 1 / 5;
    font-size: 12px;
    text-align: center;
    letter-spacing: -0.15px;
    color: rgba(0, 0, 0, 0.4);
}

.live-board--wrap .btn-box {
    margin-top: 33px;
    text-align: center;
}

@media (min-width: 992px) {
    .live-board {
        padding: 0 20px;
    }

    .live-board--wrap {
        margin-top: -37px;
        padding: 86px 0 187px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .live-board--wrap .btn-box {
        margin-top: 60px;
    }

    .gantt-row {
        grid-template-columns: 244px 148px 1fr 178px;
    }
}

@media (max-width: 991px) {
    .col-timeline {
        display: none;
    }
}



@media (max-width: 640px) {
    .gantt-wrapper {
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: #11DBC3 transparent;
    }

    .gantt-container {
        width: 640px;
        margin-bottom: 10px;
    }

    .gantt-wrapper::-webkit-scrollbar {
        height: 6px;
        width: 6px;
    }

    .gantt-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .gantt-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #7126EB 0%, #11DBC3 100%);
        border-radius: 10px;
    }

    .gantt-wrapper::-webkit-scrollbar-thumb:hover {
        background: #7126EB;
    }
}