/* ==========================================================================
   Unified Stylesheet
   ==========================================================================
   Table of Contents:
   1. Design Tokens & Custom Properties
   2. Reset & Base Styles
   3. Shared Layout & Utilities
   4. Shared Page Components
   5. Tags
   6. Visual Effects
   7. Navigation
   8. Footer
   9. Animations
   10. Page: Home / Index
       - Hero
       - About
       - Philosophy
       - Tech / Terminal
       - Work
       - Prose
       - Contact
   11. Page: Articles List
   12. Page: Single Post
   ========================================================================== */


/* ==========================================================================
   1. Design Tokens & Custom Properties
   ========================================================================== */

:root {
  /* Colors */
  --bg-base: #0a0a0a;
  --bg-surface: rgba(23, 23, 23, 0.5);
  --bg-surface-hover: rgba(23, 23, 23, 0.8);
  --bg-nav: rgba(10, 10, 10, 0.8);

  --text-white: #ffffff;
  --text-main: #d4d4d4;
  /* neutral-300 */
  --text-muted: #a3a3a3;
  /* neutral-400 */
  --text-dim: #737373;
  /* neutral-500 */
  --text-dark: #525252;
  /* neutral-600 */
  --text-darker: #404040;
  /* neutral-700 */

  --border-subtle: #171717;
  /* neutral-900 */
  --border-base: #262626;
  /* neutral-800 */
  --border-hover: #404040;
  /* neutral-700 */

  /* Typography */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, monospace;

  /* Layout */
  --max-w-content: 42rem;
  /* max-w-2xl */
  --max-w-container: 48rem;
  /* max-w-3xl */

  /* Transitions */
  --transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}


/* ==========================================================================
   3. Shared Layout & Utilities
   ========================================================================== */

.container {
  max-width: var(--max-w-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.font-mono {
  font-family: var(--font-mono);
}

.text-white {
  color: var(--text-white);
}

.text-muted {
  color: var(--text-muted);
}

.text-dim {
  color: var(--text-dim);
}

.text-dark {
  color: var(--text-dark);
}


/* ==========================================================================
   4. Shared Page Components
   ========================================================================== */

.mono-prompt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.625;
}

.section-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.section-subtitle {
  color: var(--text-white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.main-content {
  max-width: var(--max-w-container);
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.main-content .section-line {
  margin-bottom: 3rem;
}


/* ==========================================================================
   5. Tags
   ========================================================================== */

.tags-container,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-base);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  line-height: 1;
}


/* ==========================================================================
   6. Visual Effects
   ========================================================================== */

.grain {
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  background-image: url('data:image/svg+xml,%3Csvg viewBox=\'0 0 256 256\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cfilter id=\'noise\'%3E%3CfeTurbulence type=\'fractalNoise\' baseFrequency=\'0.9\' numOctaves=\'4\' stitchTiles=\'stitch\'/%3E%3C/filter%3E%3Crect width=\'100%25\' height=\'100%25\' filter=\'url(%23noise)\' opacity=\'1\'/%3E%3C/svg%3E');
  background-repeat: repeat;
  background-size: 256px 256px;
  position: fixed;
  inset: 0;
}

.section-line {
  background: linear-gradient(90deg, transparent, #333 20% 80%, transparent);
  height: 1px;
  width: 100%;
}


/* ==========================================================================
   7. Navigation
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-base);
}

.nav-container {
  max-width: var(--max-w-container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}

.nav-brand:hover {
  color: var(--text-white);
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

@media (min-width: 640px) {
  .nav-links {
    gap: 1.5rem;
  }
}

/* ---------- Contact toggle (CSS-only using :hover + :focus-within) ---------- */
.contact-wrap {
  cursor: default;
  position: relative;
  display: inline-flex;
}

.contact-wrap::after {
  content: "";
  position: absolute;
  inset: 100% 0 auto 0;
  height: 14px;
}

/* ---------- The drawer (attached to navbar, top-right) ---------- */
.drawer {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(340px, 92vw);
  background: var(--bg-nav);
  border: 1px solid var(--border-base);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;
  transition: opacity .22s ease, transform .25s cubic-bezier(.2, .9, .3, 1.2);
  transform-origin: top right;
  z-index: 60;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.drawer::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: var(--bg-nav);
  border-left: 1px solid var(--border-base);
  border-top: 1px solid var(--border-base);
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}

.drawer strong {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: var(--text-dim);
}

.drawer p.sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.drawer .row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  color: var(--text-main);
  transition: background var(--transition);
  font-size: 0.875rem;
}

.drawer .row:hover {
  background: var(--bg-surface);
  color: var(--text-white);
}

.drawer .row .ico {
  width: 32px;
  height: 32px;
  border-radius: 0.25rem;
  display: grid;
  place-items: center;
  background: var(--bg-surface);
  color: var(--text-muted);
  flex: 0 0 auto;
  border: 1px solid var(--border-base);
  transition: color var(--transition), border-color var(--transition);
}

.drawer .row:hover .ico {
  color: var(--text-white);
  border-color: var(--border-hover);
}

.drawer .row small {
  display: block;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.divider {
  height: 1px;
  background: var(--border-base);
  margin: 0.5rem 0;
}

.live-chat-btn {
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem !important;
  color: var(--text-white) !important;
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  margin-top: 0.5rem;
  padding: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-chat-btn:hover {
  background: var(--border-base) !important;
}

.contact-wrap:hover .drawer,
.contact-wrap:focus-within .drawer {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.blur-veil {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(10, 10, 10, 0.4);
  transition: opacity .25s ease;
  z-index: 40;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, transparent 64px, #000 64px, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0, transparent 64px, #000 64px, #000 100%);
}

body:has(.contact-wrap:hover) .blur-veil,
body:has(.contact-wrap:focus-within) .blur-veil {
  opacity: 1;
  pointer-events: auto;
}

body:has(.contact-wrap:hover),
body:has(.contact-wrap:focus-within) {
  overflow: hidden;
}


/* ==========================================================================
   8. Footer
   ========================================================================== */

.site-footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-text {
  color: var(--text-dark);
}

.footer-text-dim {
  color: var(--text-darker);
}

.footer-subtext {
  color: var(--text-darker);
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* ==========================================================================
   9. Animations
   ========================================================================== */

.fade-in {
  opacity: 0;
  animation: fadeUp 0.8s forwards ease-out;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-enter {
  animation: 0.5s forwards fadeUp ease-out;
  animation-delay: 0.1s;
}


/* ==========================================================================
   10. Page: Home / Index
   ========================================================================== */

/* --- Hero Section --- */

.hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
}

.cursor-blink::after {
  content: "█";
  color: var(--text-white);
  animation: 1s step-end infinite blink;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero h1 span {
  color: var(--text-muted);
}

.tags-container {
  margin-top: 2rem;
}

.hero .tag {
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

/* --- About Section --- */

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: flex-start;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
  filter: grayscale(100%);
  opacity: 0.8;
  border: 1px solid var(--border-base);
  transition: all 0.5s;
}

.about-image-wrapper:hover .about-image {
  opacity: 1;
  filter: grayscale(0%);
}

.image-caption {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-dark);
  text-align: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 200px;
  }
}

/* --- Philosophy Section --- */

.philosophy-grid {
  display: grid;
  gap: 2rem;
}

.philosophy-item p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Tech / Terminal Section --- */

.terminal-box {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.tb-header {
  background: #161616;
  border-bottom: 1px solid #222;
  align-items: center;
  display: flex;
  padding: 10px 16px;
  gap: 8px;
}

.tb-dot {
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.tb-title {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.tb-body {
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.7;
}

.tb-row {
  display: flex;
  gap: 0.75rem;
}

.tb-prompt {
  color: var(--text-dark);
  user-select: none;
  flex-shrink: 0;
}

.lang-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lang-tag {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  border: 1px solid var(--border-base);
  border-radius: 0.25rem;
  background-color: rgba(23, 23, 23, 0.3);
}

.tech-grids {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .tech-grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Work Section --- */

.work-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.work-item {
  border-left: 2px solid var(--border-base);
  padding-left: 1.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.work-meta {
  color: var(--text-dim);
  font-size: 0.875rem;
  font-family: var(--font-mono);
  margin-top: 0.25rem;
}

.work-desc {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* --- Prose Section --- */

.prose-list {
  display: flex;
  flex-direction: column;
}

.prose-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color var(--transition);
}

.prose-item:hover {
  border-color: var(--border-hover);
}

.prose-title {
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--transition);
}

.prose-meta {
  font-size: 0.75rem;
  color: var(--text-dark);
  font-family: var(--font-mono);
  margin-top: 0.25rem;
}

.prose-arrow {
  color: var(--border-hover);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.prose-item:hover .prose-arrow {
  color: var(--text-muted);
}

.all-entries-btn {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}

.all-entries-btn span {
  transition: transform var(--transition);
}

.all-entries-btn:hover {
  color: var(--text-white);
}

.all-entries-btn:hover span {
  transform: translateX(4px);
}

/* --- Contact Section --- */

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--border-base);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.contact-btn:hover {
  border-color: var(--text-dark);
  background-color: var(--bg-surface);
}

.contact-btn span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  transition: color var(--transition);
}

.contact-btn:hover span {
  color: var(--text-white);
}


/* ==========================================================================
   11. Page: Articles List
   ========================================================================== */

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1;
  }
}

.article-list {
  display: flex;
  flex-direction: column;
}

/* Article Card Styles */
.article-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color var(--transition);
  width: 100%;
}

.article-card:hover {
  border-color: var(--border-hover);
}

.article-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.article-title {
  font-size: 1.125rem;
  color: var(--text-white);
  font-weight: 600;
  line-height: 1.375;
  transition: color var(--transition);
  margin: 0;
}

@media (min-width: 640px) {
  .article-title {
    font-size: 1.25rem;
  }
}

.article-card:hover .article-title {
  color: var(--text-main);
}

.article-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.625;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.meta-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark);
}

.meta-dot {
  color: var(--border-base);
}

.article-arrow {
  color: var(--text-darker);
  font-family: var(--font-mono);
  font-size: 1.125rem;
  margin-top: 0.375rem;
  flex-shrink: 0;
  transition: color var(--transition);
}

.article-card:hover .article-arrow {
  color: var(--text-muted);
}

/* End of File Indicator */
.eof-indicator {
  padding: 2rem 0;
  text-align: center;
}

.eof-indicator p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.eof-line-1 {
  color: var(--text-darker);
}

.eof-line-2 {
  color: var(--border-base);
  margin-top: 0.25rem;
}

/* Staggered animation delays for list items */
.article-list>article:nth-child(1) {
  animation-delay: 0.1s;
}

.article-list>article:nth-child(2) {
  animation-delay: 0.2s;
}

.article-list>article:nth-child(3) {
  animation-delay: 0.3s;
}

.article-list>article:nth-child(4) {
  animation-delay: 0.4s;
}

.article-list>article:nth-child(5) {
  animation-delay: 0.5s;
}

.article-list>article:nth-child(6) {
  animation-delay: 0.6s;
}


/* ==========================================================================
   12. Page: Single Post
   ========================================================================== */

/* --- Header Section --- */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  transition: color 0.15s ease;
}

.back-link:hover {
  color: var(--text-main);
}

.back-link .arrow {
  transition: transform 0.15s ease;
}

.back-link:hover .arrow {
  transform: translateX(-4px);
}

.post-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.post-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.625;
}

.post-meta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark);
}

/* --- Content Styling --- */

.article-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-content a {
  color: darkorange;
}

.article-content p,
.article-content ul,
.article-content ol {
  color: var(--text-main);
  font-size: 0.975rem;
  line-height: 1.85;
}

.article-content ul,
.article-content ol {
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content li:last-child {
  margin-bottom: 0;
}

.article-content ul ul,
.article-content ol ul,
.article-content ul ol,
.article-content ol ol {
  margin-top: 0.5rem;
}

.article-content em {
  color: var(--text-white);
  font-style: normal;
  font-weight: 500;
}

/* Drop cap styling */
.article-content>p:first-child::first-letter {
  float: left;
  color: var(--text-white);
  margin-top: 0.05em;
  padding-right: 0.08em;
  font-size: 3.2em;
  font-weight: 700;
  line-height: 0.85;
}

/* --- Post Footer / Navigation --- */

.end-mark-container {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.end-mark-container .section-line {
  margin-bottom: 0;
}

.end-mark {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.next-post-nav {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}


.prev-post-btn,
.next-post-btn {
  display: block;
  text-align: right;
  padding: 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  transition: border-color 0.15s ease;
  text-decoration: none;
}

.prev-post-btn:hover,
.next-post-btn:hover {
  border-color: var(--text-dark);
}

.prev-post-btn {
  text-align: left;
  grid-column: 1;
}

.next-post-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.next-post-title {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.375;
  transition: color 0.15s ease;
}

.next-post-btn:hover .next-post-title {
  color: var(--text-white);
}

/* --- Post Responsive Breakpoints --- */

@media (min-width: 640px) {
  .post-title {
    font-size: 2.25rem;
  }

  .next-post-nav {
    grid-template-columns: 1fr 1fr;
  }

  .next-post-btn {
    grid-column: 2;
  }
}

@media (min-width: 768px) {
  .post-title {
    font-size: 3rem;
  }
}