@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #D4A017;
  --gold-bright: #F0C030;
  --gold-light:  #FFF8DC;
  --black:       #111111;
  --dark:        #1A1A1A;
  --dark2:       #232323;
  --gray:        #888888;
  --gray-mid:    #BBBBBB;
  --gray-light:  #EEEEEE;
  --white:       #FFFFFF;
  --off-white:   #F9F7F2;
  --font: 'Poppins', sans-serif;
  --nav-h:       68px;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.09);
  --transition:  0.26s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--off-white); overflow-x: hidden; font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
button { font-family: var(--font); cursor: pointer; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ====== UTILITIES ====== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: var(--white);
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: center; padding: 0 36px; gap: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.13); }
.nav-brand {
  display: flex; align-items: center; gap: 10px; margin-right: auto;
  font-weight: 700; font-size: 1.05rem; color: var(--black); white-space: nowrap;
}
.nav-logo {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 2px solid var(--gold-light);
}
.nav-logo img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: flex; align-items: center; gap: 4px; padding: 7px 14px;
  font-size: 0.875rem; font-weight: 500; color: var(--dark); border-radius: var(--radius);
  transition: color var(--transition); white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }
.nav-dropdown { position: relative; }
.nav-chevron { display: inline-block; width: 12px; height: 12px; transition: transform var(--transition); }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1.5px solid var(--gold);
  border-radius: var(--radius); min-width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200; overflow: hidden;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 18px; font-size: 0.84rem; font-weight: 500;
  border-bottom: 1px solid var(--gray-light); color: var(--dark);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover, .dropdown-menu a.dd-active { background: var(--gold-light); color: var(--black); font-weight: 600; }
.btn-support {
  display: flex; align-items: center; gap: 6px; padding: 8px 18px;
  background: var(--gold); color: var(--black);
  font-weight: 700; font-size: 0.84rem;
  border: 2px solid var(--black); border-radius: var(--radius);
  margin-left: 10px; box-shadow: 3px 3px 0 var(--black);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-support:hover { background: var(--gold-bright); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--black); }
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

/* ====== HERO ====== */
.hero {
  position: relative; width: 100%; min-height: 440px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 32px) 20px 64px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1562774053-701939374585?w=1600&q=80') center/cover no-repeat;
  filter: brightness(0.32) saturate(0.6);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.05) 0%, rgba(17,17,17,0.65) 100%);
}
.hero-content { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-logo-wrap {
  width: 130px; height: 130px;
  border: 2px solid rgba(212,160,23,0.35); border-radius: 50%;
  background: rgba(212,160,23,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px; animation: fadeInDown 0.8s ease both; overflow: hidden;
}
.hero-logo-wrap img { width: 80%; height: 80%; object-fit: contain; }
.hero-title {
  font-size: clamp(1.9rem,4.5vw,3rem); font-weight: 700;
  color: var(--white); letter-spacing: -0.01em; line-height: 1.15;
  animation: fadeInUp 0.8s 0.12s ease both;
}
.hero-sub {
  font-size: 0.97rem; font-weight: 400; color: rgba(255,255,255,0.68);
  font-style: italic; animation: fadeInUp 0.8s 0.22s ease both;
}
.hero-scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 7px;
  animation: fadeIn 1s 0.8s ease both;
}
.hero-scroll span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38); font-weight: 500; }
.scroll-caret { width: 16px; height: 16px; border-right: 2px solid rgba(255,255,255,0.35); border-bottom: 2px solid rgba(255,255,255,0.35); transform: rotate(45deg); animation: bounce-caret 1.5s infinite; }

/* ====== TICKER ====== */
.ticker-wrap {
  background: var(--gold); border-top: 2px solid var(--black); border-bottom: 2px solid var(--black);
  overflow: hidden; white-space: nowrap; padding: 10px 0;
}
.ticker-track { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 28px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black);
}
.ticker-item::before { content: '★'; font-size: 0.6rem; }

/* ====== SECTION HEADINGS ====== */
.section-heading {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 1.45rem; font-weight: 700; margin-bottom: 40px; color: var(--black);
}
.section-heading .icon { font-size: 1rem; }
.section-heading .underline, .sec-heading .underline { text-decoration: underline; text-underline-offset: 5px; }
.sec-heading {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 38px; color: var(--black);
}

/* ====== ARTICLE CARDS GRID ====== */
.articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 36px; }
.article-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: 8px; overflow: hidden; border: 1.5px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.10); border-color: var(--gold); }
.article-card-img-wrap { overflow: hidden; }
.article-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--gray-light); transition: transform var(--transition); }
.article-card:hover .article-card-img { transform: scale(1.04); }
.article-card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.article-card-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.article-card-title { font-size: 1rem; font-weight: 600; line-height: 1.4; color: var(--black); flex: 1; }
.article-card-meta { font-size: 0.74rem; font-weight: 400; color: var(--gray); margin-top: 4px; }

/* ====== PAGINATION ====== */
.pagination { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 0.84rem; font-weight: 500; border: 1.5px solid var(--gray-light);
  border-radius: var(--radius); color: var(--dark);
  transition: border-color var(--transition), color var(--transition);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .pag-active { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 700; }

/* ====== FILTER BAR ====== */
.filter-bar { background: var(--white); border-bottom: 1.5px solid var(--gray-light); padding-top: var(--nav-h); }
.filter-bar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.filter-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-right: 8px; }
.filter-tab {
  padding: 14px 18px; font-size: 0.84rem; font-weight: 500; color: var(--gray);
  border-bottom: 3px solid transparent; margin-bottom: -1.5px;
  transition: color var(--transition), border-color var(--transition); display: inline-block;
}
.filter-tab:hover { color: var(--dark); }
.filter-tab.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 600; }

/* ====== PAGE HEADER ====== */
.page-header { margin-top: var(--nav-h); padding: 40px 0 32px; background: var(--white); border-bottom: 2px solid var(--gold); }
.page-header-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.page-header h1 { font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.page-header p { font-size: 0.88rem; color: var(--dark); font-style: italic; margin-top: 6px; }
.page-header-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 18px; }
.stat-item .num { font-size: 1.35rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-item .lbl { font-size: 0.7rem; font-weight: 500; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ====== MAIN WRAP (2-col layout with sidebar) ====== */
.main-wrap { max-width: 1160px; margin: 0 auto; padding: 40px 32px 72px; display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-card { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: var(--radius-lg); padding: 24px; }
.sidebar-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.sidebar-dark { background: var(--dark); border-color: var(--dark); color: var(--white); }
.sidebar-dark h3 { color: var(--gold); }
.sidebar-dark p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 12px; }

/* ====== JOB CARDS ====== */
.jobs-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.jobs-count { font-size: 0.72rem; font-weight: 600; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase; }
.job-list { display: flex; flex-direction: column; gap: 14px; }
.job-card {
  display: flex; gap: 18px; padding: 22px; background: var(--white);
  border: 1.5px solid var(--gray-light); border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.job-logo {
  width: 56px; height: 56px; border-radius: 10px; background: var(--gold-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; overflow: hidden;
}
.job-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.job-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.job-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.job-company { font-size: 0.72rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.job-title { font-size: 1rem; font-weight: 700; color: var(--black); margin-top: 2px; }
.job-tags { display: flex; gap: 6px; flex-shrink: 0; flex-wrap: wrap; }
.job-tag { padding: 4px 10px; border-radius: 14px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; }
.tag-ft { background: #E8F4FD; color: #1565C0; }
.tag-intern { background: #FFF3E0; color: #E65100; }
.tag-part { background: #E8F5E9; color: #2E7D32; }
.tag-remote { background: #F3E5F5; color: #6A1B9A; }
.tag-new { background: var(--gold); color: var(--black); }
.job-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.job-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--gray); }
.job-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.job-desc { font-size: 0.82rem; color: #555; line-height: 1.6; }
.job-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.job-posted { font-size: 0.72rem; color: var(--gray-mid); }
.job-apply {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  transition: color var(--transition);
}
.job-apply:hover { color: var(--gold-bright); }

/* ====== TAG CLOUD ====== */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-cloud-item {
  padding: 5px 12px; border-radius: 16px; border: 1.5px solid var(--gray-light);
  font-size: 0.76rem; font-weight: 500; color: var(--dark); display: inline-block;
  transition: all var(--transition);
}
.tag-cloud-item:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-light); }

/* ====== TIPS ====== */
.tip-list { display: flex; flex-direction: column; gap: 11px; }
.tip-item { display: flex; gap: 11px; align-items: flex-start; }
.tip-num {
  width: 24px; height: 24px; flex-shrink: 0; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: var(--black);
}
.tip-text { font-size: 0.8rem; color: var(--gray); line-height: 1.5; padding-top: 2px; }

/* ====== SEARCH INPUT ====== */
.filter-search {
  display: flex; align-items: center; border: 1.5px solid var(--gray-light);
  border-radius: 20px; padding: 7px 16px; gap: 8px; background: var(--off-white);
  margin-left: auto; transition: border-color var(--transition);
}
.filter-search:focus-within { border-color: var(--gold); }
.filter-search svg { width: 14px; height: 14px; color: var(--gray); flex-shrink: 0; }
.filter-search input {
  border: none; outline: none; font-family: var(--font); font-size: 0.82rem;
  color: var(--dark); background: transparent; width: 170px;
}

/* ====== FEATURED CARDS ====== */
.feat-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: 8px; overflow: hidden; border: 1.5px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.feat-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--gray-light); transition: transform var(--transition); }
.feat-card:hover .feat-card-img { transform: scale(1.04); }
.feat-card-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.feat-card-tag { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.feat-card-title { font-size: 0.95rem; font-weight: 600; line-height: 1.4; color: var(--black); flex: 1; }
.feat-card-meta { font-size: 0.72rem; color: var(--gray); margin-top: 3px; }

/* ====== CATEGORY CARDS (newsletter grid) ====== */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: 8px; overflow: hidden; border: 1.5px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.cat-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--gray-light); }
.cat-card-body { padding: 12px 14px 16px; }
.cat-card-title { font-size: 0.88rem; font-weight: 600; line-height: 1.4; color: var(--black); }
.cat-card-tag { font-size: 0.7rem; color: var(--gray); margin-top: 3px; }

/* ====== RESOURCE / EVENT CARDS ====== */
.res-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: 8px; overflow: hidden; border: 1.5px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.res-card-img-wrap { overflow: hidden; position: relative; }
.res-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--gray-light); transition: transform var(--transition); }
.res-card:hover .res-card-img { transform: scale(1.04); }
.res-card-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px; border-radius: 12px;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.badge-upcoming { background: var(--gold); color: var(--black); }
.badge-past { background: rgba(0,0,0,0.5); color: var(--white); }
.res-card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.res-card-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.res-card-title { font-size: 1rem; font-weight: 600; line-height: 1.4; color: var(--black); flex: 1; }
.res-card-meta { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.res-card-date { font-size: 0.74rem; color: var(--gray); }

/* ====== POST DETAIL PAGE ====== */
.breadcrumb {
  max-width: 1160px; margin: 0 auto; padding: calc(var(--nav-h) + 20px) 32px 0;
  display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--gray);
}
.breadcrumb a { color: var(--gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-mid); }

.post-hero-img { max-width: 1160px; margin: 20px auto 0; padding: 0 32px; }
.post-hero-img img { width: 100%; max-height: 440px; object-fit: cover; border-radius: var(--radius-lg); }

.post-wrap { max-width: 1160px; margin: 0 auto; padding: 32px 32px 72px; display: grid; grid-template-columns: 1fr 280px; gap: 48px; }
.post-content { min-width: 0; }
.post-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.post-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; line-height: 1.3; color: var(--black); margin-bottom: 20px; }
.post-body { font-size: 0.93rem; color: #333; line-height: 1.85; }
.post-body p { margin-bottom: 18px; }
.post-body h2, .post-body h3 { margin: 28px 0 12px; font-weight: 700; color: var(--black); }
.post-body img { border-radius: var(--radius); margin: 20px 0; }
.post-body blockquote { border-left: 3px solid var(--gold); padding: 12px 20px; margin: 20px 0; font-style: italic; color: #555; background: var(--gold-light); border-radius: 0 var(--radius) var(--radius) 0; }

.post-sidebar { display: flex; flex-direction: column; gap: 22px; }
.post-meta-card { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: var(--radius-lg); padding: 22px; }
.post-meta-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-light); }
.post-meta-item:last-child { border-bottom: none; }
.post-meta-icon { font-size: 1rem; flex-shrink: 0; }
.post-meta-label { font-size: 0.68rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.post-meta-val { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.post-tag-chip {
  display: inline-block; padding: 4px 12px; border-radius: 14px;
  background: var(--gold-light); color: var(--gold); font-size: 0.72rem; font-weight: 600;
}

/* ====== EVENT DETAIL PAGE ====== */
.event-hero { position: relative; width: 100%; height: 360px; overflow: hidden; margin-top: var(--nav-h); }
.event-hero-bg { position: absolute; inset: 0; }
.event-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35); }
.event-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; max-width: 1160px; margin: 0 auto; }
.event-type-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--gold); color: var(--black); font-size: 0.72rem; font-weight: 700; border-radius: 14px; margin-bottom: 12px; width: fit-content; }
.event-hero-title { font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 700; color: var(--white); line-height: 1.25; }

.event-body-card { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 22px; }
.event-body-card h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; color: var(--black); }
.event-body-card p { font-size: 0.9rem; color: #444; line-height: 1.8; margin-bottom: 12px; }

.agenda-list { display: flex; flex-direction: column; gap: 14px; }
.agenda-item { display: flex; align-items: flex-start; gap: 14px; }
.agenda-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.agenda-time { font-size: 0.68rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.agenda-title { font-size: 0.92rem; font-weight: 600; color: var(--dark); }

.quick-info-card { background: var(--dark); border-radius: var(--radius-lg); padding: 24px; color: var(--white); }
.quick-info-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.qi-item { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.qi-item:last-child { border-bottom: none; }
.qi-label { font-size: 0.65rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.qi-val { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.8); margin-top: 2px; }

.more-events-section { margin-top: 48px; }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.more-item { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 8px; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.more-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.more-item-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--gray-light); }
.more-item-body { padding: 14px 16px; }
.more-tag { font-size: 0.65rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.more-title { font-size: 0.88rem; font-weight: 600; color: var(--black); margin-top: 4px; }
.more-date { font-size: 0.72rem; color: var(--gray); margin-top: 4px; }

/* ====== JOB DETAIL PAGE ====== */
.job-detail-header { margin-top: var(--nav-h); padding: 48px 0 36px; background: var(--dark); }
.job-detail-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; display: flex; align-items: flex-start; gap: 24px; }
.job-detail-logo { width: 72px; height: 72px; border-radius: 14px; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; overflow: hidden; }
.job-detail-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.job-detail-info { flex: 1; }
.job-detail-company { font-size: 0.78rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }
.job-detail-title { font-size: 1.6rem; font-weight: 700; color: var(--white); margin-top: 4px; }
.job-detail-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.job-detail-body { max-width: 1160px; margin: 0 auto; padding: 36px 32px 72px; display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.job-desc-card { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: var(--radius-lg); padding: 28px; }
.job-desc-card h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; }
.job-desc-card .job-desc-content { font-size: 0.9rem; color: #444; line-height: 1.85; }
.job-desc-content p { margin-bottom: 14px; }
.btn-apply {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  background: var(--gold); color: var(--black);
  font-weight: 700; font-size: 0.9rem;
  border: 2px solid var(--black); border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--black);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-apply:hover { background: var(--gold-bright); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--black); }

/* ====== ABOUT TAB BAR ====== */
.about-bar { background: var(--dark); padding-top: var(--nav-h); border-bottom: 3px solid var(--gold); }
.about-bar-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; display: flex; gap: 0; }
.tab-btn {
  padding: 18px 28px; background: none; border: none; border-bottom: 3px solid transparent;
  margin-bottom: -3px; font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.5); cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.tab-btn:hover { color: rgba(255,255,255,0.82); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ====== ABOUT HERO ====== */
.about-hero { background: var(--dark); padding: 60px 0 72px; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; top: -60px; right: -100px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(212,160,23,0.11) 0%, transparent 70%); pointer-events: none; }
.about-hero-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 260px; gap: 56px; align-items: center; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.hero-h1 { font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-weight: 700; color: var(--white); line-height: 1.2; }
.hero-h1 span { color: var(--gold); }
.hero-desc { font-size: 0.95rem; font-weight: 400; font-style: italic; color: rgba(255,255,255,0.62); line-height: 1.75; margin-top: 14px; }
.hero-desc strong { color: rgba(255,255,255,0.88); font-style: normal; font-weight: 600; }
.stats-row { display: flex; gap: 36px; margin-top: 32px; flex-wrap: wrap; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.45); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-logo-box { width: 190px; height: 190px; border: 2px solid rgba(212,160,23,0.28); border-radius: 50%; background: rgba(212,160,23,0.06); display: flex; align-items: center; justify-content: center; margin: 0 auto; overflow: hidden; }
.hero-logo-box img { width: 80%; height: 80%; object-fit: contain; }

/* ====== ORNAMENT DIVIDER ====== */
.orn-divider { display: flex; align-items: center; gap: 16px; max-width: 1160px; margin: 0 auto; padding: 48px 32px; }
.orn-divider::before, .orn-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-light); }
.orn-divider .orn { font-size: 1.2rem; color: var(--gold); }

/* ====== SUBMISSION & CONTENT BLOCKS ====== */
.submission-wrap { background: var(--white); }
.submission-inner { max-width: 1160px; margin: 0 auto; padding: 72px 32px; display: grid; grid-template-columns: 200px 1fr; gap: 52px; align-items: center; }
.mascot-box { width: 160px; height: 190px; background: linear-gradient(150deg, #FFF3C4 0%, #FFE47A 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 5rem; box-shadow: 0 8px 28px rgba(212,160,23,0.18); }
.sub-h2 { font-size: 1.5rem; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; margin-bottom: 16px; }
.sub-p { font-size: 0.93rem; font-weight: 400; line-height: 1.82; color: #444; margin-bottom: 12px; text-align: justify; }
.sub-p strong { font-weight: 600; color: var(--black); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; padding: 10px 22px;
  background: transparent; color: var(--black);
  border: 2px solid var(--black); border-radius: var(--radius);
  font-family: var(--font); font-weight: 700; font-size: 0.87rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-1px); }

/* ====== WORK GRID ====== */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card { background: var(--white); border-radius: 8px; border: 1.5px solid var(--gray-light); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.work-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.09); border-color: var(--gold); }
.work-card-thumb { width: 100%; height: 140px; background: linear-gradient(135deg, #e8e0cc, #d4c9a8); display: flex; align-items: center; justify-content: center; font-size: 2.8rem; transition: transform var(--transition); }
.work-card:hover .work-card-thumb { transform: scale(1.04); }
.work-card-foot { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.work-card-foot h3 { font-size: 0.97rem; font-weight: 600; }
.work-card-foot p { font-size: 0.78rem; font-weight: 400; color: var(--gray); margin-top: 3px; line-height: 1.5; }
.wc-icon { width: 42px; height: 42px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--transition), transform var(--transition); }
.work-card:hover .wc-icon { background: var(--gold-bright); transform: rotate(8deg); }
.wc-icon svg { width: 18px; height: 18px; color: var(--black); }

/* ====== TEAM ====== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { text-align: center; padding: 26px 16px; border: 1.5px solid var(--gray-light); border-radius: 10px; background: var(--white); transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
.team-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.team-avatar { width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 14px; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; font-weight: 700; color: #7A5C00; }
.team-name { font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 0.72rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.07em; }

/* ====== LOGO PHILOSOPHY ====== */
.logo-section { background: var(--dark); padding: 72px 0; }
.logo-section-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.logo-img-box { position: sticky; top: calc(var(--nav-h) + 24px); text-align: center; }
.logo-img-box img { width: 220px; height: 220px; object-fit: contain; margin: 0 auto 16px; filter: drop-shadow(0 8px 32px rgba(212,160,23,0.28)); }
.logo-img-box p { font-size: 0.72rem; color: rgba(255,255,255,0.35); font-style: italic; }
.philo-list { display: flex; flex-direction: column; gap: 18px; }
.philo-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(212,160,23,0.18); border-radius: 10px; padding: 20px 22px; }
.philo-item-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.philo-icon { font-size: 1.4rem; flex-shrink: 0; }
.philo-title { font-size: 0.92rem; font-weight: 700; color: var(--gold); }
.philo-desc { font-size: 0.83rem; color: rgba(255,255,255,0.62); line-height: 1.75; }

/* ====== HISTORY TIMELINE ====== */
.history-wrap { background: var(--off-white); padding: 72px 0; }
.timeline { max-width: 800px; margin: 0 auto; padding: 0 32px; position: relative; }
.timeline::before { content: ''; position: absolute; left: calc(32px + 18px); top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(212,160,23,0.15)); }
.tl-item { display: flex; gap: 28px; margin-bottom: 36px; position: relative; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: var(--black); flex-shrink: 0; z-index: 1; margin-top: 2px; }
.tl-content { flex: 1; }
.tl-year { font-size: 0.7rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.tl-title { font-size: 0.97rem; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.tl-desc { font-size: 0.84rem; color: #555; line-height: 1.7; }

/* ====== VISI MISI ====== */
.vismis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vismis-card { border-radius: 12px; padding: 28px 28px; }
.vismis-card.visi { background: var(--dark); color: var(--white); }
.vismis-card.misi { background: var(--white); border: 1.5px solid var(--gray-light); }
.vismis-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.vismis-card.visi .vismis-label { color: var(--gold); }
.vismis-card.misi .vismis-label { color: var(--gold); }
.vismis-card.visi p { font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.65; font-style: italic; }
.misi-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.misi-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.84rem; color: #3a3a3a; line-height: 1.7; }
.misi-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 9px; }

/* ====== PROGRESS BAR (article reading) ====== */
.progress-bar { position: fixed; top: var(--nav-h); left: 0; right: 0; height: 3px; background: rgba(0,0,0,0.05); z-index: 999; }
.progress-fill { height: 100%; background: var(--gold); width: 0; transition: width 0.1s; }

/* ====== FOOTER ====== */
footer { background: var(--dark); color: var(--white); padding: 56px 0 0; }
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px 48px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px 72px;
}
.footer-brand-row { grid-column: 1 / -1; display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-logo { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold-light); flex-shrink: 0; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-name { font-size: 1.15rem; font-weight: 700; color: var(--gold); }
.footer-col-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 20px; color: var(--white); }
.footer-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.footer-val { color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 400; transition: color var(--transition); }
a.footer-val:hover { color: var(--gold); }
.footer-meta { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 14px; font-weight: 400; }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a {
  width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,0.16); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,160,23,0.1); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-sub-desc { color: rgba(255,255,255,0.48); font-size: 0.82rem; font-weight: 400; margin-bottom: 16px; }
.footer-sub-form { display: flex; flex-direction: column; gap: 10px; }
.footer-sub-label { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-sub-input {
  padding: 10px 14px; background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.13); border-radius: var(--radius);
  color: var(--white); font-size: 0.87rem; font-family: var(--font); outline: none;
  transition: border-color var(--transition);
}
.footer-sub-input:focus { border-color: var(--gold); }
.footer-sub-input::placeholder { color: rgba(255,255,255,0.26); }
.btn-subscribe {
  align-self: flex-start; padding: 10px 22px;
  background: var(--gold); color: var(--black);
  font-family: var(--font); font-weight: 700; font-size: 0.87rem;
  border: none; border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-subscribe:hover { background: var(--gold-bright); transform: translateY(-1px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 32px; max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.28); font-weight: 400; }

/* ====== REVEAL / ANIMATIONS ====== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce-caret { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.anim-up { animation: fadeInUp 0.7s ease both; }
.anim-d1 { animation: fadeInUp 0.7s 0.12s ease both; }
.anim-d2 { animation: fadeInUp 0.7s 0.22s ease both; }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--gold); padding: 12px 0; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; border-radius: 0; }
  .btn-support { display: none; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; border: none; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: var(--gold-light); border-radius: 0; }
  .articles-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .main-wrap { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .filter-search { display: none; }
  .page-header-inner { padding: 0 20px; }
  .post-wrap { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-logo-box { display: none; }
  .submission-inner { grid-template-columns: 1fr; gap: 28px; }
  .mascot-box { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .logo-section-inner { grid-template-columns: 1fr; gap: 32px; }
  .logo-img-box { position: static; }
  .vismis-grid { grid-template-columns: 1fr; }
  .timeline::before { left: calc(20px + 18px); }
  .more-grid { grid-template-columns: 1fr; }
  .event-hero { height: 280px; }
  .job-detail-body { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-row { grid-column: 1; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 48px 0; }
  .tab-btn { padding: 14px 16px; font-size: 0.8rem; }
  .about-bar-inner { padding: 0 18px; }
  .footer-inner { padding: 0 18px 40px; }
  .footer-bottom { padding: 18px 18px; }
  .cat-grid { grid-template-columns: 1fr; }
}