/* ═══════════════════════════════════════════
   ENGLISH SSAM - Shared Styles
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #DBEAFE;
  --accent: #F59E0B;
  --accent-light: #FEF3C7;
  --dark: #0F172A;
  --gray-900: #1E293B;
  --gray-700: #334155;
  --gray-500: #64748B;
  --gray-300: #CBD5E1;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --white: #FFFFFF;
  --success: #10B981;
  --danger: #EF4444;
  --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #2563EB 100%);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark); background: var(--white); line-height: 1.6;
  overflow-x: hidden; width: 100%;
}
a { text-decoration: none; color: inherit; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--dark); }
.logo-icon {
  width: 40px; height: 40px; background: var(--primary); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 18px;
}
.logo-text { font-weight: 800; font-size: 20px; letter-spacing: -0.5px; }
.logo-text span { color: var(--primary); }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  text-decoration: none; color: var(--gray-700);
  padding: 8px 16px; border-radius: 8px;
  font-size: 15px; font-weight: 500; transition: all 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { background: var(--primary-light); color: var(--primary); }

.nav-actions { display: flex; gap: 8px; align-items: center; }
.btn-ghost {
  padding: 8px 16px; border-radius: 8px; border: none;
  background: none; color: var(--gray-700); font-size: 14px;
  font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-ghost:hover { background: var(--gray-100); }
.btn-primary {
  padding: 10px 20px; border-radius: 10px; border: none;
  background: var(--primary); color: white; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.btn-outline {
  padding: 10px 20px; border-radius: 10px;
  border: 2px solid var(--primary); background: white;
  color: var(--primary); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-outline:hover { background: var(--primary-light); }
.btn-accent {
  padding: 12px 28px; border-radius: 12px; border: none;
  background: var(--accent); color: var(--dark); font-size: 15px;
  font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }
.btn-danger { background: var(--gray-100); color: var(--gray-500); border: none; }
.btn-danger:hover { background: var(--gray-300); }

/* ─── PAGE HERO (sub pages) ─── */
.page-hero {
  background: var(--gradient-hero); padding: 120px 24px 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(37,99,235,0.25) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}
.page-hero h1 {
  font-family: 'Outfit', 'Noto Sans KR', sans-serif;
  font-size: 40px; font-weight: 800; color: white; margin-bottom: 8px;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); }
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }

/* ─── LAYOUT ─── */
.page-content {
  max-width: 1200px; margin: 0 auto; padding: 48px 24px 80px;
  display: grid; grid-template-columns: 240px 1fr; gap: 48px;
}
.page-content.full { grid-template-columns: 1fr; }

/* ─── SIDEBAR ─── */
.sidebar {}
.sidebar-title {
  font-size: 20px; font-weight: 800; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 3px solid var(--primary);
  color: var(--dark);
}
.sidebar-nav { list-style: none; }
.sidebar-nav li { border-bottom: 1px solid var(--gray-100); }
.sidebar-nav a {
  display: block; padding: 14px 16px; font-size: 15px; font-weight: 500;
  color: var(--gray-700); transition: all 0.2s; border-radius: 8px; margin: 2px 0;
}
.sidebar-nav a:hover { background: var(--gray-50); color: var(--primary); }
.sidebar-nav a.active {
  background: var(--primary); color: white; font-weight: 600;
}

/* ─── MOBILE SUB TABS ─── */
.mobile-tabs {
  display: none;
}

/* ─── CONTENT AREA ─── */
.content-area { min-width: 0; overflow: hidden; }
.content-title {
  font-size: 28px; font-weight: 800; margin-bottom: 32px;
  padding-bottom: 16px; border-bottom: 2px solid var(--gray-100);
  display: flex; align-items: center; gap: 12px;
}
.content-title .icon { font-size: 28px; }

/* ─── CARDS ─── */
.card {
  background: white; border-radius: 16px; padding: 32px;
  border: 1px solid var(--gray-100); transition: all 0.3s;
}
.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.card-blue { background: var(--primary-light); border-color: transparent; }
.card-amber { background: var(--accent-light); border-color: transparent; }

/* ─── TABLES ─── */
.table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--gray-100); }
table { width: 100%; border-collapse: collapse; }
table th {
  background: var(--primary); color: white; padding: 14px 16px;
  font-size: 14px; font-weight: 600; text-align: center; white-space: nowrap;
}
table td {
  padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700); vertical-align: top;
}
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: var(--gray-50); }
table td.center { text-align: center; }
table .highlight { color: var(--primary); font-weight: 700; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 14px; font-weight: 600; color: var(--gray-700);
  margin-bottom: 6px;
}
.form-label .required { color: var(--danger); margin-left: 2px; }
.form-input {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 2px solid var(--gray-300); font-size: 15px;
  font-family: inherit; transition: all 0.2s; background: var(--white);
}
.form-input:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
select.form-input { cursor: pointer; appearance: none; background-color: var(--white); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-row { display: grid; grid-template-columns: 160px 1fr; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.form-row:last-child { border-bottom: none; }
.form-row .label { font-size: 15px; font-weight: 600; color: var(--gray-700); }
.form-row .label .dot { color: var(--primary); margin-right: 4px; }
.form-hint { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

.form-card {
  background: var(--gray-50); border-radius: 16px; padding: 32px;
  border: 1px solid var(--gray-100);
}
.form-actions {
  display: flex; gap: 12px; justify-content: center; margin-top: 32px;
}

/* ─── STEP PROCESS ─── */
.steps { display: flex; gap: 0; margin: 32px 0 40px; position: relative; }
.step {
  flex: 1; text-align: center; position: relative;
  padding: 16px 8px;
}
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px;
  margin: 0 auto 8px;
  position: relative; z-index: 2;
}
.step-label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.step::after {
  content: ''; position: absolute; top: 36px;
  left: calc(50% + 24px); right: calc(-50% + 24px);
  height: 3px; background: var(--primary-light); z-index: 1;
}
.step:last-child::after { display: none; }

/* ─── PROCESS (vertical) ─── */
.process-list { margin: 40px 0; }
.process-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-family: 'Outfit', sans-serif; font-size: 40px;
  font-weight: 800; color: var(--primary-light); line-height: 1;
}
.process-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.process-item p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.process-item .tag {
  display: inline-block; padding: 2px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 700; margin-left: 4px;
}
.tag-student { background: var(--primary-light); color: var(--primary); }
.tag-teacher { background: #FEE2E2; color: var(--danger); }

/* ─── POLICY SECTIONS ─── */
.policy-section { margin-bottom: 40px; }
.policy-section h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  color: var(--dark);
}
.policy-section h3 .icon { font-size: 22px; }
.policy-content {
  background: var(--gray-50); border-radius: 12px; padding: 24px;
  font-size: 14px; color: var(--gray-700); line-height: 1.8;
}
.policy-content strong { color: var(--primary); font-weight: 600; }
.policy-content .warn { color: var(--danger); font-weight: 600; }
.policy-example {
  background: white; border-radius: 8px; padding: 16px; margin-top: 12px;
  border-left: 3px solid var(--primary); font-size: 13px; color: var(--gray-500);
}

/* ─── ARTICLE LIST ─── */
.article-list { list-style: none; }
.article-item {
  display: grid; grid-template-columns: 60px 1fr 100px 120px;
  gap: 16px; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--gray-100);
  font-size: 14px; transition: background 0.2s;
}
.article-item:hover { background: var(--gray-50); }
.article-item .num { text-align: center; color: var(--gray-500); font-weight: 500; }
.article-item .title { color: var(--gray-700); font-weight: 500; }
.article-item .title:hover { color: var(--primary); }
.article-item .author { text-align: center; color: var(--gray-500); font-size: 13px; }
.article-item .date { text-align: center; color: var(--gray-300); font-size: 13px; }
.article-header {
  display: grid; grid-template-columns: 60px 1fr 100px 120px;
  gap: 16px; padding: 14px 20px;
  background: var(--primary); border-radius: 12px 12px 0 0; color: white;
  font-size: 13px; font-weight: 600; text-align: center;
}

/* ─── PAGINATION ─── */
.pagination {
  display: flex; justify-content: center; gap: 6px; margin-top: 32px;
}
.pagination a, .pagination span {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; border: 1px solid var(--gray-100);
  color: var(--gray-500); transition: all 0.2s;
}
.pagination a:hover { background: var(--gray-50); color: var(--primary); border-color: var(--primary); }
.pagination .active { background: var(--primary); color: white; border-color: var(--primary); }
.pagination .arrow { font-size: 18px; }

/* ─── LESSON NOTE TABLE ─── */
.note-card {
  background: white; border-radius: 12px; border: 1px solid var(--gray-100);
  padding: 20px; margin-bottom: 16px; transition: all 0.3s;
}
.note-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.note-meta {
  display: flex; gap: 16px; align-items: center; margin-bottom: 12px;
  flex-wrap: wrap;
}
.note-meta .badge {
  padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700;
}
.badge-normal { background: #D1FAE5; color: #065F46; }
.badge-absent { background: #FEE2E2; color: #991B1B; }
.note-meta .date { color: var(--gray-500); font-size: 13px; }
.note-meta .teacher { color: var(--gray-700); font-size: 14px; font-weight: 600; }
.note-content { font-size: 14px; color: var(--gray-700); line-height: 1.7; white-space: pre-wrap; }
.note-correction { margin-top: 8px; padding: 8px 12px; background: var(--accent-light); border-radius: 8px; font-size: 13px; }
.note-correction .wrong { text-decoration: line-through; color: var(--danger); opacity: 0.7; }
.note-correction .right { color: var(--success); font-weight: 600; }

/* ─── CURRICULUM TABLE ─── */
.curriculum-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 32px 0;
}
.level-card {
  border-radius: 16px; padding: 24px; text-align: center;
  border: 2px solid var(--gray-100); transition: all 0.3s;
}
.level-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.level-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.level-card .target { font-size: 13px; color: var(--gray-500); margin-bottom: 12px; }
.level-card .desc { font-size: 13px; color: var(--gray-700); line-height: 1.6; text-align: left; }
.level-card .books { margin-top: 12px; }
.level-card .book-tag {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 600; margin: 2px;
  background: var(--gray-100); color: var(--gray-700);
}
.level-beginner { border-color: #86EFAC; }
.level-beginner h4 { color: #166534; }
.level-int-low { border-color: #93C5FD; }
.level-int-low h4 { color: #1E40AF; }
.level-int-mid { border-color: #A5B4FC; }
.level-int-mid h4 { color: #3730A3; }
.level-int-high { border-color: #C4B5FD; }
.level-int-high h4 { color: #5B21B6; }
.level-free { border-color: var(--accent); }
.level-free h4 { color: #92400E; }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.5); padding: 48px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
.footer-logo .logo-text { color: white; }
.footer-info { font-size: 13px; line-height: 1.8; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 32px; padding-top: 24px;
  font-size: 13px; text-align: center;
}

/* ─── PROFILE FORM ─── */
.profile-grid { display: grid; gap: 0; }
.profile-row {
  display: grid; grid-template-columns: 180px 1fr; align-items: center;
  padding: 16px 24px; border-bottom: 1px solid var(--gray-100);
}
.profile-row:last-child { border-bottom: none; }
.profile-label { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.profile-label .dot { color: var(--primary); }
.profile-value { font-size: 15px; color: var(--dark); }
.profile-value input, .profile-value select {
  padding: 10px 14px; border-radius: 8px; border: 2px solid var(--gray-300);
  font-size: 14px; font-family: inherit; transition: all 0.2s;
  background: var(--white);
}
.profile-value input:focus, .profile-value select:focus { outline: none; border-color: var(--primary); background: white; }
.profile-value .inline { display: flex; gap: 8px; align-items: center; font-size: 14px; }
.profile-value .text-muted { color: var(--gray-500); }

/* ─── POST BODY (HTML content) ─── */
.post-body { word-wrap: break-word; overflow-wrap: break-word; max-width: 100%; overflow-x: auto; }
.post-body img { max-width: 100%; height: auto; }
.post-body table { max-width: 100%; overflow-x: auto; display: block; }
.post-body pre { overflow-x: auto; white-space: pre-wrap; }
.post-body p, .post-body span, .post-body div, .post-body strong, .post-body b { max-width: 100%; }
@media (max-width:900px) {
  .post-body p, .post-body span, .post-body div, .post-body strong, .post-body b { font-size: inherit !important; }
  .post-body { font-size: 14px; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.5s cubic-bezier(0.16,1,0.3,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 8px; position: relative; z-index: 1002;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--gray-700);
  margin: 5px auto; border-radius: 2px; transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 999; opacity: 0; transition: opacity 0.3s ease;
}
.nav-overlay.open { display: block; opacity: 1; }
.nav-mobile-actions { display: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-inner { height: 56px; }
  .nav-hamburger { display: block; }
  .nav-actions { display: none !important; }

  .nav-links {
    position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
    background: white; z-index: 1001;
    flex-direction: column; gap: 0; padding: 80px 20px 20px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 0.3s ease;
  }
  .nav-links.open { clip-path: inset(0 0 0 0); }
  .nav-links a {
    padding: 14px 16px; border-radius: 8px; font-size: 16px;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-mobile-actions {
    display: flex; flex-direction: column; gap: 8px;
    margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200);
  }

  .page-content { grid-template-columns: 1fr; gap: 16px; padding: 0 0 60px; }
  .sidebar { display: none; }
  .mobile-tabs {
    display: flex; gap: 6px; padding: 12px 16px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    background: white; border-bottom: 1px solid var(--gray-100);
    position: sticky; top: 56px; z-index: 10;
  }
  .mobile-tab {
    flex-shrink: 0; padding: 8px 16px; border-radius: 100px;
    font-size: 13px; font-weight: 600; white-space: nowrap;
    background: var(--gray-100); color: var(--gray-500);
    text-decoration: none; transition: all 0.2s;
  }
  .mobile-tab.active {
    background: var(--primary); color: white;
  }
  .content-area { padding: 16px; }
  .page-hero h1 { font-size: 24px; }
  .page-hero p { font-size: 14px; }
  .page-hero { padding: 72px 16px 24px; }
  .breadcrumb { font-size: 12px; }
  .content-title { font-size: 22px; margin-bottom: 20px; padding-bottom: 12px; }
  .curriculum-grid { grid-template-columns: 1fr 1fr; }
  .article-item { grid-template-columns: 1fr 80px; gap: 8px; padding: 12px 12px; }
  .article-item .num, .article-item .author { display: none; }
  .article-header { display: none; }
  .profile-row { grid-template-columns: 1fr; gap: 6px; padding: 12px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 6px; }
  .steps { flex-wrap: wrap; gap: 4px; margin: 20px 0 24px; }
  .step { padding: 10px 4px; }
  .step::after { display: none; }
  .step-number { width: 32px; height: 32px; font-size: 14px; }
  .step-label { font-size: 12px; }
  .process-list { margin: 24px 0; }
  .process-item { grid-template-columns: 40px 1fr; gap: 12px; padding: 16px 0; }
  .process-num { font-size: 28px; }
  .process-item h3 { font-size: 15px; }
  .process-item p { font-size: 13px; }

  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-wrap table { min-width: 480px; }
  .card { padding: 20px; }

  .footer { padding: 32px 16px; }
  .footer-bottom { font-size: 12px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 12px; height: 56px; }
  .logo-text { font-size: 16px; }
  .logo-icon { width: 32px; height: 32px; font-size: 15px; border-radius: 10px; }
  .page-hero h1 { font-size: 20px; }
  .page-hero { padding: 64px 12px 20px; }
  .page-content { padding: 0 0 48px; }
  .content-area { padding: 12px; }
  .content-title { font-size: 18px; }
  .mobile-tabs { top: 56px; padding: 10px 12px; gap: 4px; }
  .mobile-tab { padding: 6px 12px; font-size: 12px; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 32px 1fr; gap: 10px; padding: 12px 0; }
  .process-num { font-size: 24px; }
  .process-item h3 { font-size: 14px; margin-bottom: 4px; }
  .process-item p { font-size: 12px; }
  .steps { margin: 16px 0 20px; }
  .step { padding: 8px 2px; }
  .step-number { width: 28px; height: 28px; font-size: 13px; }
  .step-label { font-size: 11px; }
  .card { padding: 16px; }
  .form-card { padding: 20px; }
  .form-input { padding: 10px 12px; font-size: 14px; }
  .profile-value input, .profile-value select { width: 100%; }
  .pagination { gap: 4px; }
  .pagination a, .pagination span { width: 32px; height: 32px; font-size: 13px; }
}

input[type="date"], input[type="date"]::-webkit-datetime-edit {
  font-weight:500;
  color:#111;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor:pointer;
}
