/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* Color Variables */
:root {
    --primary-navy: #000e32;       /* Very Dark Navy */
    --accent-blue: #007bff;
    --sky-blue-text: #8bbaff;      /* Sky Blue for Best Partner */
    --bg-light-blue: #f3f8fd;      /* Light Blue background for inquiry section */
    --text-dark: #222222;
    --text-muted: #888888;
    --border-line: #c2cfdd;
    --font-base: 'Noto Sans KR', sans-serif;
    --font-eng: 'Montserrat', sans-serif;
}

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Section */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: none; /* 제거하여 더 깔끔하게 */
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 980px; /* Wix 기준 980px 그리드로 맞춤 */
    margin: 0 auto;
    padding: 0 20px; /* 양옆에 20px 안전 패딩을 확보하여 화면 가장자리에 밀착되지 않게 수정 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px; /* 로고 크기 최적화 */
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px; /* 자간 조절 및 간격 넓힘 */
    list-style: none; /* 리스트 스타일 강제 제거 */
    padding: 0;
    margin: 0;
}

.nav-links li {
    list-style: none; /* 리스트 스타일 강제 제거 */
    list-style-type: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 400; /* 더 얇고 깔끔하게 */
    color: rgb(85, 85, 85); /* 기본 텍스트 색상 */
    letter-spacing: -0.5px;
    transition: color 0.2s ease;
}

/* 활성화 상태 (Home 등) 하늘색 컬러 적용 */
.nav-links a.active {
    color: rgb(116, 172, 247); /* 제공해주신 하늘색 컬러 */
}

.nav-links a:hover {
    color: rgb(116, 172, 247);
}

/* Mobile Toggle (hidden on desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
}

/* Slogan Banner Section */
.slogan-banner {
    position: relative;
    height: 480px;
    background: url('../img/bg_img.avif') no-repeat center center/cover;
    background-attachment: fixed; /* 배경 고정 스크롤 효과 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px; /* Offset header height */
}

.slogan-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 24, 46, 0.65); /* Dark Navy Overlay */
    z-index: 1;
}

.slogan-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff;
}

.slogan-content h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    word-break: keep-all;
}

.slogan-content h2 em {
    font-style: italic;
    color: var(--sky-blue-text);
    font-family: var(--font-eng);
    font-weight: 600;
}

.slogan-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 24px;
    border-radius: 0; /* Boxy Rectangular */
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn-outline svg {
    opacity: 0.9;
}

/* Inquiry Form Section */
.inquiry-section {
    background-color: var(--bg-light-blue);
    padding: 80px 20px 100px;
}

.inquiry-container {
    max-width: 680px; /* Centered narrow width matching image */
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.inquiry-form {
    background: transparent; /* No White Box Card */
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

/* Static Label above line input */
.form-label {
    font-size: 14px;
    color: #555555;
    margin-bottom: 6px;
}

.form-label .required {
    color: #ff3b30;
    margin-left: 2px;
}

/* Line Inputs */
.form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border-line);
    background-color: transparent;
    padding: 6px 0 10px;
    font-size: 16px;
    font-family: var(--font-base);
    color: var(--text-dark);
    outline: none;
    transition: border-bottom-color 0.2s ease;
}

.form-control:focus {
    border-bottom-color: #000000;
}

/* Dropdown styling */
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    background-size: 12px;
    padding-right: 20px;
}

/* Textarea height */
textarea.form-control {
    min-height: 80px;
    resize: none;
}

/* Form Footer Row */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

/* Consent Checkbox */
.consent-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.consent-checkbox {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid #b5c2d1;
    border-radius: 0; /* 각지게 */
    outline: none;
    cursor: pointer;
    position: relative;
    background-color: #ffffff;
}

.consent-checkbox:checked {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.consent-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 4px;
    width: 4px;
    height: 7px;
    border: solid #ffffff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.consent-text {
    font-size: 14px;
    color: #666666;
}

/* Submit Button */
.btn-submit {
    background-color: var(--primary-navy);
    color: #ffffff;
    border: none;
    border-radius: 0; /* 각지게 */
    padding: 10px 32px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: #0b1f54;
}

/* Footer Section */
footer {
    background-color: var(--primary-navy);
    color: #8a95a5;
    padding: 45px 20px 40px;
    text-align: center;
    font-size: 13px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 25px;
}

.footer-nav a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-info {
    line-height: 1.8;
}

.footer-info p {
    margin-bottom: 4px;
}

.footer-info span {
    margin: 0 8px;
    position: relative;
}

.footer-info span:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: #3b4b6b;
}

.copyright {
    margin-top: 20px;
    color: #4f5f7a;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }
    
    /* Hamburger icon transition to 'X' */
    .menu-toggle span {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-links {
        display: none; /* 기본 상태에서 확실하게 숨김 */
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-top: 1px solid #e1eaf3;
        border-bottom: 1px solid #e1eaf3;
        padding: 15px 0;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 14, 50, 0.08);
        z-index: 1005; /* 최상위 레벨 보장 */
    }
    
    .nav-links.active {
        display: flex !important; /* 활성화 시 무조건 노출 */
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        font-weight: 500;
        width: 100%;
    }
    
    .slogan-banner h2 {
        font-size: 22px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .btn-submit {
        width: 100%;
        text-align: center;
    }
    
    .footer-info span::after {
        display: none !important;
    }
    
    .footer-info span {
        display: block;
        margin: 4px 0;
    }
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-window {
    background-color: #ffffff;
    border-radius: 6px;
    width: 90%;
    max-width: 550px;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-window {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #eeeeee;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 26px;
    font-weight: 300;
    color: #999999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #333333;
}

.modal-body {
    padding: 24px;
    font-size: 15px;
    color: #444444;
    line-height: 1.8;
    overflow-y: auto;
    max-height: 380px;
}

.modal-body p {
    margin-bottom: 12px;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

/* Influencer Showcase Styles */
/* Influencer Showcase Styles (Image-Centric Gallery Layout) */
.influencer-section {
    background-color: var(--bg-light-blue);
    padding: 80px 20px 120px;
}

.influencer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* PC 뷰에서 무조건 가로 2열 고정 */
    gap: 30px;
    max-width: 980px;
    margin: 0 auto;
    padding-top: 20px;
}

.influencer-card {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 1; /* 3:4 비율로 모든 카드의 높이를 일정하게 통일 */
    overflow: hidden;
    background-color: #f7f9fc;
    border: 1px solid #e1eaf3;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.influencer-card img {
    width: 100%;
    height: 100%; /* 카드 영역 전체를 차지하게 고정 */
    object-fit: cover; /* 찌그러짐 없이 영역에 가득 차도록 크롭(잘림) 처리 */
    object-position: top; /* 인스타그램 프로필 중심의 상단 우선 배치 */
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.influencer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 14, 50, 0.12);
}

.influencer-card:hover img {
    transform: scale(1.05);
}

.influencer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 14, 50, 0.1) 40%, rgba(0, 14, 50, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    z-index: 2;
}

.influencer-card:hover .influencer-overlay {
    opacity: 1;
}

.influencer-overlay-info {
    color: #ffffff;
    transform: translateY(10px);
    transition: transform 0.3s ease;
    text-align: left;
}

.influencer-card:hover .influencer-overlay-info {
    transform: translateY(0);
}

.influencer-overlay-handle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.influencer-overlay-stats {
    font-size: 14px;
    color: rgb(116, 172, 247);
    font-weight: 700;
    margin-bottom: 8px;
}

.influencer-overlay-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.influencer-overlay-tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 2px;
}

.influencer-channel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 14, 50, 0.85);
    color: #ffffff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
}

/* Admin Dashboard Styles */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light-blue);
    padding: 20px;
}

.admin-login-card {
    background: #ffffff;
    border: 1px solid #e1eaf3;
    border-radius: 4px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 14, 50, 0.05);
}

.admin-login-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
    text-align: center;
}

.admin-login-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-align: center;
}

.admin-container {
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 40px 20px 80px;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary-navy);
    padding-bottom: 15px;
}

.admin-header-row h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-navy);
}

.btn-admin-logout {
    background-color: transparent;
    border: 1px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-admin-logout:hover {
    background-color: var(--primary-navy);
    color: #ffffff;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background: #ffffff;
    border: 1px solid #e1eaf3;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 14, 50, 0.02);
}

.admin-stat-card h3 {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.admin-stat-card .value {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-navy);
}

.admin-table-wrapper {
    background: #ffffff;
    border: 1px solid #e1eaf3;
    border-radius: 4px;
    overflow-x: auto;
    box-shadow: 0 4px 12px rgba(0, 14, 50, 0.02);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eeeeee;
}

.admin-table th {
    background-color: #fafbfc;
    font-weight: 700;
    color: var(--primary-navy);
    border-bottom: 2px solid #e1eaf3;
}

.admin-table tr:hover {
    background-color: #fcfdfe;
}

.admin-table td .message-text {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #555555;
    cursor: pointer;
}

.admin-table td .message-text:hover {
    white-space: normal;
    word-break: break-all;
    color: #000000;
}

.badge-status {
    display: inline-block;
    padding: 3px 8px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
}

.badge-waiting {
    background-color: #fff1e6;
    color: #ff9f43;
}

.badge-completed {
    background-color: #e8f9ee;
    color: #28c76f;
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.btn-action {
    padding: 6px 12px;
    font-size: 13px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-action-status {
    background-color: #e5f1ff;
    color: #007bff;
}

.btn-action-status:hover {
    background-color: #007bff;
    color: #ffffff;
}

.btn-action-delete {
    background-color: #ffe5e5;
    color: #ff3b30;
}

.btn-action-delete:hover {
    background-color: #ff3b30;
    color: #ffffff;
}

.no-data {
    text-align: center;
    padding: 50px !important;
    color: var(--text-muted);
    font-size: 16px;
}

@media (max-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Cases Page Portfolio Grid Styles */
.cases-section {
    background-color: var(--bg-light-blue);
    padding: 80px 20px 120px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 980px;
    margin: 0 auto;
    padding-top: 20px;
}

.case-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f7f9fc;
    border: 1px solid #e1eaf3;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: scale(1.01);

}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 14, 50, 0.08);
}

.case-card:hover img {
    transform: scale(1.04);
}

.case-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 14, 50, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.case-card:hover .case-card-overlay {
    opacity: 1;
}

.case-card-overlay span {
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s;
}

.case-card-overlay span:hover {
    background-color: #ffffff;
    color: var(--primary-navy);
}

/* Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 10, 36, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-modal.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 34px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-caption {
    color: #ffffff;
    margin-top: 15px;
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Swiper Lightbox Custom Styles */
.lightbox-swiper {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
    padding-bottom: 30px;
}

.lightbox-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-slide-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    display: block;
}

.lightbox-swiper .swiper-button-next,
.lightbox-swiper .swiper-button-prev {
    color: #ffffff;
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: background-color 0.2s;
}

.lightbox-swiper .swiper-button-next:hover,
.lightbox-swiper .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.lightbox-swiper .swiper-button-next::after,
.lightbox-swiper .swiper-button-prev::after {
    font-size: 18px;
}

.lightbox-swiper .swiper-button-prev {
    left: 10px;
}
.lightbox-swiper .swiper-button-next {
    right: 10px;
}

.lightbox-swiper .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
}

.lightbox-swiper .swiper-pagination-bullet-active {
    background: #0056ff;
    opacity: 1;
}

.lightbox-swiper .swiper-pagination {
    bottom: 0px;
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .influencer-grid {
        grid-template-columns: 1fr; /* 모바일은 1열로 가로 가득 채우기 */
        gap: 20px;
    }
    
    .lightbox-close {
        top: -40px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

