@charset "UTF-8";

/* =========================================
   1. BASE (Biến & Reset)
   ========================================= */
@font-face {
  font-family: Gotham; /* Tên bạn tự đặt để gọi sau này */
  src: url("../fonts/Futura\ Medium.otf") format("otf"); /* Đường dẫn file */ /* Khai báo đây là kiểu đậm */
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* --- Colors --- */
  --c-text-main: #00146e;
  --c-text-white: #ffffff;
  --c-bg-body: #ffffff;

  /* --- Fonts --- */
  /* Bạn nhớ cài font Futura vào máy hoặc import nhé */
  --f-en: Gotham, sans-serif;
  --f-jp: "SicUVeiw", sans-serif;

  /* --- Font Sizes (Mobile Base) --- */
  --fs-10: 10px;
  --fs-12: 12px;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-62: 62px;

  /* --- Spacing --- */
  --sp-padding-side: 15px;

  /* Header height */
  --head-height: 48px;
}

/* Reset cơ bản */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: var(--f-jp);
  font-size: var(--fs-12);
  color: var(--c-text-main);
  background-color: var(--c-bg-body);
  line-height: 1.6;
  overflow-x: hidden;
}

button {
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

/* Utility Class */
.u-font-futura {
  font-family: var(--f-en);
  font-weight: 700;
}
.u-uppercase {
  text-transform: uppercase;
}

.archives {
  margin: var(--head-height) 0 0 0;
  padding: 32px 16px 72px 16px;
}

.flex-w-3 {
  max-width: 30%;
}

.flex-w-7 {
  max-width: 70%;
}

.archives > figure {
  padding: 0 0 16px 0;
}

/* ARCHIVES ページ */
.archives {
  padding: 32px 16px 80px 16px;
}

.archives > figure > img {
  margin: 0 auto;
}

.archives__list > li {
  display: flex;
  gap: 8px;
  padding: 0 0 8px 0;
  justify-content: center;
}

.archives__list > li:nth-child(odd) {
  flex-direction: row;
  width: 100%;
}

.archives__list > li:nth-child(even) {
  flex-direction: row;
  width: 100%;
}

.archives__list {
    padding: 0 16px;
}

.archives__list li:nth-child(odd) .archives__img:nth-child(odd) {
  flex: 3.35;
}

.archives__list li:nth-child(odd) .archives__img:nth-child(even) {
  flex: 6;
}

.archives__list li:nth-child(even) .archives__img:nth-child(even) {
  flex: 3.35;
}

.archives__list li:nth-child(even) .archives__img:nth-child(odd) {
  flex: 6;
}

.archives__img > img {
  height: 100%;
  object-fit: cover;
}
