@charset "UTF-8";


#finxAcademy input[type=number]::-webkit-inner-spin-button,
#finxAcademy input[type=number]::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
#finxAcademy input[type=number]{
    -moz-appearance: textfield;
}



.hidden{
    display: block !important;
    position: fixed !important;
    top: -500000px !important;
    margin: 0px !important;
    padding: 0px !important;
    width: 0px !important;
    height: 0px !important;
    text-indent: -50000px !important;
    font-size: 0px !important;
    line-height: 0px !important;
    border: 0px !important;
}
/*아카데미 시작 *******************************************/



/*아카데미 팝업 시작 ********************************/

#eduSystemPopup{
    display: none;
}
#eduSystemPopup .overlay-bg {
    width: 100%; height: 100vh;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,.2);
    z-index: 100;
}
#eduSystemPopup .eduPopup-content {
    width: 90%; min-width: 300px; max-width: 800px;
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    z-index: 105;
}
#eduSystemPopup .popup-inner {
    padding: 2rem 1rem;
}

#eduSystemPopup h2 {
    font-size: 1.4rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px; margin-bottom: 30px;
}
#eduSystemPopup .cont{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
#eduSystemPopup dl {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
}
#eduSystemPopup dt{
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #666;
    gap: 10px;
}
#eduSystemPopup dt strong {
    font-weight: 800;
    font-size: 1.6rem;
    min-width: 25px;
    justify-content: center;
    align-items: center;
}
#eduSystemPopup dl:first-of-type strong{
    color: #79ad4c;
}
#eduSystemPopup dl:nth-of-type(2) strong{
    color: #ad4c4c;
}
#eduSystemPopup dl:nth-of-type(3) strong{
    color: #4C5EAD;
}
#eduSystemPopup dl:nth-of-type(4) strong{
    color: #ad9b4c;
}
#eduSystemPopup dl:last-of-type strong{
    color: #ad4caa;
}

#eduSystemPopup dd{
    text-align: center;
    line-height: 1.2;
}
#eduSystemPopup #eduSystemClose_btn {
    background-color: #eee;
    border-radius: 0 0 10px 10px;
    text-align: center;
    border: 1px solid transparent;
    padding: 1rem 0;
    width: 100%;
    display: block;
    color: #666;
    font-weight: 700;
    font-size: .95rem;
}
#eduSystemPopup #eduSystemClose_btn:hover,
#eduSystemPopup #eduSystemClose_btn:active{
    background-color: #ddd;
}
    /*아카데미 팝업 끝 *********************************/



/*아카데미 소개 시작 *************************************/
.acInfo {
    line-height: 1.6;
}

.acInfo .hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(76, 94, 173, .85);
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}

.acInfo .right .hero-content {
    width: 90%;
    margin: 0 auto;
    opacity: 0;
}

.acInfo .hero-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.acInfo .right .hero-subtitle {
    font-size: 1.2rem;
    margin: 0 auto 20px;
    border: 1px solid #ddd;
    color: #ddd;
    background-color: rgba(255,255,255, .2);
    border-radius: 20px;
    padding: 5px 15px;
    font-weight: 600;
    max-width: 150px;
}

.acInfo .hero-description {
    font-size: 1rem;
    color: #fff;
    line-height: 1.8;
    opacity: 0.9;
    margin-top: 32px;
}

.acInfo .container {
    margin: 0 auto;
    padding: 100px 0;
}

.acInfo .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #191f28;
    text-align: center;
}

.acInfo .section-subtitle {
    font-size: 1rem;
    color: #6b7684;
    text-align: center;
    margin-bottom: 30px;
}

.acInfo .value-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.acInfo .value-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.acInfo .value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.acInfo .value-card:hover {
    border-color: rgba(76, 94, 173, 1);
    box-shadow: 0 8px 30px rgba(6, 95, 70, 0.1);
}

.acInfo .value-icon {
    width: 56px;
    height: 56px;
    background: rgba(76, 94, 173, .05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.acInfo .value-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #191f28;
}

.acInfo .value-description {
    font-size: 15px;
    color: #6b7684;
    line-height: 1.7;
    margin-bottom: 20px;
}

.acInfo .value-list {
    list-style: none;
    margin-top: 20px;
}

.acInfo .value-list li {
    padding-left: 20px;
    margin-bottom: 15px;
    position: relative;
    color: #191f28;
    font-size: 15px;
    line-height: 1.6;
}

.acInfo .value-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color:rgba(76, 94, 173, 1);
    font-weight: 700;
    font-size: 18px;
}

.acInfo .principle-section {
    background: #f8f9fa;
    padding: 100px 24px;
}

.acInfo .principle-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(30px);
}

.acInfo .principle-box.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.acInfo .principle-title {
    font-size: 28px;
    font-weight: 700;
    color: rgba(76, 94, 173, 1);
    margin-bottom: 24px;
    text-align: center;
}

.acInfo .principle-content {
    font-size: 18px;
    line-height: 1.8;
    color: #191f28;
    margin-bottom: 32px;
}

.acInfo .principle-items {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

.acInfo .principle-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.acInfo .principle-bullet {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(76, 94, 173, 1);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.acInfo .principle-text {
    font-size: .95rem;
    line-height: 1.6;
    color: #191f28;
}

.acInfo .principle-text strong{
    display: block;
    margin-bottom: 5px;
}
.acInfo .framework-section {
    background: white;
    padding: 100px 24px;
}

.acInfo .framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 50px auto;
}

.acInfo .framework-card {
    background: white;
    border: 3px solid rgba(76, 94, 173, 1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.acInfo .framework-card.visible {
    opacity: 1;
    transform: scale(1);
}

.acInfo .framework-card:hover {
    background: rgba(76, 94, 173, 1);
    transform: scale(1.05);
}

.acInfo .framework-card:hover .framework-label,
.acInfo .framework-card:hover .framework-title ,
.acInfo .framework-card:hover .framework-explain {
    color: #fff;
}

.acInfo .framework-label {
    font-size: 48px;
    font-weight: 700;
    color:rgba(76, 94, 173, 1);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.acInfo .framework-title {
    font-size: 18px;
    font-weight: 600;
    color: #191f28;
    transition: color 0.3s ease;
}

.acInfo .roadmap-section {
    background: #f8f9fa;
    padding: 100px 24px;
}

.acInfo .roadmap-container {
    margin: 0 auto 100px;
}

.acInfo .roadmap-steps {
    display: grid;
    gap: 32px;
    margin-top: 60px;
}

.acInfo .roadmap-step {
    display: flex;
    gap: 32px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateX(-30px);
}

.acInfo .roadmap-step.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.acInfo .roadmap-step:nth-child(even) {
    transform: translateX(30px);
}

.acInfo .roadmap-step:nth-child(even).visible {
    transform: translateX(0);
}

.acInfo .roadmap-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(76, 94, 173, 1);
    color: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.acInfo .roadmap-number-main {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.acInfo .roadmap-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.acInfo .roadmap-content p {
    font-size: 16px;
    color: #6b7684;
    line-height: 1.7;
}

.acInfo .cta-section {
    background: rgba(76, 94, 173, .85);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.acInfo .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.acInfo .cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.acInfo .cta-text {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.7;
}
/*아카데미 소개 긑 ***************************************/








#finxAcademy {
    width: 100%;
    background: #ffffff;
    position: relative;
}

#finxAcademy .container {
    width: 100%;
    margin: 0 auto;
}
#finxAcademy span.small{
    font-size: .85rem!important;
}
/* 배경 장식 */
#finxAcademy .bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

#finxAcademy .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    animation: float 25s infinite ease-in-out;
}

#finxAcademy .shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    right: -150px;
}

#finxAcademy .shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: 20%;
    left: -100px;
    animation-delay: 8s;
}

#finxAcademy .shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 60%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* 히어로 섹션 */
#finxAcademy .academy-hero {
    height: 45vh;
    padding-top: 70px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
#finxAcademy #acBigTab {
    display: none !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #b7b7b7;
    border-bottom: 1px solid #b7b7b7;
}
#finxAcademy #acBigTab li{
    width: 50%;
}
#finxAcademy #acBigTab li:first-of-type{
    border-right: 1px solid #b7b7b7;
}
#finxAcademy #acBigTab a{
    padding: 30px 0;
    text-align: center;
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
}
#finxAcademy #acBigTab a.on{
    color: var(--primary);
    font-weight: 800;
    background-color: rgba(102, 126, 234, 0.05);
}

#finxAcademy .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes overlayMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}

#finxAcademy .hero-content {
    height: 100%;
    text-align: center;
    color: #333;
    position: relative;
    z-index: 2;
    width: 100%;
}
#finxAcademy .acBannerSwiper{
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#finxAcademy .acBannerSwiper .hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
#finxAcademy .acBannerSwiper .swiper-wrapper{
    width: 100%;
}
#finxAcademy .acBannerSwiper .swiper-slide{
    margin: 0 auto;
    width: 100% !important; /* 추가: 화면 너비에 맞춤 */
    padding: 0 24px; /* 추가: 내부 컨텐츠에 여백 */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
#finxAcademy .acBannerSwiper .swiper-slide.one{
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
}
#finxAcademy .acBannerSwiper .swiper-slide.two{
    background: radial-gradient(circle, rgba(234, 203, 102, 0.3) 0%, transparent 70%);
}
#finxAcademy .acBannerSwiper .swiper-slide.three{
    background: radial-gradient(circle, rgba(183, 102, 234, 0.3) 0%, transparent 70%);
}
#finxAcademy .acBannerSwiper .hero-small {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 600;
    width: 90%;
    margin-bottom: 10px;
    max-width: 1200px;
}
#finxAcademy .acBannerSwiper .hero-cont{
    font-size: 2.8rem;
    text-align: right;
    line-height: 1.5;
    max-width: 1200px;
    margin-bottom: 5px;
    width: 90%;
    font-weight: 800;
}
#finxAcademy .acBannerSwiper .hero-sign {
    font-size: .95rem;
    font-weight: 600;
    font-style: italic;
    text-align: right;
    max-width: 1200px;
    width: 90%;
}
#finxAcademy .acBannerSwiper .swiper-slide.three .hero-cont{
    text-align: center;
}
#finxAcademy .acBannerSwiper .swiper-slide.three .hero-cont em{
    color: #4C5EAD;
    display: inline-block;
    margin-right: 5px;
}
#finxAcademy .acBannerSwiper .swiper-slide.three .hero-sign {
    text-align: center;
}
#finxAcademy .acBannerSwiper h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.2;
}

#finxAcademy .acBannerSwiper h1 em {
    font-style: italic;
    color: #006934;
    font-weight: 700;
    display: inline-block;
    margin-right: 5px;
}

#finxAcademy .acBannerSwiper .hero-subtitle {
    font-size: .9rem;
    font-weight: 500;
    opacity: 0.95;
}

/* 애니메이션 */
#finxAcademy .animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

#finxAcademy .delay-1 { animation-delay: 0.2s; }
#finxAcademy .delay-2 { animation-delay: 0.4s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#finxAcademy .scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#finxAcademy .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Our Story */
#finxAcademy .our-story-section {
    padding: 120px 0;
}

#finxAcademy .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

#finxAcademy .story-text h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #191919;
    letter-spacing: -1.5px;
}

#finxAcademy .story-description {
    font-size: 18px;
    line-height: 1.9;
    color: #4a5568;
}

#finxAcademy .story-description strong {
    color: #006934;
    font-weight: 700;
}

#finxAcademy .story-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#finxAcademy .stat-item {
    background: #ffffff;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#finxAcademy .stat-item:first-of-type{
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

#finxAcademy .stat-item:hover {
    transform: translateY(-8px);
}

#finxAcademy .stat-number {
    font-size: 1rem;
    font-weight: 400;
    color: #059669;
    margin-bottom: 16px;
    line-height: 1;
}

#finxAcademy .stat-number span {
    font-size: 1.5rem;
    font-weight: 900;
}

#finxAcademy .stat-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* Solution & Service */
#finxAcademy .solution-section {
    padding: 120px 0;
    background: #ffffff;
}

#finxAcademy .solution-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

#finxAcademy .solution-left {
    position: relative;
}

#finxAcademy .solution-image-area {
    height: 500px;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

#finxAcademy .solution-text {
    padding-left: 20px;
}

#finxAcademy .solution-logo {
    font-size: 48px;
    margin-bottom: 20px;
}

#finxAcademy .solution-text h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #191919;
    letter-spacing: -1.5px;
}

#finxAcademy .solution-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

#finxAcademy .solution-right {
    display: flex;
    flex-direction: column;
}

#finxAcademy .solution-card {
    gap: 20px;
    padding: calc(20px + 1.5rem) 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #b7b7b7;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#finxAcademy .solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #006934, #059669);
    transition: left 0.4s ease;
    z-index: 0;
}

#finxAcademy .solution-card:hover::before {
    left: 0;
}

#finxAcademy .solution-card:hover {
    border-color: #667eea;
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

#finxAcademy .solution-card:hover h4,
#finxAcademy .solution-card:hover p,
#finxAcademy .solution-card:hover .customer{
    color: #ffffff;
    position: relative;
    z-index: 1;
}

#finxAcademy .solution-card:hover .card-arrow {
    color: #ffffff;
    transform: translateX(5px);
}

#finxAcademy .solution-card h4 {
    font-size: 1.2rem;
    min-width: 240px;
    max-width: 240px;
    width: 240px;
    font-weight: 700;
    color: #191919;
    transition: color 0.3s ease;
}

#finxAcademy .solution-card p {
    font-size: .95rem;
    color: #6b7280;
    transition: color 0.3s ease;
}
#finxAcademy .solution-card span.customer{
    font-size: .9rem;
    font-weight: 400;
    color: #666;
}

/* Innovation */
#finxAcademy .innovation-section {
    padding: 120px 0;
    background: #fafafa;
}

#finxAcademy .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #191919;
    letter-spacing: -1.5px;
}

#finxAcademy .innovation-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 120px;
}

#finxAcademy .innovation-item.reverse {
    direction: rtl;
}

#finxAcademy .innovation-item.reverse > * {
    direction: ltr;
}

#finxAcademy .innovation-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #006934;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

#finxAcademy .innovation-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #191919;
}

#finxAcademy .innovation-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 32px;
}

#finxAcademy .learn-more {
    display: inline-block;
    color: #059669;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

#finxAcademy .learn-more:hover {
    transform: translateX(5px);
    color: #006934;
}

#finxAcademy .innovation-visual {
    background: #ffffff;
    border-radius: 28px;
    padding: 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

#finxAcademy .cycle-container {
    position: relative;
    width: 300px;
    height: 300px;
}

#finxAcademy .cycle-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

#finxAcademy .cycle-item.m {
    background: linear-gradient(135deg, #84fab0, #8fd3f4);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#finxAcademy .cycle-item.s {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.75s;
}

#finxAcademy .cycle-item.i {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

#finxAcademy .cycle-item.g {
    background: linear-gradient(135deg, #ffa751, #ffe259);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 2.25s;
}

#finxAcademy .cycle-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

#finxAcademy .growth-stages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

#finxAcademy .stage-bar {
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

#finxAcademy .stage-bar dt{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
#finxAcademy .stage-bar dd{
    display: flex; align-items: center;
    font-size: .9rem;
    line-height: 1.5;
}
#finxAcademy .stage-bar dd:not(:last-of-type):before{
    content: '‣'; font-size: 22px; color: #333; margin-right :10px;
}
#finxAcademy .stage-bar dd:last-of-type:before{
    content: '🔗'; font-size: 12px; color: #333; margin-right :10px;
}
#finxAcademy .stage-bar dd:last-of-type{
    margin-top: 5px;
    color: #666;
}
#finxAcademy .stage-bar:before{
    position: absolute; top: 50%; left: -16px; transform: translateY(-50%); color: rgba(102, 102, 102, 0.6);
    font-weight: 800; font-size: 1.3rem; writing-mode: vertical-rl; text-orientation: upright;
}
#finxAcademy .stage-bar.stage-5:hover:before{
    content: 'STEP1';
}
#finxAcademy .stage-bar.stage-4:hover:before{
    content: 'STEP2';
}
#finxAcademy .stage-bar.stage-3:hover:before{
    content: 'STEP3';
}
#finxAcademy .stage-bar:hover {
    transform: translateX(10px);
}

#finxAcademy .stage-5 {
    background: #ecfffa;
}

#finxAcademy .stage-4 {
    background: #d7fff4;
}

#finxAcademy .stage-3 {
    background: #c0ffed;
}


#finxAcademy .operate .stat-item{
    background-color: transparent;
    border-bottom: 1px solid #b7b7b7;
    padding: 1rem 0 40px;
}




/* Frontrunner - Solution과 동일한 구조 */
#finxAcademy .frontrunner-section {
    padding: 120px 0;
    background: #ffffff;
}

#finxAcademy .frontrunner-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

#finxAcademy .frontrunner-left {
    position: relative;
}

#finxAcademy .frontrunner-image-area {
    height: 500px;
    background: linear-gradient(135deg, #e8ffe0 0%, #e6ffe5 100%);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

#finxAcademy .frontrunner-gradient {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 105, 52, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

#finxAcademy .frontrunner-text {
    padding: 30px 0 0 30px;
}

#finxAcademy .frontrunner-logo {
    font-size: 48px;
    margin-bottom: 20px;
}

#finxAcademy .frontrunner-text h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #191919;
    letter-spacing: -1.5px;
}

#finxAcademy .frontrunner-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

#finxAcademy .frontrunner-right {
    display: flex;
    flex-direction: column;
}

#finxAcademy .frontrunner-card {
    padding: calc(20px + 1.5rem) 0;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #b7b7b7;
}

#finxAcademy .frontrunner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 105, 52, 0.5) 0%, rgba(5, 150, 105, 0.4) 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

#finxAcademy .frontrunner-card:hover::before {
    left: 0;
}

#finxAcademy .frontrunner-card:hover {
    border-color: #f4fffa;
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 105, 52, 0.2);
}

#finxAcademy .frontrunner-card:hover h4,
#finxAcademy .frontrunner-card:hover p {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

#finxAcademy .frontrunner-card:hover .card-arrow {
    color: #ffffff;
    transform: translateX(5px);
}

#finxAcademy .frontrunner-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #191919;
    transition: color 0.3s ease;
}

#finxAcademy .frontrunner-card p {
    font-size: 15px;
    color: #6b7280;
    transition: color 0.3s ease;
}

/* Contact */
#finxAcademy .contact-section {
    padding: 120px 0;
    background: #ffffff;
}

#finxAcademy .contact-intro {
    text-align: center;
    font-size: 19px;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 70px;
}

#finxAcademy .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

#finxAcademy .contact-card {
    background: linear-gradient(135deg, #fff 0%, #f1f1f1 100%);
    border-radius: 10px;
    padding: 2rem 2.2rem;
    min-width: 300px;
    text-align: center;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#finxAcademy .contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

#finxAcademy .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 105, 52, 0.15);
}

#finxAcademy .contact-icon {
    font-size: 56px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

#finxAcademy .contact-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

#finxAcademy .contact-card p {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

#finxAcademy .acList-inner{
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 15px;
    margin: 100px auto;
}
#finxAcademy .acList-inner .right{
    width: calc(90% - 200px);
}
#finxAcademy .acList-inner .right >.title{
    margin-bottom: 50px;
}
#finxAcademy .title h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #4C5EAD;
}
#finxAcademy .pageFlow{
    display: flex;
    gap: 10px;
    font-size: .9rem;
}
#finxAcademy .pageFlow a{
    color: #666;
    font-weight: 400;
}
#finxAcademy .pageFlow li i{
    display: inline-block;
    margin-right: 5px;
}
#finxAcademy .pageFlow li:last-of-type a{
    text-decoration: underline;
}
#finxAcademy .title .classWriteInfo {
    font-size: .9rem; line-height: 1.6;
    border: 1px solid #b7b7b7;
    border-radius: 10px;
    padding: 15px ;
    margin-top: 20px;
    color: #666;
}
#finxAcademy .title .classWriteInfo strong{
    display: block;
    margin-bottom: 5px;
}
#finxAcademy .title .classWriteInfo span{
    font-weight: 500;
    display: block;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/*왼쪽 리스트 시작*/
#listFilter {
    position: sticky;
    top: 80px;
    height: 100%;
    width: 35%;
    max-width: 250px;
    min-width: 250px;
    display: flex;
    background-color: #fff;
    flex-direction: column;
}
#listFilter li:not(:last-of-type){
    border-bottom: 1px dashed #ddd;
}
#listFilter li.active{
    background-color: #eee;
}

#listFilter li.active button{
    background-color: rgba(76, 94, 173, 1);
    color: #fff;
}
#listFilter li button{
    background-color: transparent;
    font-size: 1.2rem;
    width: 100%;
    display: block;
    border: 1px solid transparent;
    text-align: left;
    padding: 20px 10px;
    font-weight: 700;
    color: #333;
    position: relative;
}

#listFilter li button:after{
    /*content: '▼'; */
    content: '';
    font-size: 12px; position: absolute; top: 50%; transform: translateY(-50%); right: 10px;
    color: #4C5EAD;
}

#listFilter li.active button:after{
    /*content: '▲'; color: #fff;*/
}
#listFilter dl{
    display: none;
}
#listFilter dd{
    display: none;
    padding: 15px 10px;
}
#listFilter dd a{
    font-weight: 400;
    color: #333;
    font-size: .95rem;
    line-height: 1.5;
    display: block;
}
#listFilter dd a.on{
    text-decoration: underline;
}
#listFilter dd a:hover,
#listFilter dd a:active{
    font-weight: 500;
}
#finxAcademy #filter {
    border: 1px solid transparent;
    background-color: #eee;
    width: 100%;
    margin-bottom: 50px;
    padding: 2rem 1rem;
}
#finxAcademy #filter select,
#finxAcademy #filter input {
    border: 1px solid #b7b7b7;
    padding: 5px;
    font-size: .9rem;
}
#finxAcademy #filter .dp_pc,
#finxAcademy #filter .dp_pc + div{
    text-align: center;
}
#finxAcademy #filter span[id^=txt_] {
    position: relative;
}
#finxAcademy #filter span[id^=txt_] i {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}
#finxAcademy #filter .dp_pc{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
    align-items: center;
}
#finxAcademy #filter .dp_pc + div{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
#finxAcademy #filter .enterTxt{
    display: inline-block;
}
#finxAcademy #filter button,
#finxAcademy #search_btn{
    border: 1px solid transparent;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
}
#finxAcademy #filter button:hover,
#finxAcademy #filter button:active,
#finxAcademy #search_btn:hover,
#finxAcademy #search_btn:active{
    background-color: rgba(51, 51, 51, 0.7);
}
/*필터 검색 끝 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#finxAcademy .classListPage .classTopWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
#finxAcademy .classListPage .classTopWrap #eduSys_btn {
    border: 1px solid transparent;
    font-size: .9rem;
    color: #444;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 5px;
}
#finxAcademy .classListPage .classTopWrap #eduSys_btn:hover,
#finxAcademy .classListPage .classTopWrap #eduSys_btn:active{
    background-color: #ddd;
}
#finxAcademy .classListPage .classTopWrap p {
    text-align: right;
    font-size: .95rem;
    font-weight: 400;
    color: #333;
}
#finxAcademy .classListPage >p .bold{
    font-size: 1rem;
    font-weight: 800;
    color: #4C5EAD;
}

#finxAcademy .classListPage table{
    margin-top: 10px;
    border-top: 2px solid rgba(51, 51, 51, 0.7);
    border-bottom: 2px solid rgba(51, 51, 51, 0.7);
    width: 100%;
    table-layout: fixed;
}
#finxAcademy .classListPage table thead{
    width: 100%;
}
#finxAcademy .classListPage table th,
#finxAcademy .classListPage table td{
    vertical-align: middle;
}
#finxAcademy .classListPage table th{
    padding: 12px 5px;
    text-align: center;
    border-bottom: 1px solid #333;
    background-color: #f1f1f1;
    font-size: 1rem;
    height: 60px;
}
#finxAcademy .classListPage table tr{
    height: 85px !important; /* TR 높이 강제 고정 */
}
#finxAcademy .classListPage table tr:hover td{
    background-color: #fafafa;
    cursor : pointer;
}
#finxAcademy .classListPage table td{
    padding: 15px 10px;
    display: table-cell !important; /* display 강제 */
    word-wrap: break-word;
    word-break: keep-all;
    font-size: .9rem;
    height: 85px !important; /* 높이 강제 고정 */
    max-height: 85px !important;
    vertical-align: middle !important; /* 중앙 정렬 강제 */
    box-sizing: border-box;
}
#finxAcademy .classListPage table td .time{
    display: none !important;
}
#finxAcademy .classListPage table td .week{
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2줄까지 표시 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4; /* 줄 높이 */
}
#finxAcademy .classListPage table td.place {
    max-width: 180px;
}
#finxAcademy .classListPage table td.place {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2줄까지 표시 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}
#finxAcademy .classListPage table td.timeDate{
    max-width: 100px;
}
#finxAcademy .classListPage table td:not(.title) {
    text-align: center;
}
#finxAcademy .classListPage table td.title{
    width: 30%;
    max-width: 250px;
    position: relative;
    cursor: pointer;
}

#finxAcademy .classListPage table td.title > span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    word-break: keep-all;
}

#finxAcademy .classListPage table td.title:hover::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: calc(100% + 5px);
    padding: 8px 12px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    white-space: normal;
    word-wrap: break-word;
    min-width: 200px;
    max-width: 400px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    line-height: 1.5;
    pointer-events: none;
}

#finxAcademy .classListPage table td.title:hover::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 100%;
    border: 6px solid transparent;
    border-bottom-color: #333;
    z-index: 1001;
    pointer-events: none;
}
#finxAcademy .classListPage table td.title a{
    display: block;
    font-weight: 700;
    color: #333;
    max-width: 400px;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2줄까지 표시 */
    -webkit-box-orient: vertical;
    line-height: 1.4;
}
#finxAcademy .classListPage table td:nth-of-type(2) a:hover,
#finxAcademy .classListPage table td:nth-of-type(2) a:active{
    font-weight: 800;
    text-decoration: underline;
}
#finxAcademy .classListPage table tr:not(:last-of-type) td {
    border-bottom: 1px solid #eee;
}
#finxAcademy .classListPage table td:last-of-type{
    display: table-cell !important; /* flex 제거하고 table-cell로 변경 */
    text-align: center;
}

#finxAcademy .classListPage table td:last-of-type button{
    vertical-align: middle; /* 버튼 중앙 정렬 */
}

#finxAcademy .classListPage table td:last-of-type .proposal_btn {
    border: 1px solid transparent;
    background-color: rgba(76, 94, 173, 0.2);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    box-sizing: border-box;
    color: #4C5EAD;
}
#finxAcademy .classListPage table td:last-of-type .proposal_btn:hover,
#finxAcademy .classListPage table td:last-of-type .proposal_btn:active,
.acDetail table td.register button:hover,
.acDetail table td.register button:active{
    background-color: rgba(76, 94, 173, 0.35);
}

#finxAcademy .classListPage table td:last-of-type .end_btn {
    border: 1px solid transparent;
    background-color: rgba(173, 76, 76, 0.2);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: auto;
    font-size: .9rem;
    box-sizing: border-box;
    color: #ad4c4c;
}

#finxAcademy .classListPage .timeDate{
    /*display: flex; */
    gap: 8px;
    align-items: center;
    justify-content: center;
}
#finxAcademy #ac_paging{
    width: 100%;
    margin: 30px 0;
}
#finxAcademy #ac_paging ul{
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}
#finxAcademy #ac_paging ul a{
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    display: block;
}
#finxAcademy #ac_paging ul a.page_num{
    font-size: 1rem;
    font-weight: 500;
}
#finxAcademy #ac_paging ul a.page_num.active {
    font-weight: 800;
    color: #4C5EAD;
}
#finxAcademy #ac_paging ul a.page_icon{
    border: 1px solid #b7b7b7;
    font-size: .95rem;
    padding: 5px;
}
#finxAcademy #ac_paging .prev{
    margin-right: 5px;
}
#finxAcademy #ac_paging .next{
    margin-left: 5px;
}
#finxAcademy #ac_paging ul i{
    color: #333;
    font-weight: 700;
}
#finxAcademy #ac_paging .dp_mo input{
    border: 1px solid #b7b7b7;
    padding: 5px;
    font-size: .95rem;
    font-weight: 500;
}
/*페이징 끝 ~~~~~~~~~~~~~~~~~~~~~~~~*/

#finxAcademy.acList .editBtnWrap button{
    display: block;
    padding: 10px 15px;
    font-size: .95rem;
    font-weight: 600;
    background-color: #4C5EAD;
    color: #fff;
    border: 1px solid transparent;
    margin-left: auto;
    border-radius: 5px;
}
#finxAcademy.acList .editBtnWrap button:hover,
#finxAcademy.acList .editBtnWrap button:active{
    background-color: rgba(76, 94, 173, 0.45);
}

/* 아카데미 게시물 상세 페이지 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.acDetail .topArea{
    margin-bottom: 20px;
}
.acDetail .letterpressArea {
    width: 100%;
}
.acDetail .letterpressArea img{
    max-width: 1200px;
    object-fit: contain;
    width: 100%;
    height: auto;
}
.acDetail .topArea > table{
    width: 100%;
    border-top: 2px solid rgba(51, 51, 51, 0.7);
    border-bottom: 2px solid rgba(51, 51, 51, 0.7);
}
.acDetail  .topArea >  table tr:first-of-type td {
    padding: 12px 5px;
    border-bottom: 1px solid #333 !important;
    background-color: #f1f1f1;
    height: 60px;
}
.acDetail  .topArea > table td {
    vertical-align: middle;
    padding: 15px 10px;
    display: table-cell;
    word-wrap: break-word;
    word-break: keep-all;
    font-size: .9rem;
    min-height: 80px;
}
.acDetail  .topArea > table tr:not(:last-of-type) td {
    border-bottom: 1px solid #eee;
}
.acDetail  .topArea > table td.timeDate{
    width: 30%;
}
.acDetail  .topArea > table td.title{
    font-weight: 700;
    max-width: 400px;
    text-align: left;
    font-size: 1.2rem;
    color: #333;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: keep-all;
    line-height: 1.5;
}

.acDetail .topArea >  table tr:first-of-type td.th {
    width: 10%;
    text-align: right;
    font-weight: 600;
    font-size: .95rem;
}
.acDetail .topArea >  table tr:not(:first-of-type) td.th {
    width: 10%;
    font-weight: 600;
    background-color: #fafafa;
    text-align: center;
    font-size: .95rem;
}
.acDetail .topArea >  table td.writeDate{
    width: 10%;
    font-size: .85rem;
    font-weight: 600;
}
.acDetail .topArea >  table td.register button {
    border: 1px solid transparent;
    background-color: rgba(76, 94, 173, 0.2);
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    padding: 4px 10px;
    font-weight: 600;
    font-size: .9rem;
    box-sizing: border-box;
    color: #4C5EAD;
}
.acDetail  .topArea > table td.register button.end_btn {
    border: 1px solid transparent;
    background-color: rgba(173, 76, 76, 0.2);
    display: block;
    margin: 0 auto;
    cursor: auto;
    border-radius: 10px;
    padding: 4px 10px;
    font-weight: 600;
    font-size: .9rem;
    box-sizing: border-box;
    color: #ad4c4c;
}
.acDetail  .topArea > table td.timeDate div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.acDetail .editBtnWrap{
    display: flex;
    justify-content: right;
    gap: 10px;
    margin-bottom: 20px;
}

.acDetail .editBtnWrap button{
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: 700;
    background-color: #fff;
}
.acDetail .editBtnWrap button:hover,
.acDetail .editBtnWrap button:active {
    opacity: .8;
}
.acDetail .editBtnWrap .edit_btn {
    border-color: #4C5EAD;
    color: #4C5EAD;
}
.acDetail .editBtnWrap .del_btn {
    border-color: #ad4c4c;
    color: #ad4c4c;
}
.acDetail .editBtnWrap .deadline_btn{
    border-color : #333;
    color: #333;
}

.acDetail .postList {
    border-top: 1px solid rgba(51, 51, 51, 0.7);
    border-bottom: 1px solid rgba(51, 51, 51, 0.7);
    margin: 100px 0;
    padding: 15px 0;
}
.acDetail .postList ul li:first-of-type{
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.acDetail .postList dl{
    display: flex;
    gap: 30px;
    padding: 0 10px;
}
.acDetail .postList dt{
    font-weight: 700;
    font-size: .95rem;
}
.acDetail .postList dd{
    width: 90%;
}
.acDetail .postList dd a{
    font-size: .9rem;
    font-weight: 500;
    color: #333;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.acDetail .postList dd a:hover,
.acDetail .postList dd a:active{
    text-decoration: underline;
}


/* 교육 후기 섹션 */
.acDetail .reviewSection {
    margin-top: 60px;
    margin-bottom: 50px;
}

.acDetail .reviewHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(51, 51, 51, 0.7);
}

.acDetail .reviewHeader h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.acDetail .reviewStats .averageRating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.acDetail .reviewStats .ratingScore {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4C5EAD;
}

.acDetail .reviewStats .stars {
    display: flex;
    gap: 2px;
}

.acDetail .reviewStats .stars .star {
    font-size: 1.2rem;
    color: #ddd;
}

.acDetail .reviewStats .stars .star.filled {
    color: #ffc107;
}

.acDetail .reviewStats .stars .star.half {
    background: linear-gradient(90deg, #ffc107 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.acDetail .reviewStats .reviewCount {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* 후기 작성 폼 */
.acDetail .reviewWriteForm {
    background-color: #fafafa;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 40px;
    border: 1px solid #eee;
}

.acDetail .reviewWriteForm h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.acDetail .ratingInput {
    margin-bottom: 20px;
}

.acDetail .ratingInput > label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 0.95rem;
}

.acDetail .starRating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 10px;
}

.acDetail .starRating input {
    display: none;
}

.acDetail .starRating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    margin: 0;
}

.acDetail .starRating input:checked ~ label,
.acDetail .starRating label:hover,
.acDetail .starRating label:hover ~ label {
    color: #ffc107;
}

.acDetail .selectedRating {
    display: inline-block;
    font-size: 0.85rem;
    color: #666;
    margin-left: 10px;
    font-weight: 500;
}

.acDetail .reviewContent {
    position: relative;
    margin-bottom: 20px;
}

.acDetail .reviewContent textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
    resize: vertical;
    box-sizing: border-box;
    font-family: inherit;
    word-break: keep-all;
}

.acDetail .reviewContent textarea:focus {
    outline: none;
    border-color: #4C5EAD;
}

.acDetail .reviewContent .charCount {
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.acDetail .submitReview {
    width: 100%;
    padding: 12px;
    background-color: #4C5EAD;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.acDetail .submitReview:hover,
.acDetail .submitReview:active {
    opacity: 0.85;
}

.acDetail .loginRequired {
    background-color: #fafafa;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 40px;
    border: 1px solid #eee;
}

.acDetail .loginRequired p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.acDetail .loginRequired a {
    color: #4C5EAD;
    font-weight: 600;
    text-decoration: underline;
}

/* 후기 목록 */
.acDetail .reviewList {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acDetail .reviewItem {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.acDetail .reviewTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}

.acDetail .userInfo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.acDetail .userName {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.acDetail .reviewStars {
    display: flex;
    gap: 2px;
}

.acDetail .reviewStars .star {
    font-size: 0.95rem;
    color: #ddd;
}

.acDetail .reviewStars .star.filled {
    color: #ffc107;
}

.acDetail .reviewDate {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.acDetail .reviewText {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    word-break: keep-all;
}

/* 더보기 버튼 */
.acDetail .reviewMore {
    text-align: center;
    margin-top: 30px;
}

.acDetail .moreBtn {
    padding: 10px 35px;
    background-color: #fff;
    border: 1px solid #4C5EAD;
    color: #4C5EAD;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.acDetail .moreBtn:hover,
.acDetail .moreBtn:active {
    background-color: #4C5EAD;
    color: #fff;
}


/* 과정 정보 요약 박스 */
.reviewDetailPage .courseInfoBox {
    background-color: #fafafa;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.reviewDetailPage .courseInfoBox .courseName {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.reviewDetailPage .courseStats {
    display: flex;
    gap: 40px;
    align-items: center;
}

.reviewDetailPage .courseStats .statItem {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviewDetailPage .courseStats .label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.reviewDetailPage .courseStats .ratingDisplay {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewDetailPage .courseStats .score {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4C5EAD;
}

.reviewDetailPage .courseStats .stars {
    display: flex;
    gap: 2px;
}

.reviewDetailPage .courseStats .stars .star {
    font-size: 1.2rem;
    color: #ddd;
}

.reviewDetailPage .courseStats .stars .star.filled {
    color: #ffc107;
}

.reviewDetailPage .courseStats .stars .star.half {
    background: linear-gradient(90deg, #ffc107 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviewDetailPage .courseStats .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

/* 필터 및 정렬 */
.reviewDetailPage .reviewFilter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}

.reviewDetailPage .filterLeft {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.reviewDetailPage .filterBtn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #666;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.reviewDetailPage .filterBtn:hover {
    border-color: #4C5EAD;
    color: #4C5EAD;
}

.reviewDetailPage .filterBtn.active {
    background-color: #4C5EAD;
    border-color: #4C5EAD;
    color: #fff;
}

.reviewDetailPage .filterRight select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    background-color: #fff;
    cursor: pointer;
}

.reviewDetailPage .filterRight select:focus {
    outline: none;
    border-color: #4C5EAD;
}

/* 후기 목록 (전체보기) */
.reviewDetailPage .reviewListFull {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.reviewDetailPage .reviewListFull .reviewItem {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #eee;
    transition: box-shadow 0.3s;
}

.reviewDetailPage .reviewListFull .reviewItem:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.reviewDetailPage .reviewListFull .reviewTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}

.reviewDetailPage .reviewListFull .userInfo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewDetailPage .reviewListFull .userName {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.reviewDetailPage .reviewListFull .reviewStars {
    display: flex;
    gap: 2px;
}

.reviewDetailPage .reviewListFull .reviewStars .star {
    font-size: 0.95rem;
    color: #ddd;
}

.reviewDetailPage .reviewListFull .reviewStars .star.filled {
    color: #ffc107;
}

.reviewDetailPage .reviewListFull .reviewDate {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.reviewDetailPage .reviewListFull .reviewText {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    word-break: keep-all;
}
.reviewDetailPage .list_btn{
    display: block;
    max-width: 300px;
    margin: 30px auto;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 1rem;
    color: #666;
    font-weight: 600;
    text-align: center;
    font-size: .95rem;
}
.reviewDetailPage .list_btn:hover,
.reviewDetailPage .list_btn:active{
    text-decoration: underline;
}

/* 상세페이지 끝 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/* 사용자 신청 입력 폼 시작 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.acRegisterForm table{
    width: 100%;
    margin-bottom: 100px;
}

.acRegisterForm table caption,
.acRegisterForm table .point,
.acRegisterForm .personalInformation input+label .point{
    color: #ad4c4c;
    font-weight: 700;
}

.acRegisterForm table caption{
    text-align: right;
    font-size: .95rem;
    margin-bottom: 5px;
}
.acRegisterForm table ,
.acWriteForm table{
    border-top: 2px solid #333;
}
.acRegisterForm table td,
.acWriteForm td{
    padding: 20px 10px;
    min-height: 70px;
    font-size: .9rem;
    font-weight: 500;
}
.acRegisterForm table td,
.acWriteForm td{
    border-bottom: 1px solid #eee;
}
.acRegisterForm table td.th,
.acWriteForm td.th{
    font-weight: 800;
    letter-spacing: 1px;
}
.acRegisterForm table td >div:not(.telWrap),
.acRegisterForm table .telWrap input,
.acRegisterForm .personalInformation p ,
.acWriteForm td input,
.acWriteForm td select{
    background-color: #fff;
    border: 1px solid rgba(76, 94, 173, 0.45);
    padding: 10px;
    border-radius: 5px;
}
.acRegisterForm table .telWrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.acRegisterForm table .telWrap input{
    max-width: 120px;
}
.acRegisterForm .personalInformation h2 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.acRegisterForm .personalInformation h2 i{
    display: inline-block;
    margin-right: 5px;
    color: #4C5EAD;
}
.acRegisterForm .personalInformation p {
    width: 100%;
    max-height: 200px;
    margin-bottom: 20px;
    overflow-y: auto;
    font-size: .95rem;
    background-color: rgba(76, 94, 173, 0.05);
    line-height: 1.8;
    border-color: #b7b7b7;
}
.acRegisterForm .personalInformation p span{
    color: rgba(76, 94, 173, 0.8);
    font-weight: 600;
    margin-top: 15px;
    display: block;
}
.acRegisterForm .personalInformation .chkArea {
    margin: 20px 0;
}
.acRegisterForm .personalInformation input{ display: none;}
.acRegisterForm .personalInformation input+label{
    font-size: .95rem;
    position: relative;
    font-weight: 600;
    color : #666;
    padding-left: 30px;
}
.acRegisterForm .personalInformation input+label:before{
    content: ''; position: absolute; top: 50%; transform: translateY(-50%); left: 0;
    border: 1px solid #b7b7b7;
    border-radius: 2px;
    background-color: #fff;
    width: 18px; height: 18px;
}
.acRegisterForm .personalInformation input:checked + label {
    font-weight: 700;
    color: #4C5EAD;
}
.acRegisterForm .personalInformation input:checked + label:after {
    content: '✔'; color: #4C5EAD;
    font-size: 1rem; font-weight: 700; position: absolute; top: 50%; transform: translateY(-50%); left: 2px;
}

.acRegisterForm .btnWrap ,
.acWriteForm .btnWrap,
.acDetail .letterpressArea +.btnWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 50px;
}
.acRegisterForm .btnWrap button,
.acWriteForm .btnWrap button,
.acDetail .letterpressArea +.btnWrap button{
    width: 30%;
    max-width: 150px;
    height: 50px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    border: 1px solid transparent;
    color: #fff;
}
.acRegisterForm .btnWrap button#registerSubmit_btn ,
.acWriteForm .btnWrap button#writeSubmit_btn,
.acDetail .letterpressArea +.btnWrap button.proposal_btn{
    background-color: #4C5EAD;
}
.acRegisterForm .btnWrap button#cancel_btn,
.acWriteForm .btnWrap button#cancel_btn,
.acDetail .letterpressArea +.btnWrap button.list_btn{
    background-color: #333;
}

.acRegisterForm .btnWrap button#registerSubmit_btn:hover,
.acRegisterForm .btnWrap button#registerSubmit_btn:active,
.acWriteForm .btnWrap button#writeSubmit_btn:hover,
.acWriteForm .btnWrap button#writeSubmit_btn:active,
.acDetail .letterpressArea +.btnWrap button.proposal_btn:hover,
.acDetail .letterpressArea +.btnWrap button.proposal_btn:active{
    background-color: rgba(76, 94, 173, 0.8);
}
.acRegisterForm .btnWrap button#cancel_btn:hover,
.acRegisterForm .btnWrap button#cancel_btn:active ,
.acWriteForm .btnWrap button#cancel_btn:hover,
.acWriteForm .btnWrap button#cancel_btn:active,
.acDetail .letterpressArea +.btnWrap button.list_btn:hover,
.acDetail .letterpressArea +.btnWrap button.list_btn:active{
    background-color: rgba(51, 51, 51, 0.8);
}

/* 사용자 신청 입력 폼 끝 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/* 클래스 작성 폼 시작 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.acWriteForm{
    padding: 100px 0;
}
.acWriteForm .write-inner {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}
.acWriteForm table{
    width: 100%;
    border-top: 1px solid #333;
    margin: 50px 0;
}
.acWriteForm table input{
    padding: 15px;
    font-size: .9rem;
}
.acWriteForm table .nameWrap input,
.acWriteForm table .placeWrap input{
    width: 100%;
}
.acWriteForm table td.th{
    max-width: 80px;
}
.acWriteForm table td div.wrapBox{
    display: flex;
    gap: 10px; align-items: center;
}
.acWriteForm table td div.wrapBox #caExplanation {
    font-size: .85rem;
    font-weight: 600;
    color: #666;
}
.acWriteForm table .periodWrap input{
    max-width: 50px;
}
.acWriteForm table .weekWrap{
    min-height: 60px;
    display: flex;
    gap: 5px;
}
.acWriteForm table .weekWrap input{ display: none;}
.acWriteForm table .weekWrap label{
    color: #4C5EAD;
    border: 1px solid rgba(76, 94, 173, 0.45);
    border-radius: 5px;
    height: 100%;
    padding: 10px;
    font-weight: 500;
}
.acWriteForm table .weekWrap input:checked + label{
    background-color: rgba(76, 94, 173, 0.1);
    color: #4C5EAD;
    font-weight: 700;
}
.acWriteForm table .timeWrap{
    display: flex;
    width: 100%;
    gap: 5px;
    align-items: center;
}
.acWriteForm table .timeWrap >div {
    position: relative;
}

.acWriteForm table .timeWrap i{
    font-size: 23px;
    position: absolute;
    top: 50%; transform: translateY(-50%);
    right: 40px;
    z-index: 10;
    background-color: #fff;
}
.acWriteForm .explainInfo{
    font-size: .8rem;
    font-weight: 500;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}
/* 에디터  css 시작 ~~~*/


.acWriteForm #editorTxt #smart_editor2{
    width: 100%;
}

#smarteditor {
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* 에디터 툴바 스타일 */
#smarteditor  .se2_input_area {
    background: #ffffff !important;
    border: 1px solid #4C5EAD !important;
    border-radius: 8px !important;
}

/* 툴바 버튼 스타일 */
.se2_toolbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 12px !important;
}

#smarteditor .se2_toolbar .se2_command_button {
    border-radius: 6px !important;
    transition: all 0.3s !important;
}

#smarteditor .se2_toolbar .se2_command_button:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px);
}

/* 에디터 입력 영역 */
#smarteditor .se2_inputarea iframe {
    border: none !important;
    border-radius: 0 0 8px 8px !important;
}
/* 클래스 작성 폼 끝 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/* 강의 개설 절차 안내 시작 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.acClassGuide .intro-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 32px;
    border: 1px solid #e5e7eb;
}

.acClassGuide .intro-title {
    font-size: 24px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.acClassGuide .intro-icon {
    width: 32px;
    height: 32px;
    background: #4f5faa;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.acClassGuide .intro-description {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7684;
}

.acClassGuide .steps-container {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.acClassGuide .step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.acClassGuide .step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.acClassGuide .step-card:hover {
    border-color: #4C5EAD;
    box-shadow: 0 8px 24px rgba(79, 95, 170, 0.1);
}

.acClassGuide .step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.acClassGuide .step-number {
    width: 56px;
    height: 56px;
    background: rgba(76, 94, 173, 0.2);
    color: #4C5EAD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.acClassGuide .step-title {
    font-size: 22px;
    font-weight: 700;
    color: #191f28;
}

.acClassGuide .step-description {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7684;
    margin-bottom: 24px;
}

.acClassGuide .step-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #4f5faa;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.acClassGuide .step-button:hover {
    background: #3d4a8a;
    transform: translateX(4px);
}

.acClassGuide .step-button::after {
    content: '→';
    font-size: 18px;
}

.acClassGuide .info-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    border-left: 4px solid #4f5faa;
}

.acClassGuide .info-title {
    font-size: 16px;
    font-weight: 600;
    color: #191f28;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.acClassGuide .info-title::before {
    content: 'ℹ';
    width: 24px;
    height: 24px;
    background: #4f5faa;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.acClassGuide .info-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.acClassGuide .info-list li {
    font-size: 14px;
    color: #6b7684;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.acClassGuide .info-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #4f5faa;
    font-weight: 700;
    font-size: 16px;
}

.acClassGuide .my-lectures-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #ffffff;
    color: #4f5faa;
    border: 2px solid #4f5faa;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 32px;
}

.acClassGuide .my-lectures-button:hover {
    background: #4f5faa;
    color: white;
}

.acClassGuide .divider {
    height: 1px;
    background: #e5e7eb;
    margin: 48px 0;
}
/* 강의 개설 절차 끝 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/















/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@반응형 시작!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media all and (min-width: 1024px) {
    .dp_pc{
        display: flex ;
    }
    .dp_mo{
        display: none !important;
    }
}



/*tablet*/

@media all and (max-width: 1023px) {

    .dp_mo{
        display: none !important;
    }

    #finxAcademy .academy-hero h1{
        font-size : 2rem;
    }
    /* about 페이지 시작 --------------*/
    #finxAcademy .frontrunner-content,
    #finxAcademy .story-grid,
    #finxAcademy .innovation-item{
        display: flex;
        flex-direction: column;
    }
    #finxAcademy .frontrunner-image-area{
        height: 300px;
    }
    #finxAcademy .frontrunner-text h2{
        font-size: 2.5rem;
        line-height: 1.5;
    }
    #finxAcademy .frontrunner-card h4,
    #finxAcademy .stat-number span{
        font-size: 1.2rem;
        line-height: 1.5;
    }

    /* list 페이지 시작 ----------------*/

    #listFilter{
        min-width: 180px;
        max-width: 180px;
        position: unset;
    }
    #finxAcademy .acList-inner .right{
        width: calc(95% - 180px);
    }
    #finxAcademy .title h2{
        font-size: 1.25rem;
    }
    #finxAcademy #acBigTab a{
        padding: 20px 0;
    }
    #finxAcademy #ac_paging ul.dp_pc{
        display: flex !important;
    }
    #finxAcademy #ac_paging ul.dp_mo{
        display: none !important;
    }

    #finxAcademy .acList-inner{
        width: 95%;
        margin: 50px auto;
    }
}






/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@모바일 시작!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
@media all and (max-width: 768px) {
    .dp_pc{
        display: none !important;
    }
    .dp_mo{
        display: flex !important;
    }

    #finxAcademy .academy-hero{
        padding-top: 0;
        height: 50vh;
    }
    #finxAcademy .academy-hero h1,
    #finxAcademy .acBannerSwiper .hero-cont{
        font-size: 1.4rem;
    }
    #finxAcademy .acBannerSwiper .hero-small,
    #finxAcademy .acBannerSwiper .hero-cont,
    #finxAcademy .acBannerSwiper .hero-sign{
        text-align: center;
    }
    /*아카데미 About 페이지 시작 ---------------------*/

    #finxAcademy .innovation-section{
        padding: 50px 0;
    }
    #finxAcademy .innovation-visual{
        padding: 1.5rem 1rem;
    }


    /*아카데미 정보 페이지 시작   --------------------*/
    .acInfo .principle-section{
        padding: 0;
        margin: 100px 0 ;
    }
    .acInfo .roadmap-step{
        flex-direction: column;
        align-items: center;
    }

    .acInfo .roadmap-content h3{
        font-size: 1.2rem;
    }
    .acInfo .roadmap-content p{
        font-size: .95rem;
    }
    .acInfo .roadmap-step,
    .acInfo .value-card,
    .acInfo .principle-box{
        padding: 1.2rem;
    }



    /*아카데미 리스트 페이지 시작   --------------------*/
    #finxAcademy .acList-inner{
        flex-direction: column;
        gap: 50px;
    }
    #finxAcademy .acList-inner >* ,
    #finxAcademy .acList-inner .right{
        width: 100%;
        min-width: unset;
        max-width: unset;
    }
    #finxAcademy .title h2{
        font-size: 1.8rem;
    }
    #finxAcademy #filter .enterTxt{
        display: flex;
        gap: 10px
    }
    #finxAcademy #filter input,
    #finxAcademy #filter select{
        height: 40px;
        width: 70px;
        font-size: .9rem;
    }
    #finxAcademy #filter input{
        min-width: 150px;
    }
    #finxAcademy .classListPage table tr{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        height: auto !important;
        padding: 0 10px;
        border-bottom: 1px solid #b7b7b7;
    }
    #finxAcademy .classListPage table thead{
        display: none !important;
    }
    #finxAcademy .classListPage table td.dp_pc{
        display: none !important;
    }
    #finxAcademy .classListPage table tr:not(:last-of-type) td,
    #finxAcademy .classListPage table td{
        border-bottom: 1px solid transparent;
        align-items: center;
        height: 40px !important;
    }

    #finxAcademy .classListPage table td.title{
        width: 90%;
        padding: 10px 0 ;
        font-size: .95rem;
        max-width: unset;
        font-weight: 800;
        order: 1;
        min-height: 45px;
        height: auto;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    #finxAcademy .classListPage table td.place{
        display: none;
    }
    #finxAcademy .classListPage table td.title a{
        width: 90%;
    }
    #finxAcademy .classListPage table td{
        display: flex !important;
        align-items: center;
        padding: 0 10px;
        font-weight: 600;
        height: auto;
        line-height: 1.3;
        min-height: 30px;
        font-size: .85rem;
    }
    #finxAcademy .classListPage table td:not(.title){
        text-align: left;
    }
    #finxAcademy .classListPage table td.timeDate{
        order: 2;
    }
    #finxAcademy .classListPage table td:not(:last-of-type) {
        position: relative;
    }
    #finxAcademy .classListPage table td:not(.title):not(:last-of-type):not(.place):not(.charge):after{
        content: ''; width: 1px; height: 13px; position: absolute;
        top: 50%; transform: translateY(-50%); right: 1px; background-color: #333;
    }

    #finxAcademy .classListPage table td.eduDiv{order: 3; padding: 0 8px 0 0}
    #finxAcademy .classListPage table td.lector{order: 4}
    #finxAcademy .classListPage table td.timeDate{order: 5;}
    #finxAcademy .classListPage table td.period{order: 6;}
    #finxAcademy .classListPage table td.place{order: 7;}
    #finxAcademy .classListPage table td.charge{
        order: 8;
        padding: 10px;
    }
    #finxAcademy .classListPage table td:last-of-type{
        order: 2;
        width: 10%;
    }

    #finxAcademy .classListPage table td:last-of-type .proposal_btn,
    #finxAcademy .classListPage table td:last-of-type .end_btn{
        padding: 4px 5px;
        border-radius: 0;
        font-size: .9rem;
     }

    #finxAcademy #ac_paging ul.dp_pc{
        display: none !important;
    }
    #finxAcademy #ac_paging ul.dp_mo{
        display:  flex !important;
    }

    #finxAcademy #ac_paging ul.dp_mo{
        flex-wrap: wrap;
    }
    #finxAcademy #ac_paging ul a.page_icon,
    #finxAcademy #ac_paging .dp_mo li,
    #finxAcademy .classListPage >p{
        font-size: .9rem;
    }
    #finxAcademy #ac_paging ul a.page_icon{
        padding: 4px;
    }
    #finxAcademy #ac_paging .dp_mo input{
        max-width: 95px;
        margin-right: 5px;
        font-size: .85rem;
    }

    /*     교육 상세페이지 시작 ~~~~~~~~~~~~~~~~~~~~~~~~~*/
    .acDetail table tr:not(:first-of-type) td.th,
    .acDetail table td.th{
        font-size: .9rem !important;
        font-weight: 700;
    }
    .acDetail table td:not(.th) {
        font-size: .9rem !important;
    }

/*    후기 쪾*/
    .acDetail .reviewSection {
        margin-top: 40px;
    }

    .acDetail .reviewHeader {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .acDetail .reviewStats .ratingScore {
        font-size: 1.5rem;
    }

    .acDetail .reviewWriteForm {
        padding: 20px;
    }

    .acDetail .reviewItem {
        padding: 15px;
    }

    .acDetail .reviewTop {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .acDetail .starRating label {
        font-size: 1.8rem;
    }
/*     교육 신청 사용자 폼 시작 ~~~~~~~~~~~~~~~~~~~~~~~~~*/
    .acRegisterForm table{
        display: block !important;
        border-top: unset;
    }
    .acRegisterForm table caption{
        font-size: .9rem;
        border-bottom: 2px solid #333;
        padding-bottom: 5px;
        width: 100%;
    }
    .acRegisterForm table td {
        display: grid;
        width: 100%;
        border-bottom: 1px solid transparent;
        min-height: 40px;
        padding: 10px;
    }
    .acRegisterForm table td.th{
        display: flex;
        align-items: flex-start;
    }
    .acRegisterForm table td:last-of-type{
        border-color: #eee;
    }
    .acRegisterForm table .telWrap input[type=number]{
        max-width: 82px !important;
    }

/*    관계자 교육 등록 폼 시작 --------------------------------*/
    .acWriteForm table,
    .acWriteForm table tr{
        display: flex;
    }
    .acWriteForm table tr{
        flex-direction: column;
    }
    .acWriteForm table tbody,
    .acWriteForm table tr,
    .acWriteForm td{
        width: 100%;
    }
    .acWriteForm td:first-of-type{
        border-color: transparent;
        padding: 20px 10px 10px;
        min-height: 20px;
    }
    .acWriteForm table td.th{
        max-width: unset;
    }
    .acWriteForm table input{
        padding:  10px 8px;
    }
    .acWriteForm td:last-of-type{
        padding: 0 10px;
        width: 100%;
        max-width: 768px;
    }
    .acWriteForm table .weekWrap{
        min-height: 40px;
        margin-bottom: 20px;
    }

    .acWriteForm table tr:nth-of-type(3) td:last-of-type {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-bottom: 20px;
    }
    .acWriteForm table .timeWrap{
        flex-direction: column;
        margin-bottom: 10px;
        align-items: flex-start;
    }
    .acWriteForm table .timeWrap i{
        right: 35px;
    }
    .acWriteForm #tinymce div.textBox {
        padding: unset !important;
    }
    #smarteditor{
        overflow: auto;
    }
    #smart_editor2{
        min-width: unset !important;
    }

    #eduSystemPopup dd{
        font-size: .85rem;
    }

/*    수업 등록 안내---------------------------------------------*/
    .acClassGuide .step-card,
    .acClassGuide .info-section{
        padding: 1.2rem;
    }



/*    리뷰 후기 상세 -----------------*/
    .reviewDetailPage .courseInfoBox {
        padding: 20px;
    }

    .reviewDetailPage .courseStats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .reviewDetailPage .reviewFilter {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .reviewDetailPage .filterLeft {
        justify-content: center;
    }

    .reviewDetailPage .filterRight {
        text-align: center;
    }

    .reviewDetailPage .filterRight select {
        width: 100%;
    }

    .reviewDetailPage .reviewListFull .reviewItem {
        padding: 15px;
    }

    .reviewDetailPage .reviewListFull .reviewTop {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .reviewDetailPage .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }

    .reviewDetailPage .pagination button {
        min-width: 35px;
        padding: 6px 10px;
    }

    .reviewDetailPage .pagination .pageBtn {
        min-width: 50px;
    }

}

































