.report-table {
    margin-top: 20px;
}

.report-table th,
.report-table td {
    padding: 5px 5px 5px 15px;
    border: 1px solid #ccd4e1;
}

.report-table th {
    font-size: 15px;
}

.report-table td {
    font-size: 14px;
}

.chart_title_pk {
    font-size: 14px;
}

.report_pk {
    font-size: 14px;
    border: 1px solid #ccd4e1;
    padding: 30px;
    margin-bottom: 20px;
}

.report_pk input {
    font-size: 14px;
}

.text-center {
    text-align: center;
    margin-bottom: 0;
}

.winner-main {
    margin-bottom: 50px;
}

.winner-shadow {
    padding-top: 30px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.15);
}

.winners-text {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.my-7 {
    margin-block: calc(0.25rem * 7);
}

.winners-text::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 135px;
    height: 4px;
    background-color: #A88C6D;
}


.winners-list {
    display: flex;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 0 auto 50px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.winners-list li {
    text-align: center;
}

.winner-card {
    flex: 0 1 220px; /* было 240px */
    text-align: center;
}

.winner-box {
    border: 1px solid #bfa274;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    max-height: 230px;
    min-height: 230px;
    width: 100%;
    box-sizing: border-box;
}

.winner-box:hover {
    transform: translateY(-5px);
}

.winner-box img {
    max-height: 80px;       /* уменьшили, чтобы все были одинаково */
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;    /* авто отступ снизу */
}

.winner-nomination {
    font-size: 15px; /* было 16px */
    color: #444;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
}

/* Заголовок */
.title-main-block h2.title {
    text-align: center;
    font-size: 22px; /* было 24px */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 35px; /* было 40px */
}

