.dashboard-section-heading {
    margin-bottom: 17px;
}

.dashboard-section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: 21px;
    letter-spacing: -.02em;
}

.dashboard-section-heading p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.priority-dashboard {
    margin-bottom: 19px;
}

.priority-rent-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.priority-rent-card {
    position: relative;
    min-height: 183px;
    overflow: hidden;
    padding: 21px;
    border: 1px solid;
    border-radius: 17px;
    box-shadow: 0 10px 28px rgba(29, 54, 83, .07);
}

.priority-rent-card::after {
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 135px;
    height: 135px;
    border: 22px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    content: "";
}

.priority-pending {
    border-color: #efd3a3;
    background: linear-gradient(145deg, #fffaf1, #fff0d5);
}

.priority-active {
    border-color: #b2ddcf;
    background: linear-gradient(145deg, #f3fcf9, #daf3eb);
}

.priority-ending {
    border-color: #eac3d3;
    background: linear-gradient(145deg, #fff7fa, #fbe3ed);
}

.priority-card-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.priority-card-heading span {
    color: #425467;
    font-size: 13px;
    font-weight: 800;
}

.priority-card-heading i {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 17px;
    font-style: normal;
    place-items: center;
}

.priority-pending .priority-card-heading i {
    color: #9b5e09;
    background: #ffe0a8;
}

.priority-active .priority-card-heading i {
    color: #087553;
    background: #b9e6d7;
}

.priority-ending .priority-card-heading i {
    color: #a53b67;
    background: #f1bfd3;
}

.priority-rent-card > strong {
    position: relative;
    z-index: 1;
    display: block;
    margin: 13px 0 0;
    color: var(--navy);
    font-size: 40px;
    line-height: 1;
}

.priority-rent-card > p {
    position: relative;
    z-index: 1;
    margin: 8px 0 14px;
    color: #647586;
    font-size: 11px;
}

.priority-rent-card > small {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 800;
}

.priority-rent-card > small b {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.priority-pending > small {
    color: #9b5e09;
}

.priority-pending > small b {
    background: #e49321;
}

.priority-active > small {
    color: #087553;
}

.priority-active > small b {
    background: #20a679;
}

.priority-ending > small {
    color: #a53b67;
}

.priority-ending > small b {
    background: #cf5d89;
}

.rent-queue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 31px;
}

.rent-queue-panel {
    min-height: 203px;
    padding: 18px;
    border: 1px solid #e3e9ef;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(29, 54, 83, .05);
}

.rent-queue-heading,
.rent-queue-heading > div {
    display: flex;
    align-items: center;
}

.rent-queue-heading {
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf1f4;
}

.rent-queue-heading > div {
    gap: 9px;
}

.rent-queue-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: 13px;
}

.rent-queue-heading > strong {
    color: var(--navy);
    font-size: 17px;
}

.rent-queue-heading i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.queue-pending .rent-queue-heading i {
    background: #e49321;
}

.queue-active .rent-queue-heading i {
    background: #20a679;
}

.queue-ending .rent-queue-heading i {
    background: #cf5d89;
}

.rent-queue-empty {
    display: grid;
    min-height: 130px;
    color: var(--muted);
    text-align: center;
    place-content: center;
}

.rent-queue-empty > span {
    margin-bottom: 7px;
    color: #a7b5c3;
    font-size: 25px;
}

.rent-queue-empty strong {
    color: #526476;
    font-size: 12px;
}

.rent-queue-empty p {
    margin: 5px 0 0;
    font-size: 10px;
}

.equipment-summary {
    padding-top: 1px;
}

.equipment-stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.equipment-stats-grid .stat-card {
    min-height: 130px;
}

@media (max-width: 1180px) {
    .equipment-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1020px) {
    .rent-queue-grid {
        grid-template-columns: 1fr;
    }

    .rent-queue-panel {
        min-height: 170px;
    }

    .rent-queue-empty {
        min-height: 98px;
    }
}

@media (max-width: 700px) {
    .dashboard-section-heading h2 {
        font-size: 19px;
    }

    .priority-rent-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .priority-rent-card {
        min-height: 112px;
        padding: 15px 17px;
    }

    .priority-card-heading i {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .priority-rent-card > strong {
        margin-top: 5px;
        font-size: 31px;
    }

    .priority-rent-card > p {
        display: none;
    }

    .priority-rent-card > small {
        margin-top: 5px;
    }

    .rent-queue-grid {
        gap: 11px;
        margin-bottom: 27px;
    }

    .equipment-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
    }

    .equipment-stats-grid .stat-card {
        min-height: 118px;
        padding: 16px;
    }
}

@media (max-width: 390px) {
    .equipment-stats-grid {
        grid-template-columns: 1fr;
    }
}
