/* Verdict & Rating Block Styles */

.verdict-block {
    font-family: 'Manrope', sans-serif;
    background: #ffffff;
    border-radius: 25px;
    padding: 36px;
    margin: 24px 0;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

/* Decorative accent bar */
.verdict-block__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #5db24e, #22c55e);
}

/* Content layout */
.verdict-block__content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left Column */
.verdict-block__left {
    flex: 1 1 400px;
}

.verdict-block__title {
    margin: 0 0 16px 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #34363D;
}

.verdict-block__text {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #34363D;
    margin-bottom: 24px;
}

.verdict-block__text strong {
    color: #1f2937;
}

/* Legal Table */
.verdict-block__legal {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.verdict-block__legal-row {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verdict-block__legal-row--last {
    border-bottom: none;
}

.verdict-block__legal-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.verdict-block__legal-value {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Validator checkmark */
.verdict-block__validator {
    color: #22c55e;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.verdict-block__validator:hover {
    color: #16a34a;
}

/* Right Column */
.verdict-block__right {
    flex: 1 1 280px;
    background: #fcfcfc;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verdict-block__score-section {
    width: 100%;
}

.verdict-block__score-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.verdict-block__score-info {
    display: flex;
    flex-direction: column;
}

.verdict-block__score-label {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    margin: 0 0 12px 0;
    line-height: 28px;
    color: #34363D;
}

.verdict-block__score-value {
    font-size: 48px;
    font-weight: 900;
    color: #1f2937;
    line-height: 1;
}

.verdict-block__score-max {
    font-size: 20px;
    color: #9ca3af;
    font-weight: 500;
}

/* Stars */
.verdict-block__stars {
    display: flex;
    gap: 2px;
}

.verdict-block__star {
    width: 20px;
    height: 20px;
}

.verdict-block__star--full {
    color: #facc15;
}

.verdict-block__star--half {
    color: #facc15;
}

.verdict-block__star--empty {
    color: #e5e7eb;
}

/* Responsive */
@media (max-width: 1400px) {
    .verdict-block {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .verdict-block {
        padding: 24px;
        border-radius: 16px;
    }
    
    .verdict-block__content {
        flex-direction: column;
        gap: 24px;
    }
    
    .verdict-block__left,
    .verdict-block__right {
        flex: 1 1 100%;
    }
    
    .verdict-block__title {
        font-size: 28px;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .verdict-block__text {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .verdict-block__right {
        padding: 20px;
    }
    
    .verdict-block__score-value {
        font-size: 40px;
    }
    
    .verdict-block__star {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .verdict-block {
        padding: 16px;
        border-radius: 12px;
    }
    
    .verdict-block__accent {
        height: 4px;
    }
    
    .verdict-block__title {
        font-size: 24px;
    }
    
    .verdict-block__text {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    
    .verdict-block__legal-row {
        padding: 10px 12px;
    }
    
    .verdict-block__legal-label,
    .verdict-block__legal-value {
        font-size: 12px;
    }
    
    .verdict-block__right {
        padding: 16px;
        border-radius: 12px;
    }
    
    .verdict-block__score-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .verdict-block__score-value {
        font-size: 36px;
    }
    
    .verdict-block__score-max {
        font-size: 16px;
    }
    
    .verdict-block__star {
        width: 16px;
        height: 16px;
    }
}

/* Error state */
.verdict-block-error {
    font-family: 'Manrope', sans-serif;
}
