@charset "utf-8";
/* CSS Document */

:root{
  --bg:#f6f7fb;
  --surface:#ffffff;
  --surface-2:#f4f6fa;
  --text:#14171f;
  --muted:#5b667a;
  --brand:#3ad1b6;
  --brand-2:#6b7cff;
  --brand-3:#ff6fba;
  --border:#dde1ea;
  --card: #ffffff;
  --field-bg: #f3f8fc;
  --field-border: #d8e8f5;
  --radius-card: 24px;
  --radius-pill: 9999px;
	
}
	
	

html,body{height:100%}
body{
  margin:0;
  font-family: Pretendard, system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans KR", Arial, sans-serif;
  color:var(--text);
  background-color: #fff;
  line-height:1.6;
}

@media (max-width: 960px){
  body{
    background-image:
      radial-gradient(600px 220px at 10% -10%, rgba(58,209,182,.18), transparent 60%),
      linear-gradient(180deg, #eef1f7 0, #f6f7fb 100%);
  }
}




:root{ --header-h: 64px; }


.site-header{
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 1000;
  background: transparent;             
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;

}


.site-header.is-scrolled{
  background: rgba(255,255,255,.85); 
  border-color: var(--border, #dde1ea);
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
}


main{ padding-top: var(--header-h); }



.site-nav .nav-toggle { display: none; }
a, button { cursor: pointer; }
@media (max-width: 960px){
  .site-nav { position: relative; z-index: 10; }
  .site-nav .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
  }
}

	

.site-header{
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 1000;
  background: transparent;               
  border-bottom: 1px solid transparent;
  transition: background-color .25s, border-color .25s, box-shadow .25s;
  
}


.site-header::before{
  content:"";
  position: absolute;         
  left: 50%;                   
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  height: 100%;              
  border-bottom: 1px solid transparent;
  background: transparent;  
  box-shadow: none;
  pointer-events: none;
  z-index: -1;  
  transition: background-color .25s, border-color .25s, box-shadow .25s;
}


.site-header.is-scrolled::before{
  background: rgba(255,255,255,.85);   
  border-color: var(--border, #dde1ea);
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}

	
.container{max-width:1200px; margin:0 auto;}
.skip{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:12px; top:12px; width:auto; height:auto; background:#000; color:#fff; padding:8px 12px; border-radius:8px}

.site-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0;
}
.logo{ align-items:center; gap:10px; font-weight:700; color:var(--text); text-decoration:none}
.logo-text{font-size:30px}

.site-nav .nav-toggle{
  display:none;
  background:var(--brand); border:1px solid var(--border); color:var(--text);
  padding:8px 12px; border-radius:50px;
  color: #fff;
}
.nav-list{display:flex; gap:18px; list-style:none; margin:0; padding:0}
.nav-list a{color:var(--text); text-decoration:none; opacity:.9}
.nav-list a.btn{opacity:1}

.btn{display:inline-block; padding:12px 18px; border-radius:999px; text-decoration:none; border:1px solid transparent; transition:.2s}
.btn--primary{background:var(--brand); color:#fff; font-weight:700; width: 100%; text-align: center; font-size: 18px;}
.btn--ghost{border-color:var(--border); color:var(--text)}
.btn--inverse{background:#fff; color:#111; font-weight:700}
.btn--link{color:var(--text); opacity:.8; text-decoration:underline; text-underline-offset:4px}

.hero{padding:50px 0 36px}
.grid{display:grid; gap:10px}
.grid--2{grid-template-columns: 1.1fr 1fr}
.grid--4{grid-template-columns: repeat(4, 1fr)}
@media (max-width: 1024px){
  .grid--3{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px){
  .site-nav{
    position: relative;
    z-index: 10;
  }
  .site-nav .nav-toggle{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
  }

  .grid--2, .grid--3{
    grid-template-columns: 1fr;
  }
  
  .nav-list{
    position: fixed;               
    top: var(--header-h, 64px);     
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    padding: 8px 10px;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15,23,42,.16);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav-list li a{
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }

  .nav-list.is-open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }


  body.is-nav-open{
    overflow: hidden;
    touch-action: none;
  }
}

/*  PC(769px~): 1~3��°�� ���� */
@media (min-width: 769px){
  #navMenu.nav-list > li:nth-child(n+5){
    display: none;
  }
}

/*  �����(~768px): 1~12��°������ ���� (13��°���� ����) */
@media (max-width: 768px){
  #navMenu.nav-list > li:nth-child(n+18){
    display: none;
  }
}
@media (max-width: 768px){
  /* �޴� ������ ���� ��ũ�� */
  #navMenu.nav-list.is-open{
    display: block;
    max-height: 70vh;       /* ȭ�� ������ 70%������ ��ħ */
    overflow-y: auto;       /* ���� ��ũ�� */
    -webkit-overflow-scrolling: touch; /* iOS �ε巯�� ��ũ�� */
    margin-top: 10px;
    padding: 6px 6;
    background: #fff; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); /* �ʿ� ������ ���� */
  }

  /* �޴� �׸� ��ġ ���� */
  #navMenu.nav-list .nav-item a{
    display: block;
    padding: 1px 12px;
  }
}

@media (max-width: 768px) and (any-hover: hover){
  #navMenu.nav-list .nav-item a:hover{
    background: rgba(107, 124, 255, .12);
    color: #2f3cff;
  }
}
.nav-list .m-only{
	border-top: 1px solid var(--field-border);
}

.hero-text h1{font-size: clamp(28px, 4vw + .5rem, 52px); line-height:1.15; margin:0 0 12px}
.muted{color:#000;}
.cta{display:flex; gap:10px; margin:18px 0 8px}
.hero-bullets{list-style:none; padding:0; margin:16px 0 0; display:flex; gap:7px; flex-wrap:wrap}
.hero-bullets li{background:rgba(255,255,255,.06); border:1px solid var(--border); padding:6px 10px; border-radius:999px}

@media (max-width: 960px){
  .hero-bullets li{
    font-size: 0.8rem;
	display: none;
  }
}

.hero-media .mockup{
  width:100%; height:360px; border-radius:var(--radius);
  background:
    radial-gradient(200px 140px at 30% 20%, rgba(106,224,207,.35), transparent 70%),
    radial-gradient(240px 160px at 80% 50%, rgba(154,168,240,.25), transparent 70%),
    linear-gradient(180deg, #161a24, #0f1219);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}

.section{padding:30px 0}
.section--alt{background:#fff;}
.section-head{margin-bottom:24px; background-image:" https://cancerok.speedgabia.com/site_test/img/bg_1.png";}
.section-head h2{margin:0 0 6px; font-size: clamp(28px, 2.2vw + .3rem, 38px)}

.card {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:20px; box-shadow:var(--shadow);
}
.card-icon{font-size:26px; margin-bottom:8px}
.cta-band{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  padding:40px 0;
  color: #fff;
}

.cta-band .container p{
	font-size:clamp(14px, 2.2vw + .3rem, 25px);
}
	



.media{ border:1px solid #c5c5c5; border-radius:20px; overflow:hidden; background:#fff; transition: box-shadow .3s, transform .3s, border-color .3s; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; margin: 0px; }
.media-link{text-align:center;  display:block; line-height:0; color: inherit; text-decoration: none;}  
.media-title{font-size: clamp(24px, 2.2vw + .3rem, 20px);}
.media img{
  width: 40%;
  height: 40%;
  display:inline-block;
  object-fit: contain; 
  text-align: center;
  padding-top: 12px;}
.media figcaption{
  padding:0 14px 12px 14px; line-height:1.5; text-decoration:none; text-align: left;;
}
.media figcaption a{
  color:var(--text);
  text-decoration: none; 
  font-size: clamp(20px, 2.0vw, 25px);
 
}
@media (hover: hover) and (pointer: fine){
.media:hover{box-shadow:0 12px 18px rgba(0,0,0,.08); transform: translateY(-2px) scale(1.03); transition:.3s;  border-color: var(--brand-2);}
}

.media figcaption .media-desc{
  line-height: 1.55;
  color: #5d6b7b; 
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;    
  -webkit-box-orient: vertical;
  overflow: hidden;
}


@media (prefers-reduced-motion: reduce){
  .privacy1{ transition:none }
}

	

.form_box .form_area{
  background: var(--card);
  border: 1px solid var(--brand);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(2,132,199,.15);
  padding: clamp(16px, 3.2vw, 28px);
}


.form_list{ list-style:none; margin:0; padding:0; display:grid; gap:12px; }


.form_list input[type="text"],
.form_list input[type="tel"],
.form_list select{
  width:100%;
  height: 50px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--field-border);
  background: var(--field-bg);
  color: var(--text);
  font-size: 16px;
  outline: none;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.form_list input::placeholder{ color:#9aa7b4; }

.form_list input:focus,
.form_list select:focus{
  border-color: var(--brand-dark);
  background:#fff;
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}


.name_wrap{
  display:flex; gap:10px; align-items:center; align-items: stretch;  
}
.name_wrap .form-name{ flex:1; }


.sex_cover{ display:flex; gap:8px; }
.sex_box{ position:relative; }
.sex_box input{ position:absolute; inset:0; opacity:0; pointer-events:none; }
.sex_box label{
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 56px; height: 50px; padding: 0 14px;
  border-radius: var(--radius-pill);
  background:#f3f5f7; color:#94a3b8; font-weight:700; cursor:pointer;
  border:1px solid #e5edf5; user-select:none;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.sex_box input:checked + label{
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color:var(--brand); border-color:transparent;
  box-shadow: 0 6px 18px rgba(2,132,199,.26);
}


.birth_wrap .form-birth{ width:100%; }


.tel_wrap{
  display:grid; grid-template-columns: 110px 1fr; gap:8px;
}
#mobile1{
  appearance:none; -webkit-appearance:none; -moz-appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7c8aa0 50%),
    linear-gradient(135deg, #7c8aa0 50%, transparent 50%),
    linear-gradient(to bottom, transparent 0%, transparent 100%);
  background-position:
    calc(100% - 18px) 19px, calc(100% - 12px) 19px, 100% 0;
  background-size:6px 6px, 6px 6px, 2.5rem 2.5rem;
  background-repeat:no-repeat;
  padding-right:42px;
}


.privacy_wrap{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
  color: var(--text);
}
.privacy_wrap input[type="checkbox"]{
  width:16px; height:16px; accent-color: var(--brand-dark);
}
.privacy_label{ color: var(--text); }
.privacy1{
  border:none; background:none; color:#111827; cursor:pointer;
  padding:4px 6px; border-radius:10px;
  text-decoration:underline; text-underline-offset:3px;
}
.privacy1:focus-visible{ outline:2px solid var(--brand-dark); }


.form_item .btn_agree {
  
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;        
  color: inherit;
  outline: none;        
  appearance: none;     
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}



.cta{
  margin-top: 12px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.btn{ border-radius: var(--radius-pill); } 


	@media (max-width: 520px){
  .form_list input[type="text"],
  .form_list input[type="tel"],
  .form_list select{
    height: 56px;
    line-height: 56px;
  }
  .name_wrap .form-name{
    height: 52px; 
    min-height: 52px;
    line-height: 52px;
  }
}


.sex_cover{ 
  flex: 0 0 auto; 
}
.sex_box label{
  height: 40px; 
  line-height: 40px;
}
	
	
.band-inner{display:flex; align-items:center; justify-content:space-between; gap:18px}
.band-inner h2{color:#fff; margin:0; font-size:clamp(16px, 2.2vw + .3rem, 28px); }
.band-inner .btn--inverse{background:#101217; color:#fff}

.form{display:grid; gap:12px; max-width:640px}
.form label{display:grid; gap:6px}
.form input, .form textarea{
  background:var(--surface-2); color:var(--text);
  border:1px solid var(--border); border-radius:12px; padding:12px 14px; outline:none;
}
.form input:focus, .form textarea:focus{border-color: var(--brand)}


.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:12px}
.footer-links{list-style:none; display:flex; gap:14px; margin:0; padding:0}
.footer-links a{color:var(--muted); text-decoration:none}
	
	


/* ===========================
   ���� ����� ���� ����
   (bohum_img / bohumSwiper ����)
   =========================== */
.bohum_img {
  padding: 10px 0 40px;
  width: 100%;
  background-color: #fff;
}

.bohum_img .bohumSwiper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.bohum_img .bohumSwiper h2{
	font-size: clamp(28px, 2.2vw + .3rem, 38px);
    font-weight: 600;
    color: #1a1a1a;
    position: relative;
	margin-top: 0px;
}

/* �ΰ� ����Ʈ�� �׸���� ��ġ */
.bohum_img .bohumSwiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* PC: 4�� */
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;

  /* Swiper�� �ִ� �����̵� �̵�/�ִϸ��̼� ���� */
  transform: none !important;
  transition: none !important;
  width: 100% !important;
}

/* �� �ΰ� ī�� */
.bohum_img .bohumSwiper .swiper-slide {
  width: 100% !important;
  margin: 0 !important;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;
  background: #ffffff;
  border-radius: 9999px;
  border: 1px solid #dde1ea;
  box-shadow: 0 4px 10px rgba(0,0,0,.03);

  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	  opacity: 1 !important;         /* ����� 1�� ���� */
  filter: none !important;       /* �帲/ȸ���� �� ȿ�� ���� */
  transform: none !important;    /* ������/3D��ȯ ���� �� ���� */
  image-rendering: auto;
}


/* �ΰ� �̹��� */
.bohum_img .bohumSwiper .swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;

}

/* 1024px ���� ? 3�� */
@media (max-width: 1024px) {
  .bohum_img .bohumSwiper .swiper-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 768px ���� ? 2�� */
@media (max-width: 768px) {
  .bohum_img .bohumSwiper .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 480px ���� ? 1�� */
@media (max-width: 480px) {
  .bohum_img .bohumSwiper .swiper-wrapper {
    grid-template-columns: 1fr;
  }
}






.container{}


@media (max-width: 960px){
  .container{ padding-inline: 24px; }
}


@media (max-width: 600px){
  .container{ padding-inline: 20px; }
}


@media (max-width: 430px){
  .container{ padding-inline: 20px; }
}


@media (max-width: 960px){ .bohumSwiper{ padding-inline:24px } }
@media (max-width: 600px){ .bohumSwiper{ padding-inline:20px } }
@media (max-width: 430px){ .bohumSwiper{ padding-inline:20px } }	
	
	
	
	
	
.qna_wrap {padding: 20px 0; background-color: #fff;}  
.qna_wrap .top_box { margin-bottom: 20px;}
.qna_wrap .top_box h2 .qna_btn{color: inherit !important; text-decoration: none; }
.qna_wrap .top_box .btn_wrap { width: 100%; display: flex; justify-content: flex-end;}
.qna_wrap .top_box .btn_wrap .qna_btn { position: relative; font-size: 18px; font-weight: 600; padding-right: 15px;  color: #707070; transition: all .3s;}
.qna_wrap .top_box .btn_wrap .qna_btn::after { content: '>'; position:absolute; top: 42%; right: 0; transform: translate(0, -50%); color: #707070; font-size: 16px; transition: all .3s;}
.qna_wrap .top_box .btn_wrap .qna_btn:hover{ color: inherit;}
.qna_wrap .top_box .btn_wrap .qna_btn:hover::after{ color: inherit;}


.qna_wrap .inner{ max-width: 960px; margin: 0 auto; padding: 0 20px;}
.qna_wrap .inner .top_box .title_wrap h2{ font-size: clamp(28px, 2.2vw + .3rem, 38px); margin: 0px;}

.qna_wrap .bottom_box ul li{background-color: #F0F2F6; border-radius: 30px;}

.qna_wrap .bottom_box ul li .top { height: 90px; padding: 30px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.qna_wrap .bottom_box ul li .top .text_wrap{ display:flex; align-items: center; gap: 10px;}
.qna_wrap .bottom_box ul li .top i{position: relative; width: 20px; height: 20px; display: block; transition: transform .3s ease; flex-shrink: 0;}
.qna_wrap .bottom_box ul li .top i::before,
.qna_wrap .bottom_box ul li .top i::after {content: ''; position: absolute; background-color: black;}
.qna_wrap .bottom_box ul li .top i::before {top: 50%; left: 0; width: 100%; height: 3px; transform: translateY(-50%); }
.qna_wrap .bottom_box ul li .top i::after {top: 0; left: 50%; width: 3px; height: 100%; transform: translateX(-50%); }
.qna_wrap .bottom_box ul li .top.active i{transform: rotate(45deg);}

.qna_wrap .bottom_box ul li .top span {width: 30px; height: 30px;  border-radius: 100%; font-weight: 700; background: var(--brand-2); color: #fff; display: flex; align-items:center; justify-content: center; transition: all .3s; flex-shrink: 0;}
.qna_wrap .bottom_box ul li .top.active span { background-color: var(--brand); color: #fff;}

.qna_wrap .bottom_box ul li .top h3{ position: relative; font-size: 20px; font-weight: 700; line-height: 1.6;}
.qna_wrap .bottom_box ul li .top h3::after{ content: ''; position:absolute; }
.qna_wrap .bottom_box ul {display: flex; flex-flow: column; gap: 10px; list-style: none; padding-left: 0px;}

.qna_wrap .bottom_box ul li .bottom { padding: 20px 30px; border-top: 1px solid rgb(230, 230, 230);}
.qna_wrap .bottom_box ul li .bottom h3 {font-size: 20px; line-height: 1.6;}
.qna_wrap .bottom_box ul li .bottom .text_wrap p {font-size: 20px; line-height: 1.6;}








@media (min-width: 1200px){
  .qna_wrap .inner{ max-width: 1120px; }
 
}


@media (max-width: 959px){
  .qna_wrap .inner{ max-width: none; padding: 0 16px; }
  .qna_wrap .bottom_box ul{ max-width: none; } 
}
@media (max-width: 586px){
  .qna_wrap .inner{ padding: 0 14px; }
}
	

@media (max-width: 640px){


  .qna_wrap{ padding: 20px 0; }


  .qna_wrap .top_box{ margin-bottom: 12px; padding: 12px 8px; }
  .qna_wrap .top_box .btn_wrap .qna_btn{
    font-size: 14px; padding-right: 12px;
  }
  .qna_wrap .top_box .btn_wrap .qna_btn::after{
    font-size: 14px; top: 50%;
  }


  .qna_wrap .inner{ padding: 0 12px; }


  .qna_wrap .bottom_box ul{ gap: 8px; }
  .qna_wrap .bottom_box ul li{
    border-radius: 16px; 
    background-color: #F5F7FA; 
  }


  .qna_wrap .bottom_box ul li .top{
    padding: 20px;          

  }
  .qna_wrap .bottom_box ul li .top .text_wrap{ gap: 8px; }


  .qna_wrap .bottom_box ul li .top i{
    width: 18px; height: 18px;
  }
  .qna_wrap .bottom_box ul li .top i::before{ height: 2px; }
  .qna_wrap .bottom_box ul li .top i::after{  width: 2px; }

  .qna_wrap .bottom_box ul li .top span{
    width: 24px; height: 24px; font-size: 12px;
  }

  .qna_wrap .bottom_box ul li .top h3{
    font-size: 16px; line-height: 1.4;
  }
  .qna_wrap .bottom_box ul li .top h3 p{ margin: 0; font-size: 1.1rem; }

  .qna_wrap .bottom_box ul li .bottom{
    padding: 20px;             
    border-top: 1px solid #E8EBF0;
  }
  .qna_wrap .bottom_box ul li .bottom h3{
    font-size: 14px; line-height: 1.6;
  }
  .qna_wrap .bottom_box ul li .bottom h3 p{ margin: 0; }
}


@media (min-width: 641px) and (max-width: 959px){
  .qna_wrap{ padding: 30px 0; }
  .qna_wrap .top_box{ margin-bottom: 16px; padding: 16px; }
  .qna_wrap .bottom_box ul li{ border-radius: 20px; }
  .qna_wrap .bottom_box ul li .top{ padding: 12px 14px; }
  .qna_wrap .bottom_box ul li .top h3{ font-size: 18px; }
  .qna_wrap .bottom_box ul li .bottom{ padding: 14px; }
  .qna_wrap .bottom_box ul li .bottom h3{ font-size: 16px; }
} .qna_wrap .bottom_box ul li .bottom .text_wrap p{ font-size: 18px; font-weight: 300; }
	



.sc_con2{ background:#f0f2f6; padding:40px 0 80px; overflow:hidden; }
.sc_con2 .inner{ max-width:1200px; margin:0 auto; padding:0 20px; }
.sc_con2 .inner .title_wrap{ margin-bottom:clamp(20px,4vw,50px); }
.sc_con2 .inner .title_wrap h2{ font-size:clamp(28px, 2.2vw + .3rem, 38px); line-height:1.25; }


.sc_con2 .sc2_swiper{ max-width:1120px; margin:0 auto; }
.sc_con2 .sc2_swiper.swiper{ overflow:visible; }
.sc_con2 .swiper-slide{ position:relative; height:clamp(220px,28vw,320px); }
.sc_con2 .swiper-slide > a{
  position:absolute; inset:0; border-radius:28px; overflow:hidden;
  display:flex; flex-direction:column; gap:8px;
  padding:clamp(20px,3.6vw,40px) clamp(16px,2.6vw,28px);
  text-decoration:none;
}


.sc_con2 .inner ul li .title_box h2{
  color:#fff; font-weight:800; line-height:1.35; margin:2px 0 0;
  font-size:clamp(16px,2.4vw,22px);
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.sc_con2 .inner ul li .title_box p{
  color:#fff; margin:0; font-size:clamp(12px,2vw,16px); opacity:.95;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

.sc_con2 .inner ul li:nth-child(3n + 1) > a{
  background-color: var(--brandColor, #1976d2);
  /* background-image:url('/site_test/images/sc2_bg1.png'); */
  background-repeat:no-repeat;
  background-size:clamp(120px,22vw,240px) auto;
  background-position:right clamp(-60px,-6vw,-12px) bottom clamp(-60px,-6vw,-12px);
}
.sc_con2 .inner ul li:nth-child(3n + 2) > a{
  background-color: var(--brandColor2, #6a5acd);
  /* background-image:url('/site_test/images/sc2_bg2.png'); */
  background-repeat:no-repeat;
  background-size:clamp(120px,22vw,240px) auto;
  background-position:right clamp(-60px,-6vw,-12px) bottom clamp(-60px,-6vw,-12px);
}
.sc_con2 .inner ul li:nth-child(3n) > a{
  background-color: var(--brandColor3, #26a69a);
  /* background-image:url('/site_test/images/sc2_bg3.png'); */
  background-repeat:no-repeat;
  background-size:clamp(120px,22vw,240px) auto;
  background-position:right clamp(-60px,-6vw,-12px) bottom clamp(-60px,-6vw,-12px);
}



.sc_con2 .inner ul li img{
  position:absolute; right:clamp(28px,4vw,50px); bottom:clamp(30px,4vw,65px);
  width:clamp(80px,11vw,110px); transition:transform .3s;
}
.sc_con2 .inner ul li a:hover img{ transform:scale(1.03); }


.sc_con2 .inner .swiper-button-prev,
.sc_con2 .inner .swiper-button-next{
  width:50px; height:50px; border-radius:50%;
  background:#fff; box-shadow:1px 3px 9px -1px #3333339c;
}
.sc_con2 .inner .swiper-button-prev:after,
.sc_con2 .inner .swiper-button-next:after{ font-size:20px; color:#707070; }
@media (max-width:586px){
  .sc_con2 .inner .swiper-button-prev,
  .sc_con2 .inner .swiper-button-next{ display:none; }
}




.sc_con2 .swiper-slide{
  transition: transform .38s ease, opacity .38s ease;
  transform: scale(.92);
  opacity: .55;
  will-change: transform, opacity;
}
.sc_con2 .swiper-slide.swiper-slide-active{
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
.sc_con2 .swiper-slide.swiper-slide-prev,
.sc_con2 .swiper-slide.swiper-slide-next{
  transform: scale(.97);
  opacity: .85;
  z-index: 1;
}


.sc_con2 .sc2_swiper .swiper-wrapper{
  display:flex;      
  align-items:stretch;
  padding:0; margin:0; 
  list-style:none;
}


.sc_con2{ overflow:visible; } 
.sc_con2 .sc2_swiper.swiper{ overflow:visible; }










.sc_board .board_list {overflow-y: hidden !important;}

.sc_board {
  padding: 60px 0;
  background-color: #f9f9f9; 
}

.sc_board .inner {
  max-width: 1080px;
  margin: 0 auto; 
}

.sc_board .headline_area {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  margin-bottom: 30px; 
  border-bottom: 2px solid #333;
  padding-bottom: 15px;
  flex-direction: none;
}

.sc_board .headline_area .headline {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
}

.sc_board .headline_area .btn_more_headline {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  transition: background-color 0.2s, color 0.2s;
}

.sc_board .headline_area .btn_more_headline:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.sc_board .board_list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 250px;
  overflow-y: auto;
}

.sc_board .board_item {
  border-bottom: 1px solid #eee;
}

.sc_board .board_item:last-child {
  border-bottom: none;
}

.sc_board .board_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s;
}

.sc_board .board_item a:hover {
  background-color: #f0f0f0;
}

.sc_board .board_item .title {
  font-size: 1rem;
  font-weight: 500;
  margin-right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc_board .board_item .date {
  font-size: 0.85rem;
  color: #777;
  flex-shrink: 0; 
}

.sc_board .no_posts {
  text-align: center;
  padding: 40px 0;
  color: #777;
  font-size: 1rem;
}


@media (max-width: 768px) {
  .sc_board {
    padding: 40px 0;
  }
  .sc_board .headline_area .headline {
    font-size: 1.5rem;
  }
  .sc_board .board_item a {
    padding: 12px 5px;
  }
  .sc_board .board_item .title {
    font-size: 0.95rem;
  }
  .sc_board .board_item .date {
    font-size: 0.8rem;
  }
  
}


.sc_con2 .swiper-slide {
  transition: transform .38s ease, opacity .38s ease, box-shadow .38s ease;
  transform: scale(.92);
  opacity: .55;
  will-change: transform, opacity;
}


.sc_con2 .swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}


.sc_con2 .swiper-slide.swiper-slide-next,
.sc_con2 .swiper-slide.swiper-slide-prev {
  transform: scale(.97);
  opacity: .85;
  z-index: 1;
}


@media (min-width: 1024px){
  .sc_con2 .swiper-slide { transform-origin: center center; }
}
.sc_con2 .sc2_swiper { cursor: grab; }
.sc_con2 .sc2_swiper:active { cursor: grabbing; }
.sc_con2 .swiper-slide {
  transition: transform .38s ease, opacity .38s ease, box-shadow .38s ease;
  transform: scale(.92);
  opacity: .55;
  will-change: transform, opacity;
}


.sc_con2 .swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.sc_con2 .swiper-slide.swiper-slide-next,
.sc_con2 .swiper-slide.swiper-slide-prev {
  transform: scale(.97);
  opacity: .85;
  z-index: 1;
}

@media (min-width: 1024px){
  .sc_con2 .swiper-slide { transform-origin: center center; }
}

.sc_con2 .sc2_swiper { cursor: grab; }
.sc_con2 .sc2_swiper:active { cursor: grabbing; }

.bohumSwiper .swiper-slide{
  --scale: .9;
  --opacity: .55;
  transform: scale(var(--scale));
  opacity: var(--opacity);
  transition: transform .35s ease, opacity .35s ease;
  will-change: transform, opacity;
}


.bohumSwiper .swiper-slide.swiper-slide-active{
  --scale: 1;
  --opacity: 1;
}


.bohumSwiper{
  padding: 10px 0;
}
	

	


.sc_board_ex {
  padding: 20px 0;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.sc_board_ex .inner {
  max-width: 1120px;
 
  margin: 0 auto;
  padding: 0px 20px;
}

.sc_board_ex .headline_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #3ad1b6;
}

.sc_board_ex .headline_area .headline {
  font-size: clamp(28px, 2.2vw + .3rem, 38px);
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
}

.sc_board_ex .headline_area .btn_more_headline {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  transition: background-color 0.2s, color 0.2s;
}

.sc_board_ex .headline_area .btn_more_headline:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}


.headline_area .btn_wrap .qna_btn{
  position: relative;
  font-size: 18px;
  font-weight: 600;
  padding-right: 15px;
  color: #707070;
  text-decoration: none;
  transition: all .3s;
}

.headline_area .headline .qna_btn{color: inherit !important; text-decoration: none; }

.headline_area .btn_wrap .qna_btn::after{
  content: '>';
  position: absolute;
  top: 42%;
  right: 0;
  transform: translate(0, -50%);
  color: #707070;
  font-size: 16px;
  transition: all .3s;
}

.headline_area .btn_wrap .qna_btn:hover{
  color: inherit;
}

.headline_area .btn_wrap .qna_btn:hover::after{
  color: inherit;
}




.board_ex_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.board_ex_item {
  margin-bottom: 15px;
  border-radius: 10px;
  background-color: #f8f9fa;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.board_ex_item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.board_ex_header {
  width: 100%;
}

.board_ex_title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.board_ex_title:hover {
  background-color: #edf2f7;
}

.board_ex_title h2.ex_title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2d3748;
  flex: 1;
  margin: 0;
  margin-right: 20px;
}

.board_ex_title .ex_date {
  font-size: 0.9rem;
  color: #718096;
  margin-right: 15px;
}

.board_ex_title .ex_arrow {
  font-size: 0.9rem;
  color: #718096;
  transition: transform 0.3s ease;
}

.board_ex_title.active .ex_arrow {
  transform: rotate(180deg);
  color: #2271b1;
}

.board_ex_content {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.content_inner {
  padding: 25px;
  line-height: 1.7;
  color: #4a5568;
  font-size: 1rem;
}

.content_actions {
  padding: 15px 25px;
  background-color: #f8f9fa;
  border-top: 1px solid #e2e8f0;
  text-align: right;
}

.content_actions .btn_edit {
  display: inline-block;
  padding: 8px 16px;
  background-color: #2271b1;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.content_actions .btn_edit:hover {
  background-color: #135e96;
}

/* 반응???��???*/
@media (max-width: 768px) {
  .sc_board_ex {
    padding: 30px 0;
  }
  
  .sc_board_ex .inner {
    padding: 0 20px;
  }
  
  .sc_board_ex .headline_area .headline {
    font-size: 1.6rem;
  }
  
  .board_ex_title {
    padding: 15px 20px;
  }
  
  .board_ex_title .ex_title {
    font-size: 1rem;
  }
  
  .content_inner {
    padding: 20px;
  }
}



.ex_pagination {
  margin-top: 30px;
  text-align: center;
}

.ex_pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 8px;
}

.ex_pagination-link {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #4a5568;
  border-radius: 6px;
  transition: all 0.2s ease;
  background-color: #ffffff;
}

.ex_pagination-link:hover {
  background-color: #edf2f7;
  color: #2271b1;
  border-color: #2271b1;
}

.ex_pagination-link.active {
  background-color: #2271b1;
  color: #ffffff;
  border-color: #2271b1;
}

.ex_no_posts {
  text-align: center;
  padding: 40px 0;
  color: #718096;
  font-size: 1.1rem;
}

/* 컨텐�??��???추�? */
.content_inner h3.content-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin: 1.5em 0 0.8em;
  padding-bottom: 0.3em;
  border-bottom: 2px solid #e2e8f0;
  background-color: #ffffff;
  background: #ffffff;
}
.content_inner h3.content-heading:first-child {
  margin-top: 0;
}

.content_inner ul.content-list {
  list-style: none;
  padding-left: 1.5em;
  margin: 0.5em 0 1em;
}

.content_inner ul.content-list li {
  position: relative;
  padding: 0.3em 0;
  line-height: 1.5;
}

.content_inner ul.content-list li::before {
  content: "??;
  position: absolute;
  left: -1em;
  color: #2271b1;
}

.content_inner ul.content-list li strong,
.content_inner h3.content-heading strong {
  font-weight: 700;
}

.content_inner .html-content {
  margin: 1em 0;
  line-height: 1.6;
}

.content_inner .html-content h1,
.content_inner .html-content h2,
.content_inner .html-content h3,
.content_inner .html-content h4,
.content_inner .html-content h5,
.content_inner .html-content h6 {
  margin: 1em 0 0.5em;
  color: #2d3748;
  font-weight: 600;
}

.content_inner .html-content p {
  margin: 0.8em 0;
}

.content_inner .html-content ul,
.content_inner .html-content ol {
  padding-left: 2em;
  margin: 0.8em 0;
}

.content_inner .html-content ul li,
.content_inner .html-content ol li {
  margin: 0.3em 0;
  position: static;
}

.content_inner .html-content ul li::before {
  content: none;
}

.content_inner .html-content a {
  color: #2271b1;
  text-decoration: underline;
}

.content_inner .html-content img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

.content_inner .html-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

.content_inner .html-content table th,
.content_inner .html-content table td {
  border: 1px solid #e2e8f0;
  padding: 8px;
  text-align: left;
}

.content_inner .html-content table th {
  background-color: #f7fafc;
}



.footer{
  width: 100%;
  color:#000000;
}
.footer_2{
  width: 100%;
  background-color: #f6f7fb;
  color: #000000;
  margin-bottom:0;
}

.footer_2 .footer_inner{
  max-width: 1120px;
  margin: 0 auto;

  padding: 10px var(--page-gutter, 20px);
  display: grid;
  gap: 6px;
  font-size: 16px;
  line-height: 1.2;
}

.footer .footer_info{
  max-width: 1120px;
  margin: 0 auto;

  padding: 10px var(--page-gutter, 20px);
  display: grid;
  gap: 6px;
  font-size: 1rem;
  line-height: 1.5;
	}

.footer .footer_info h3 { margin: 0px; padding-top: 20px;}

.footer .footer_info ul{
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.footer .footer_info ul li{
	list-style: none;
}


.footer_inner p{
  margin: 0;
  color: #000000;
}

/* 개인?�보 버튼 */
.footer_2 .privacy2{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 9999px;
  background: #333333;
  color:#fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
}


.footer_2 .popup_wrap{
  margin-top: 8px;
}
@media (max-width: 600px){
  .footer_inner{
    text-align: left;
    gap: 8px;
  }
  .footer_2 .popup_wrap{ justify-self: center; }
}


.pri_modal_wrap,
.pri_modal_wrap2,
.pri_modal_wrap3,
.modal_wrap{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none; 
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 23, 31, .45); 
  backdrop-filter: saturate(160%) blur(6px);
  -webkit-backdrop-filter: saturate(160%) blur(6px);
}

.pri_modal_wrap.is-open,
.pri_modal_wrap2.is-open,
.pri_modal_wrap3.is-open,
.modal_wrap.is-open{
  display: flex;
}
.pri_modal_inner,
.modal_inner{
  width: min(960px, 100%);
  max-height: min(82vh, 880px);
  background: #fff;
  border: 1px solid var(--border, #dde1ea);
  border-radius: var(--radius-card, 24px);
  box-shadow: 0 24px 48px rgba(0,0,0,.12);
  padding: clamp(16px, 2.2vw, 24px);
  overflow: hidden;
  position: relative;
  transform: translateY(8px) scale(.98);
  opacity: 0;
  animation: modal-in .18s ease-out forwards;
}

@keyframes modal-in{
  to{
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce){
  .pri_modal_inner,
  .modal_inner{ animation: none; transform:none; opacity:1; }
}


.pri_modal_txt,
.pri_modal_inner1,
.pri_modal_inner2,
.pri_modal_inner3,
.pri_modal_txt1,
.pri_modal_txt2,
.pri_modal_txt3{
  overflow: auto;
  max-height: calc(82vh - 72px);
  padding-right: 4px;
}


.pri_modal_txt h3,
.pri_modal_inner1 h3,
.pri_modal_inner2 h3,
.pri_modal_inner3 h3{
  margin: 0 0 12px;
  font-size: clamp(18px, 1.6vw + .2rem, 22px);
  color: var(--text, #14171f);
}

.pri_modal_txt p,
.pri_modal_txt1 p,
.pri_modal_txt2 p,
.pri_modal_txt3 p{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333a48;
}


.agree_close,
.iframe_src_close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  border: 1px solid var(--border, #dde1ea);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s ease, border-color .2s ease, transform .08s ease;
}

.agree_close:hover,
.iframe_src_close:hover{
  background: #f8fafc;
  border-color: #cfd6e3;
}

.agree_close:active,
.iframe_src_close:active{ transform: translateY(1px) }


.agree_close > div,
.iframe_src_close > div{
  position: absolute;
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
}
.agree_close > div:first-child,
.iframe_src_close > div:first-child{ transform: rotate(45deg) }
.agree_close > div:last-child,
.iframe_src_close > div:last-child{ transform: rotate(-45deg) }
.modal_inner .pri_modal_txt{ padding: 0; }
.modal_inner{
  width: min(1000px, 100%);
  max-height: min(88vh, 960px);
}

@media (max-width: 600px){
  .pri_modal_inner,
  .modal_inner{
    padding: 16px 14px 18px;
    border-radius: 18px;
  }
  .agree_close,
  .iframe_src_close{
    top: 10px; right: 10px;
    width: 36px; height: 36px;
  }
}

body.is-modal-open{
  overflow: hidden;
  touch-action: none;
}

.pri_modal_txt::-webkit-scrollbar,
.pri_modal_txt1::-webkit-scrollbar,
.pri_modal_txt2::-webkit-scrollbar,
.pri_modal_txt3::-webkit-scrollbar{
  width: 8px;
}
.pri_modal_txt::-webkit-scrollbar-thumb,
.pri_modal_txt1::-webkit-scrollbar-thumb,
.pri_modal_txt2::-webkit-scrollbar-thumb,
.pri_modal_txt3::-webkit-scrollbar-thumb{
  background: #d9dfeb;
  border-radius: 6px;
}	
	
	

/* =============================================================================
   showcase CSS
   ============================================================================= */

#showcase {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #14171f;
  --muted: #5b667a;
  --brand: #3ad1b6;
  --brand-2: #6b7cff;
  --border: #dde1ea;
  --card: #ffffff;
  --radius-card: 24px;
  --page-gutter: 20px;
}


#showcase {
  padding: 40px 0 30px;
  background: #fff;
}

#showcase .container {
  max-width: 1200px;
  margin: 0 auto;
  
}

#showcase .section-head {
  margin-bottom: 24px;
}

#showcase .section-head h2 {
  margin: 0 0 6px;
  font-size: clamp(28px, 2.2vw + .3rem, 38px);
}


#showcase .media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

#showcase .media-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

#showcase .media {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #c5c5c5;
  background: #fff;
  overflow: hidden;
  margin: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

#showcase .media img {
  display: block;
  width: 100%;
  max-width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 12px;
}

#showcase .media figcaption {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 140px;
  padding: 0;
  line-height: 1.5;
  text-align: left;
}

#showcase .media-title {
  display: block;
  font-size: 24px;
  line-height: 1.4;
  word-break: break-word;
  color: var(--text);
}

#showcase .media-title.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#showcase .media-desc {
  margin-top: 8px;
  line-height: 1.55;
  color: #5d6b7b;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  #showcase .media:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 18px rgba(0, 0, 0, .08);
    border-color: var(--brand-2);
  }
}

/* (max 1024px)
@media (max-width: 1024px) {
  #showcase .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  #showcase .media {
    padding: 18px;
  }

  #showcase .media img {
    max-width: 110px;
    height: 110px;
  }

  #showcase .media-title {
    font-size: 20px;
  }

  #showcase .media figcaption {
    min-height: 130px;
  }
}

/* (max 768px)  
@media (max-width: 768px) {
  #showcase .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  #showcase .media {
    padding: 16px;
  
  }

  #showcase .media img {
    max-width: 90px;
    height: 90px;
  }

  #showcase .media-title {
    font-size: 18px;
    line-height: 1.35;
  }

  #showcase .media figcaption {
    min-height: 110px;
  }

  #showcase .media-desc {
    -webkit-line-clamp: 2;
  }
}

/* (max 640px)  
@media (max-width: 640px) {
  #showcase .media-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #showcase .media {
    padding: 16px;
  
  }

  #showcase .media img {
    max-width: 100px;
    height: 100px;
  }

  #showcase .media-title {
    font-size: 20px;
    line-height: 1.4;
  }

  #showcase .media figcaption {
    min-height: auto;
  }

  #showcase .media-desc {
    -webkit-line-clamp: 3;
  }
}

============================================================================= 





	
	