* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    background-color: #0d132d;
    color: white;
	-webkit-font-smoothing: antialiased; /* ±ÛÀÚ¸¦ ´õ ¸Å²ô·´°Ô Ç¥Çö */
	-moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   1. Çì´õ (Main Header) - °øÅë ½ºÅ¸ÀÏ
   ========================================================================== */
.main_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0d132d;
    color: #ffffff;
    padding: 0 40px; /* ¼¼·Î ÆÐµùÀº height°¡ ÀÖÀ¸¹Ç·Î °¡·Î¸¸ ¼³Á¤ */
    height: 80px;
    position: sticky; /* »ó´Ü °íÁ¤ (¼±ÅÃ »çÇ×) */
    top: 0;
    z-index: 1000;
}

/* ¿ÞÂÊ, Áß¾Ó, ¿À¸¥ÂÊ ¿µ¿ª °øÅë */
.head_left,
.head_center,
.head_right {
    flex: 1;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   2. °¢ ¿µ¿ªº° »ó¼¼ Á¤·Ä
   ========================================================================== */

/* ¿ÞÂÊ: ÇÜ¹ö°Å + ÀÌ¸§ */
.head_left {
    justify-content: flex-start;
    gap: 20px;
}

.menu_btn, 
.search_btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 25px;
    cursor: pointer;
    padding: 10px; /* Å¬¸¯ ¿µ¿ª È®´ë */
    transition: opacity 0.2s;
}

.menu_btn:hover, 
.search_btn:hover {
    opacity: 0.7;
}

.president_name {
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 500;
    white-space: nowrap; /* ÀÌ¸§ ÁÙ¹Ù²Þ ¹æÁö */
    /* text-transform: uppercase; ¾ËÆÄºª ´ë¹®ÀÚ·Î Ç¥±â */
}

/* Áß¾Ó: ·Î°í */
.head_center {
    justify-content: center;
}

.logo {
    font-size: 28px; /* ±âÁ¸ 32pxº¸´Ù ¾à°£ ÁÙ¿© ¹ü¿ë¼º È®º¸ */
    font-weight: 400;
    letter-spacing: 4px;
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

.logo img {
    height: 50px; /* ±âÁ¸ 32pxº¸´Ù ¾à°£ ÁÙ¿© ¹ü¿ë¼º È®º¸ */
}

/* ¿À¸¥ÂÊ: °Ë»ö ¹öÆ° */
.head_right {
    justify-content: flex-end;
}

/* ==========================================================================
   3. ¹ÝÀÀÇü µðÀÚÀÎ (Responsive)
   ========================================================================== */

/* ÅÂºí¸´ (1024px ÀÌÇÏ) */
@media (max-width: 1024px) {
    .main_head {
        padding: 0 25px;
    }
    .president_name {
        letter-spacing: 0.5px;
        font-size: 12px;
    }
}

/* ¸ð¹ÙÀÏ (768px ÀÌÇÏ) */
@media (max-width: 768px) {
    .main_head {
        padding: 0 10px;
        height: 70px; /* ¸ð¹ÙÀÏ¿¡¼­ ³ôÀÌ ¾à°£ Ãà¼Ò */
    }

    .head_left {
        gap: 10px;
    }

    .president_name {
        display: none; /* ¸ð¹ÙÀÏ¿¡¼­ ÀÌ¸§ ¼û±è */
    }

    .logo {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .menu_btn, 
    .search_btn {
        font-size: 18px;
    }
}



/* ÇÜ¹ö°Å ¸Þ´º */
.nav_overlay, 
.search_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d132d;
    display: none; /* JS active Å¬·¡½º·Î Á¦¾î */
    flex-direction: column;
    z-index: 2000;
}

.nav_overlay.active, 
.search_overlay.active {
    display: flex;
}

/* ==========================================================================
   2. »ó´Ü ¹Ù (Top Bar - Close, Search)
   ========================================================================== */
.nav_top_bar, 
.search_top_bar {
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    font-weight: bold;
    text-transform: uppercase;
}

.close_btn, 
.nav_search, 
.search_menu_indicator, 
.search_close_btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

/* ==========================================================================
   3. PC ·¹ÀÌ¾Æ¿ô (µ¥½ºÅ©Åé Àü¿ë)
   ========================================================================== */
.nav_content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
}

/* ¿ÞÂÊ ¸ÞÀÎ ¸Þ´º ¸®½ºÆ® */
.nav_menu_list {
    list-style: none;
    width: 380px;
    z-index: 10;
}

.nav_menu_list li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

/* PC È£¹ö/È°¼º ½ºÅ¸ÀÏ */
.nav_menu_list li.active > a, 
.nav_menu_list li:hover > a {
    background-color: #e2e8f0;
    color: #0d132d;
}

/* ¿À¸¥ÂÊ ÇÏÀ§ ¸Þ´º ¿µ¿ª (ÃÊ±â ¼û±è) */
.sub_menu_wrapper {
    display: flex;
    align-items: stretch;
    margin-left: 60px;
    min-height: 400px;
    z-index: 10;
    visibility: hidden; /* È£¹ö Àü±îÁö ¼û±è */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sub_menu_wrapper.active {
    visibility: visible;
    opacity: 1;
}

.vertical_line {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 60px;
}

.sub_list_group {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sub_list_group li {
	margin-top: 25px;
    margin-bottom: 25px;
}

.sub_list_group a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.sub_list_group a.dimmed {
    color: rgba(255, 255, 255, 0.4);
}

.sub_list_group a:hover {
    color: #e2e8f0;
}

/* ¹è°æ ¹®¾ç */
.nav_seal_bg {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.12;
    pointer-events: none;
}

.seal_img {
    width: 450px;
    filter: brightness(0) invert(1);
}

.seal_numbers {
    /*font-family: 'Times New Roman', serif;*/
    font-size: 60px;
    margin-top: -40px;
    letter-spacing: 10px;
    text-align: center;
}

/* ==========================================================================
   4. ¸ð¹ÙÀÏ ¹ÝÀÀÇü (1024px ÀÌÇÏ)
   ========================================================================== */
@media (max-width: 1024px) {
    .nav_content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 5%;
        overflow-y: auto; /* ¸Þ´º°¡ ±æ¾îÁú °æ¿ì ½ºÅ©·Ñ */
    }

    .nav_menu_list {
        width: 100%;
    }

    /* PC Àü¿ë ¿ä¼Ò ¼û±è */
    .desktop_only, 
    .nav_seal_bg {
        display: none !important;
    }

    /* ¸ÞÀÎ ¸Þ´º Ç×¸ñ ÁÙ¹Ù²Þ ¹× ¼± Ãß°¡ */
    .nav_menu_list li a {
        padding: 20px;
        font-size: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* ¸ð¹ÙÀÏ ÇÏÀ§ ÄÁÅ×ÀÌ³Ê (¾ÆÄÚµð¾ð ±×¸©) */
    .mobile_sub_container {
        display: none; /* Æò¼Ò¿¡´Â ¿ÏÀüÈ÷ ¼û±è */
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05);
    }

    /* active Å¬·¡½º°¡ ºÙ¾úÀ» ¶§¸¸ ÇÏÀ§ ¸Þ´º ³ëÃâ */
    .menu_item.active .mobile_sub_container {
        display: block;
        padding: 20px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* ÇÏÀ§ ¸®½ºÆ® ½ºÅ¸ÀÏ Á¶Á¤ */
    .sub_list_group {
        display: block !important;
    }

    .sub_list_group li {
		margin-top: 15px;
        margin-bottom: 15px;
    }

    .sub_list_group li a {
        font-size: 16px;
        padding: 0;
        border: none;
    }
	.nav_top_bar, 
	.search_top_bar {
		padding: 20px 30px;
	}
}

/* ==========================================================================
   5. °Ë»ö ¿À¹ö·¹ÀÌ ½ºÅ¸ÀÏ
   ========================================================================== */
.search_container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search_form {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.search_input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 30px;
    color: white;
    text-align: center;
    outline: none;
    padding: 15px 0;
}

.search_submit_btn {
    margin-top: 30px;
    background: none;
    border: 1px solid white;
    color: white;
    padding: 10px 30px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.search_submit_btn:hover {
    background-color: white;
    color: #0d132d;
}




/* ¸ÞÀÎ ½½¶óÀÌµå ÄÁÅ×ÀÌ³Ê */
.main_slide {
	position: relative;
    width: 100%;
    height: 850px;
    overflow: hidden;
    background-color: #0d132d;
}

.slide_container {
    touch-action: pan-y; /* ¼öÁ÷ ½ºÅ©·ÑÀº Çã¿ëÇÏµÇ, ¼öÆò ÅÍÄ¡ µ¿ÀÛÀº ½ºÅ©¸³Æ®°¡ Á¦¾îÇÔ */
    cursor: grab; /* ¸¶¿ì½º »ç¿ëÀÚ¸¦ À§ÇØ Àâ±â ¸ð¾ç Ä¿¼­ Ãß°¡ */
}

.slide_container:active {
    cursor: grabbing;
}

/* ½½¶óÀÌµå ¾ÆÀÌÅÛ */
.slide_item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	display: flex;
	justify-content: center;
	/* Áß¾Ó Á¤·Ä¿¡¼­ ÇÏ´Ü Á¤·Ä·Î º¯°æ */
	align-items: flex-end; 
	z-index: 1;
}

.slide_item.active {
	opacity: 1; /* È°¼ºÈ­µÈ ½½¶óÀÌµå¸¸ Ç¥½Ã */
	z-index: 2;
}

.slide_link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2; /* ÀÌ¹ÌÁö¿Í ¿À¹ö·¹ÀÌ¸¦ Æ÷ÇÔ */
    cursor: pointer;
}

.slide_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ÇÏ´Ü ±×¶óµ¥ÀÌ¼Ç (ÅØ½ºÆ®°¡ ¾Æ·¡·Î ³»·Á°¬À¸¹Ç·Î ¹üÀ§¸¦ ´õ ³Ð°Ô Á¶Á¤ °¡´É) */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%; /* 60%¿¡¼­ 70%·Î »óÇâÇÏ¿© ÅØ½ºÆ® °¡µ¶¼º È®º¸ */
    background: linear-gradient(to bottom, transparent 0%, #0d132d 100%);
    z-index: 2;
}

/* ÇÏ´Ü ÅØ½ºÆ® Á¤·Ä */
.slide_content {
    position: absolute;
    bottom: 50px; /* ÇÏ´Ü¿¡¼­ÀÇ ³ôÀÌ */
    left: 50%;     /* °¡·Î ½ÃÀÛÁ¡À» Áß¾ÓÀ¸·Î */
    transform: translateX(-50%); /* Á¤È®È÷ ÀÚ½ÅÀÇ ³Êºñ Àý¹Ý¸¸Å­ ¿ÞÂÊÀ¸·Î ÀÌµ¿ÇÏ¿© Áß¾Ó Á¤·Ä */
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;   /* ³Êºñ¸¦ ²Ë Ã¤¿ö¾ß ±ÛÀÚ Á¤·ÄÀÌ Áß¾ÓÀ¸·Î ¿È */
    pointer-events: none;
}

/* Áß¾Ó ÅØ½ºÆ® Á¤·Ä
.slide_content {
	position: absolute;
	z-index: 3;
	text-align: center;
	color: white;
	pointer-events: none;
} */

.slide_title {
    /*font-family: 'Times New Roman', serif;*/
    font-size: clamp(40px, 8vw, 70px) !important;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    display: block; /* ºí·Ï ¿ä¼Ò·Î ¼³Á¤ */
}

/* ÁÂ¿ì È­»ìÇ¥ */
.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
}
.arrow:hover { background: rgba(255, 255, 255, 0.3); }
.prev { left: 30px; }
.next { right: 30px; }

/* ÇÏ´Ü ÀÎµðÄÉÀÌÅÍ */
.indicators {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 10px;
}
.dot {
	width: 40px;
	height: 3px;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
}
.dot.active { background: #ffffff; }

@media (max-width: 1024px) {
    .main_slide {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .main_slide {
        height: 500px;
    }
    .slide_content {
        bottom: 30px; /* ÀÎµðÄÉÀÌÅÍ¿Í °ãÄ¡Áö ¾Ê°Ô °£°Ý Á¶Á¤ */
    }
    .arrow {
        display: none; /* ¸ð¹ÙÀÏ¿¡¼­´Â È­»ìÇ¥ ¼û±è (½º¿ÍÀÌÇÁ À¯µµ) */
    }
    .menu_item.active .mobile_sub_container {
        display: block;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 500px) {
    .main_slide {
        /* ³Êºñ°¡ Á¼¾ÆÁú ¶§ ³ôÀÌ¸¦ À¯¿¬ÇÏ°Ô Á¶Àý */
        height: 400px; 
    }

    .slide_title {
        /* ±ÛÀÚ Å©±â¸¦ ¸ð¹ÙÀÏ ³Êºñ¿¡ ¸Â°Ô ÃÖÀûÈ­ */
        font-size: 1.5rem !important;
        line-height: 1.05;
    }

    .slide_content {
        /* ÇÏ´Ü ÀÎµðÄÉÀÌÅÍ¿Í °ãÄ¡Áö ¾Êµµ·Ï ¿©¹é Á¶Á¤ */
        bottom: 20px; 
    }

    .overlay {
        /* ÅØ½ºÆ® °¡µ¶¼ºÀ» À§ÇØ ±×¶óµ¥ÀÌ¼Ç ¹üÀ§¸¦ ´õ ³ÐÈû */
        height: 80%; 
    }

	.nav_top_bar, 
	.search_top_bar {
		padding: 20px;
	}
}

/* ÀÌ¹ÌÁö È£¹ö È¿°ú (¼±ÅÃ »çÇ×)
.slide_link:hover img {
    transform: scale(1.05);
    transition: transform 1.2s ease;
} */

.slide_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

/* ½½¶óÀÌµå Å¸ÀÌÆ² ÅØ½ºÆ® °¡µ¶¼º (¸ð¹ÙÀÏ) */
.slide_title {
    /*font-family: 'Times New Roman', serif;*/
    font-size: clamp(32px, 10vw, 80px); /* ÃÖ¼Ò Å©±â Á¶Á¤ */
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* °¡µ¶¼º Ãß°¡ */
}




/* ==========================================================================
   White House Footer Section (whf_)
   ========================================================================== */

.whf_main_conts {
    color: #ffffff;
    padding: 80px 0 60px;
    /* font-family: 'Georgia', serif; ¸íÁ¶Ã¼ ´À³¦À» À§ÇÑ ÆùÆ® ¼³Á¤ */
}

.whf_conts_bottom {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. »ó´Ü ´º½º·¹ÅÍ ¹Ú½º (Tbox) */
.whf_bottom_Tbox {
    text-align: center;
    margin-bottom: 80px;
}

.whf_Tbox_img img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.whf_Tbox_tlt {
    font-size: 24px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.whf_newsletter_form {
    display: flex;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.whf_input_email {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    font-size: 16px;
    outline: none;
}

.whf_btn_signup {
    background-color: #e2e8f0;
    color: #0d132d;
    border: none;
    padding: 0 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
}

.whf_Tbox_stlt {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.9;
}

/* 2. ÇÏ´Ü ¸µÅ©/Á¤º¸ ¹Ú½º (Bbox) */
.whf_bottom_Bbox {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}

.whf_Bbox_left {
    display: flex;
    gap: 100px;
}

.whf_link_group {
    display: flex;
    flex-direction: column;
    gap: 25px;
	/*gap: 75px;*/
}

.whf_link_group a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    /* font-family: 'Arial', sans-serif; ¸µÅ©´Â »ê¼¼¸®ÇÁÃ¼ */
    font-weight: 400;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.whf_link_group a:hover {
    opacity: 0.6;
}

.whf_Bbox_right {
    display: flex;
	justify-content: flex-end;
    align-items: flex-start;
	/*
	align-items: flex-end;
	flex-direction: column-reverse;
	*/
    flex: 1;
    gap: 40px;
}

.whf_info {
	flex: 0 1 auto; /* ³»¿ë¸¸Å­ ³Êºñ Â÷Áö */
    text-align: right; /* ÅØ½ºÆ® ¿ìÃø Á¤·Ä À¯Áö */
    min-width: 250px; /* ³Ê¹« Á¼¾ÆÁöÁö ¾Ê°Ô ÃÖ¼Ò ³Êºñ ¼³Á¤ */
}

.whf_info_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.whf_info_address {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.whf_info_Copyright {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.whf_info_sns {
	display: flex;
    justify-content: flex-end; /* SNS ¾ÆÀÌÄÜµµ ¿À¸¥ÂÊ ³¡ Á¤·Ä */
    gap: 20px;
    margin-top: 15px;
}

.whf_info_sns a {
    color: white;
    font-size: 20px;
}

.whf_info_sns img {
	height: 22px;
}

/* 3. ÃÖÇÏ´Ü ¹Ù (Footer Bar) */
.whf_main_foot {
    background-color: #0d132d;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    font-size: 14px;
}

.whf_foot_left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.whf_foot_logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.whf_foot_logo img {
    height: 40px;
}

.whf_foot_link {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.whf_foot_backtotop {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 30px;
    border-left: 0px solid rgba(255, 255, 255, 0.2);
    height: 60px;
}

/* ==========================================================================
   6. ¹ÝÀÀÇü (Responsive)
   ========================================================================== */
@media (max-width: 1024px) {
	.whf_conts_bottom {
		max-width: 1500px;
		margin: 0 auto;
		padding: 0 10px;
	}

    .whf_bottom_Bbox {
        flex-direction: column;
        gap: 50px;
        text-align: center;
		padding-top: 30px;
    }

    .whf_Bbox_left { 
		justify-content: space-around;
		gap: 50px; 
	}

    .whf_Bbox_right {
		flex-direction: column; /* °ø°£ ºÎÁ· ½Ã ¼¼·Î ¹èÄ¡ */
        align-items: center; /* ¼¼·Î ¹èÄ¡ ½Ã Áß¾Ó Á¤·Ä */
        gap: 50px;
    }

	.whf_link_group {
		gap: 10px;
	}

    .whf_info {
        text-align: center; /* ¸ð¹ÙÀÏ¿¡¼­´Â Áß¾Ó Á¤·Ä */
    }

    .whf_info_sns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
	.whf_main_conts {
		padding: 40px 0 30px;
	}

	.whf_bottom_Tbox {
		text-align: center;
		margin-bottom: 40px;
	}

    .whf_Bbox_left {
        gap: 20px;
    }

    .whf_main_foot {
        flex-direction: column;
        gap: 20px;
        padding: 0;
		border-top: 0;
    }
    
    .whf_foot_left {
		display: none;
        flex-direction: column;
        gap: 15px;
    }
    
    .whf_foot_backtotop {
        border-left: none;
		padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        justify-content: center;
    }

	.whf_Tbox_tlt {
		font-size: 20px;
		margin-bottom: 25px;
		letter-spacing: 0.5px;
	}

	.whf_newsletter_form {
		display: flex;
		justify-content: center;
		width: 100%;
		margin: 0 auto 20px;
		border: 1px solid rgba(255, 255, 255, 0.3);
	}

	.whf_btn_signup {
		padding: 0 10px;
	}
}




/* Ãß¸ð ÆäÀÌÁö ½ºÅ¸ÀÏ ÄÁÅ×ÀÌ³Ê */
.whf_photo {
    width: 100%;
	max-width: 400px;
    background: linear-gradient(135deg, #111d50 0%, #000 100%);
    border: 1px solid #000;
    overflow: hidden;
    position: relative;
    padding: 25px 0 0 25px;
    margin: 0; /* Áß¾Ó Á¤·Ä ÇØÁ¦ */
}

.whf_photo_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* ÀÌ¹ÌÁö°¡ ¹Ù´Ú¿¡ ºÙµµ·Ï Á¤·Ä */    
}

/* ÁÂÃø ÄÜÅÙÃ÷ ¿µ¿ª */
.whf_photo_txt {
    flex: 1;
    padding-bottom: 25px; /* ÇÏ´Ü ¿©¹é */
    z-index: 2;
}

.whf_photo_title {
    color: #fff; 
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
	display: flex;
    justify-content: space-between;
}

.whf_photo_title a {
	color: #0d132d; 
	text-decoration: none;
    margin-right: 20px;
	padding: 5px 10px;
	background: #FFF;
	font-size: 13px;
	font-weight: 400;
}

.whf_photo_list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whf_photo_list li a {
    display: block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

/* ¹öÆ° ³» ¸®½ºÆ® µµÆ® ¹× È­»ìÇ¥ °¡»ó¿ä¼Ò */
.whf_photo_list li a::before {
    content: '¡¤';
    margin-right: 8px;
    color: #fff;
}

.whf_photo_list li a::after {
    content: '¢º';
    position: absolute;
    right: 15px;
    font-size: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.whf_photo_list li a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ¿ìÃø ÀÌ¹ÌÁö ¿µ¿ª */
.whf_photo_img {
    width: 100px; /* ÀÎ¹° »çÁø ³Êºñ */
    display: flex;
    align-items: flex-end;
}

.whf_photo_img img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%); /* ¾à°£ÀÇ Â÷ºÐÇÑ Åæ Á¶Á¤ */
}

/* ¹ÝÀÀÇü ´ëÀÀ */
@media (max-width: 768px) {
    .whf_photo_inner {
        align-items: center;
        padding: 0;
    }

	.whf_photo {
		max-width: 100%;
		padding: 15px 0 0 15px;
	}
    
    .whf_photo_txt {
        width: 100%;
        text-align: center;
		padding-bottom: 0;
    }

	.whf_photo_title a {
		margin-right: 15px;
	}
    
    .whf_photo_list li a {
        text-align: left;
    }
    
    .whf_photo_img {
        width: 100px;
        margin-top: 20px;
    }
}