/**
 * Consistency Certificate Styles
 */

.muvd-consistency-certificate {
    display: block;
    margin: 20px auto;
}

.certificate-container {
    background: var(--muvd-color-accent-fade, #f9f5f2);
    /*border: 2px solid #000;*/
    border-radius: 15px;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.certificate-icon {
    min-width: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 15px;
    border-radius: 100%;
}

.certificate-title {
    /*font-size: 18px;*/
    /*font-weight: bold;*/
    /*color: #2c3e50;*/
    /*margin-bottom: 10px;*/
    /*line-height: 1.3;*/
}

.certificate-title h1 {
    font-size: 24px;
    font-weight: bold;
}

.certificate-subtitle {
    padding: 0 5%;
}

.certificate-container {
    width: 70%;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .certificate-container {
        width: 100%;
        padding: 20px 15px;
        min-height: 150px;
    }

    .certificate-icon svg {
        width: 36px;
        height: 36px;
    }
}