/* ==========================================================================
   Podryad Stats Block (between hero and filters on /podryad/)
   Self-contained — без зависимостей от темы.
   ========================================================================== */

.podryad-stats {
    width: 100%;
    background: #fff;
    padding: 0;
    box-sizing: border-box;
}
.podryad-stats * {
    box-sizing: border-box;
}

.podryad-stats__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.podryad-stats__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
}

/* Card base */
.podryad-stats__card {
    background: #FFFFFF;
    border: 1px solid #E2E8EE;
    border-radius: 14px;
    padding: 24px 22px;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    min-width: 0;
}
.podryad-stats__card:hover {
    box-shadow: 0 6px 20px rgba(8, 31, 92, 0.08);
    border-color: #D6DEE8;
}

/* Lead card */
.podryad-stats__card--lead {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.podryad-stats__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 6px 14px;
    background: #EAF7FE;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #081F5C;
    line-height: 1;
}
.podryad-stats__pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4FC3F7;
    flex: 0 0 auto;
    box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.6);
    animation: podryadStatsPulse 1.8s ease-in-out infinite;
}
@keyframes podryadStatsPulse {
    0%   { box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(79, 195, 247, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 195, 247, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .podryad-stats__pill-dot { animation: none; }
}
.podryad-stats__lead-title {
    margin: 4px 0 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--pc-color-dark-navy, #081F5C);
    line-height: 1.3;
}
.podryad-stats__lead-sub {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: #081F5C;
    opacity: 0.72;
}
.podryad-stats__br-desktop {
    display: inline;
}
@media (max-width: 1000px) {
    .podryad-stats__br-desktop {
        display: none;
    }
}

/* Stat cards (icon + value + label) */
.podryad-stats__icon {
    display: inline-flex;
    width: 26px;
    height: 26px;
    color: #4FC3F7;
    margin-bottom: 14px;
    align-items: center;
    justify-content: center;
}
.podryad-stats__icon svg {
    width: 26px;
    height: 26px;
    display: block;
}
.podryad-stats__value {
    font-size: 34px;
    font-weight: 700;
    color: var(--pc-color-dark-navy, #081F5C);
    line-height: 1.05;
    margin-bottom: 8px;
    letter-spacing: -0.6px;
}
.podryad-stats__label {
    font-size: 13px;
    line-height: 1.4;
    color: #081F5C;
    opacity: 0.72;
}

/* Bottom warning strip */
.podryad-stats__warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #FFF8E1;
    border: 1px solid #F6E2A5;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #6B5400;
}
.podryad-stats__warning-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    color: #B58105;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}
.podryad-stats__warning-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}
.podryad-stats__warning-text strong {
    font-weight: 700;
    color: #4A3A00;
}

/* Tablet — 2x2, lead на полную ширину */
@media (max-width: 1000px) {
    .podryad-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .podryad-stats__card--lead {
        grid-column: 1 / -1;
    }
}

/* Mobile — стек */
@media (max-width: 600px) {
    .podryad-stats__inner { padding: 0 16px; }
    .podryad-stats__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 10px;
    }
    .podryad-stats__card { padding: 20px 18px; }
    .podryad-stats__value { font-size: 28px; }
    .podryad-stats__warning {
        align-items: flex-start;
        font-size: 12px;
    }
}
