/* --- ÀçÁ÷Áõ¸í¼­ Àü¿ë ÇÁ¸°Æ® ½ºÅ¸ÀÏ --- */

@media print {
    /* ±âÁ¸ ¿©¹é ¼³Á¤À» ÀçÁ÷Áõ¸í¼­ Æû¿¡ ¸Â°Ô Á¶Á¤ */
    @page {
        size: A4 portrait;
        margin: 15mm;
    }
}

/* 1°Ç´ç A4 1ÀåÀ» Â÷ÁöÇÏµµ·Ï ¼³Á¤ */
.certificate-page {
    width: 210mm; /* A4 ³Êºñ */
    height: 297mm; /* A4 ³ôÀÌ */
    padding: 30mm 20mm;
    box-sizing: border-box;
    page-break-after: always; /* [ÇÙ½É] ´ÙÀ½ µ¥ÀÌÅÍ´Â ´ÙÀ½ Àå¿¡ Ãâ·ÂµÇµµ·Ï °­Á¦ ºÐÇÒ */
    position: relative;
    background-color: #fff;
}

    /* ¸¶Áö¸· ÆäÀÌÁö µÚ¿¡´Â ºÒÇÊ¿äÇÑ ºó ÆäÀÌÁö°¡ »ý±âÁö ¾Êµµ·Ï ¹æÁö */
    .certificate-page:last-child {
        page-break-after: auto;
    }

.cert-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 20px;
    margin-bottom: 50px;
    margin-top: 20px;
    text-indent: 20px; /* ÀÚ°£ ¶§¹®¿¡ °¡¿îµ¥ Á¤·ÄÀÌ Æ²¾îÁö´Â °Í º¸Á¤ */
}

/* Å×ÀÌºí ½ºÅ¸ÀÏ */
.cert-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #333;
}

.cert-th, .cert-td {
    border: 1px solid #333;
    padding: 15px 10px;
    font-size: 16px;
}

.cert-th {
    background-color: #f9f9f9;
    text-align: center;
    width: 20%;
    font-weight: bold;
    letter-spacing: 2px;
}

.cert-td {
    text-align: left;
    width: 30%;
}

/* ÇÏ´Ü ¼­¸í ¿µ¿ª */
.cert-footer {
    margin-top: 80px;
    text-align: center;
}

.cert-text {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 50px;
}

.cert-date {
    font-size: 18px;
    margin-bottom: 50px;
}

.cert-sign {
    font-size: 24px;
    font-weight: bold;
    display: inline-block; /* ÅØ½ºÆ® ³Êºñ¸¸Å­¸¸ ¿µ¿ªÀ» Àâ¾Æ Á÷ÀÎ ¹èÄ¡¸¦ ½±°Ô ÇÔ */
    position: relative;
}

.church-name {
    margin-right: 15px;
}

/* (ÀÎ) ±ÛÀÚ°¡ ÀÖ´Â ±âÁØÁ¡ ¿µ¿ª */
.sign-mark {
    position: relative;
    display: inline-block;
    width: 50px;
    text-align: center; /* (ÀÎ) ÅØ½ºÆ® °¡¿îµ¥ Á¤·Ä */
}

/* Á÷ÀÎ ÀÌ¹ÌÁö ¼ÂÆÃ */
.stamp-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* (ÀÎ) ±ÛÀÚÀÇ ¿Ïº®ÇÑ Á¤Áß¾Ó¿¡ À§Ä¡ÇÏ°Ô ÇÔ */
    height: 120px !important; /* ³ôÀÌ °íÁ¤ */
    width: auto !important; /* ¿øº» ºñÀ²¿¡ ¸ÂÃç ÀÚµ¿ Á¶Àý */
    /* [ÇÙ½É] ºÎ¸ð(.sign-mark)ÀÇ 50px ³Êºñ Á¦ÇÑÀ» ¹«½ÃÇÏ°í ¿ø·¡ ºñÀ²´ë·Î ÆÛÁö°Ô ÇÔ */
    max-width: none !important;
    mix-blend-mode: multiply;
    z-index: 10;
}