.wpeye-wrap {
    max-width: 1220px;
    margin: 0 auto;
}

.wpeye-wrap > h1 {
    text-align: center;
    font-size: 2.2em;
    font-weight: 600;
}

.wpeye-wrap .sec_box_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    align-items: flex-start;
    padding: 2em;
}


.wpeye-wrap .sec_box {
    flex: 1 1 calc(50% - 1em); /* dwie kolumny */
    min-width: 255px;
    border: 1px solid #c3c4c7;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
    background: #fff;
    font-size: 14px;
}

@media (max-width: 960px) {
    .wpeye-wrap .sec_box {
        flex: 1 1 100%;
    }
}


.wpeye-wrap .sec_box-header {
    background: #f9f9f9;
    border-bottom: 1px solid #c3c4c7;
    padding: 1em;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative; 
}

.wpeye-wrap details > summary::-webkit-details-marker {
    display: none;
}

.wpeye-wrap details > summary {
    list-style: none; 
}

.wpeye-wrap details > summary::after { 
    content: "\25BC"; 
    position: absolute;
    right: 1em; 
    transition: transform 0.2s ease-in-out; 
    color: #787c82;
}

.wpeye-wrap details[open] > summary::after {
    transform: rotate(180deg);
}

.wpeye-wrap .sec_box-header h2 {
    font-size: 1em;
    margin: 0em 1em;
    cursor: pointer;
    color: #1d2327;
}

.wpeye-wrap .sec_box-header .circle {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    line-height: 0;
    font-size: 0;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle; 
}

.wpeye-wrap .inside {
    display: flex;
    width: 100%;
}

.wpeye-wrap .inside > div.left {
    width: 33%;
    padding: 1em 1em;
}

.wpeye-wrap .inside > div.left p {
    font-weight: bold;
    font-size: 1em;
}
.wpeye-wrap .inside > div.right {
    width: 66%;
    padding: 1em 1em;
}

.wpeye-wrap .inside ul {
    list-style: square;
    padding-left: 2em;
}

.wpeye-wrap .score-card {
    width: 200px;
    background: #fff;
    border: 3px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 1em;
    box-sizing: border-box;
    margin: 2em auto;
}

.wpeye-wrap .label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

.wpeye-wrap .score {
    font-size: 3em;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
}

.wpeye-wrap .score-card.good { border-color: #0b9e3b; }
.wpeye-wrap .score-card.warn { border-color: #e09b00; }
.wpeye-wrap .score-card.bad  { border-color: #d62828; }

