/**
 * Excellence Commendation Certificate Styles
 */

.certificate-container.excellence-commendation {
    width: 1000px;
    height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    padding: 60px;
    background-color: #fff;
}

.certificate-container.excellence-commendation .certificate-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
    padding-top: 20px;
}

/* Seal Container */
.certificate-container.excellence-commendation .seal-container {
    position: relative;
    width: 100px;
    height: 120px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.certificate-container.excellence-commendation .seal {
    width: 60px;
    height: 60px;
    background: #fbc02d;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.certificate-container.excellence-commendation .seal::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px dashed #000;
    border-radius: 50%;
}

.certificate-container.excellence-commendation .star {
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.certificate-container.excellence-commendation .ribbons {
    position: absolute;
    top: 40px;
    width: 70px;
    height: 60px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
}

.certificate-container.excellence-commendation .ribbon {
    width: 25px;
    height: 50px;
    background: #000;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 80%, 0% 100%);
}

.certificate-container.excellence-commendation .ribbon-left {
    transform: rotate(15deg);
}

.certificate-container.excellence-commendation .ribbon-right {
    transform: rotate(-15deg);
}

/* Typography */
.certificate-container.excellence-commendation .title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.certificate-container.excellence-commendation .subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #333;
    max-width: 85%;
    line-height: 1.4;
}

.certificate-container.excellence-commendation .recipient-name {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 35px;
    color: #000;
}

.certificate-container.excellence-commendation .description-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    max-width: 85%;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Footer Section */
.certificate-container.excellence-commendation .footer-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding: 0 60px;
    box-sizing: border-box;
}

.certificate-container.excellence-commendation .footer-item {
    width: 260px;
    text-align: center;
}

.certificate-container.excellence-commendation .signature-line {
    border-top: 1.5px solid #000;
    margin-bottom: 8px;
}

.certificate-container.excellence-commendation .footer-label {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/* Editable text hover */
.certificate-container.excellence-commendation .editable-text:hover {
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 4px;
}