.home-info-widgets {
    padding: 38px 0 76px;
    background: #fff;
}

.home-info-widgets .container {
    width: min(1440px, calc(100% - 32px));
    max-width: none;
}

.home-info-widget-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.home-info-panel {
    --widget-accent: #1f63ea;
    --widget-soft: rgba(31, 99, 234, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(25, 56, 108, 0.12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(13, 44, 94, 0.08);
}

.home-info-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 20px 16px;
}

.home-info-panel__brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.home-info-panel__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    color: #fff;
    font-size: 22px;
    background: linear-gradient(135deg, var(--widget-accent), color-mix(in srgb, var(--widget-accent) 72%, #ffffff));
    box-shadow: 0 12px 24px color-mix(in srgb, var(--widget-accent) 18%, transparent);
}

.home-info-panel__titles {
    min-width: 0;
}

.home-info-panel__titles h2 {
    margin: 0;
    color: #1b2b4d;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.home-info-panel__titles p {
    margin: 6px 0 0;
    color: #6f7b90;
    font-size: 12px;
    font-weight: 600;
}

.home-info-panel__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.home-info-panel__action,
.home-info-panel__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(28, 69, 139, 0.12);
    border-radius: 999px;
    color: #1c2d50;
    font-size: 14px;
    background: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.home-info-panel__actions button {
    cursor: pointer;
}

.home-info-panel__action:hover,
.home-info-panel__actions button:hover {
    color: var(--widget-accent);
    border-color: color-mix(in srgb, var(--widget-accent) 35%, #ffffff);
    transform: translateY(-1px);
}

.home-info-panel__actions button[disabled] {
    opacity: 0.42;
    cursor: default;
    transform: none;
}

.home-info-panel__divider {
    height: 1px;
    margin: 0 20px;
    background: linear-gradient(90deg, rgba(28, 69, 139, 0.1), rgba(28, 69, 139, 0.04));
}

.home-info-panel__list {
    position: relative;
    flex: 1 1 auto;
    min-height: 456px;
}

.home-info-page {
    display: none;
    height: 100%;
}

.home-info-page.is-active {
    display: flex;
    flex-direction: column;
}

.home-info-item {
    display: grid;
    align-items: center;
    width: 100%;
    min-height: 84px;
    padding: 16px 20px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.home-info-item + .home-info-item {
    border-top: 1px solid rgba(28, 69, 139, 0.08);
}

.home-info-item:hover {
    background: rgba(248, 251, 255, 0.96);
}

.home-info-item__arrow {
    color: #233457;
    font-size: 18px;
    justify-self: end;
}

.home-info-item__title {
    margin: 0 0 6px;
    color: #1f2f50;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.32;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-info-item__meta,
.home-info-item__subtitle,
.home-info-item__secondary {
    color: #67758d;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.home-info-item__subtitle {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-info-item__meta i,
.home-info-item__secondary i {
    margin-right: 6px;
}

.home-info-item--announcement {
    grid-template-columns: 52px minmax(0, 1fr) 24px;
    gap: 16px;
}

.home-info-item__bullet {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    color: var(--widget-accent);
    font-size: 20px;
    background: color-mix(in srgb, var(--widget-soft) 60%, #ffffff);
}

.home-info-item--tender {
    grid-template-columns: 66px minmax(0, 1fr) auto 18px;
    gap: 14px;
}

.home-info-item__dateblock {
    padding-right: 14px;
    border-right: 1px solid rgba(28, 69, 139, 0.1);
    text-align: left;
}

.home-info-item__dateblock strong,
.home-info-item__calendar strong {
    display: block;
    color: var(--widget-accent);
    font-family: Poppins, sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
}

.home-info-item__dateblock span,
.home-info-item__calendar span {
    display: block;
    margin-top: 7px;
    color: #56637b;
    font-family: Poppins, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.home-info-item__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--widget-accent);
    font-family: Poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    background: color-mix(in srgb, var(--widget-soft) 78%, #ffffff);
}

.home-info-item--report {
    grid-template-columns: 66px minmax(0, 1fr) 18px;
    gap: 14px;
}

.home-info-item__submeta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
    color: #667489;
    font-size: 12px;
    font-weight: 600;
}

.home-info-item__submeta i {
    margin-right: 6px;
}

.home-info-item__dateblock--report {
    min-height: 100%;
}

.home-info-panel__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 0 20px;
    color: var(--widget-accent);
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-top: 1px solid rgba(28, 69, 139, 0.08);
    background: linear-gradient(90deg, color-mix(in srgb, var(--widget-soft) 64%, #ffffff), color-mix(in srgb, var(--widget-soft) 22%, #ffffff));
}

.home-info-panel__foot i:last-child {
    font-size: 16px;
}

@media (max-width: 1180px) {
    .home-info-widget-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .home-info-widget-grid {
        grid-template-columns: 1fr;
    }

    .home-info-panel__head {
        flex-direction: column;
        align-items: stretch;
    }

    .home-info-panel__actions {
        justify-content: flex-end;
    }

    .home-info-panel__list {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .home-info-widgets .container {
        width: min(100%, calc(100% - 20px));
    }

    .home-info-item--tender {
        grid-template-columns: 1fr;
    }

    .home-info-item__dateblock {
        padding-right: 0;
        border-right: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(28, 69, 139, 0.08);
    }

    .home-info-item__badge {
        justify-self: start;
    }

    .home-info-item--announcement {
        grid-template-columns: 44px minmax(0, 1fr) 18px;
        gap: 12px;
    }

    .home-info-item--report {
        grid-template-columns: 1fr;
    }

    .home-info-item__bullet {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}
