/* ========================================
   sammysideup - Style Guide
   Life, served sunny side up.
   ======================================== */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Warm pastel palette */
  --bg: #FFFDF7;
  --bg-warm: #FFF8EE;
  --bg-card: #FFFFFF;

  --accent: #D4956A;
  --accent-light: #FCEBD4;
  --accent-hover: #C07D52;

  --sage: #9DB89A;
  --sage-light: #EBF2EA;

  --lavender: #C0B3D6;
  --lavender-light: #EFEBF5;

  --rose: #D6A8AB;
  --rose-light: #F8EEEF;

  --golden: #E4C96A;
  --golden-light: #FDF6E3;

  --text: #2C2C2C;
  --text-secondary: #6B6B6B;
  --text-light: #9A9A9A;

  --border: #EDE5D8;
  --shadow-sm: 0 1px 3px rgba(44, 44, 44, 0.04);
  --shadow-md: 0 4px 16px rgba(44, 44, 44, 0.06);
  --shadow-lg: 0 8px 32px rgba(44, 44, 44, 0.08);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --max-width: 1200px;
  --nav-height: 72px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --font-accent: 'Caveat', cursive;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
}

.accent-text {
  font-family: var(--font-accent);
  color: var(--accent);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section--alt {
  background-color: var(--bg-warm);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.nav.menu-open {
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-accent);
  font-size: 1.7rem;
  color: var(--accent);
  font-weight: 700;
  transition: opacity 0.2s;
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  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);
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  padding: 2rem;
  flex-direction: column;
  gap: 0;
  flex: 1;
  overflow-y: auto;
}

.nav__mobile-menu.open {
  display: flex;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav__mobile-link:hover {
  color: var(--accent);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero__content {
  padding: 2rem 0;
}

.hero__greeting {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero__name {
  margin-bottom: 1rem;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero__description {
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.hero__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--accent);
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Decorative blob behind hero image */
.hero__image::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 70%);
  z-index: -1;
  top: -10%;
  left: -10%;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* --- Featured Posts Section (Home) --- */
.featured-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* --- Blog Card --- */
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__image-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.1rem;
}

.blog-card__image-placeholder--travel {
  background: var(--sage-light);
  color: var(--sage);
}

.blog-card__image-placeholder--lifestyle {
  background: var(--rose-light);
  color: var(--rose);
}

.blog-card__image-placeholder--culture {
  background: var(--lavender-light);
  color: var(--lavender);
}

.blog-card__image-placeholder--history {
  background: var(--golden-light);
  color: var(--golden);
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.blog-card__tag--travel {
  background: var(--sage-light);
  color: #6B8F68;
}

.blog-card__tag--lifestyle {
  background: var(--rose-light);
  color: #B07E81;
}

.blog-card__tag--culture {
  background: var(--lavender-light);
  color: #8E7DB0;
}

.blog-card__tag--history {
  background: var(--golden-light);
  color: #B8A24E;
}

.blog-card__tag--opinion {
  background: var(--accent-light);
  color: var(--accent);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  transition: color 0.2s;
}

.blog-card:hover .blog-card__title {
  color: var(--accent);
}

.blog-card__excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card__meta {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- About Teaser (Home) --- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-teaser__image {
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  background: var(--sage-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--sage);
}

.about-teaser__content h2 {
  margin-bottom: 1.2rem;
}

.about-teaser__content p {
  margin-bottom: 1.5rem;
}

/* --- About Page --- */
.about-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.about-hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--accent);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.about-hero__text h1 {
  margin-bottom: 1.5rem;
}

.about-hero__text p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-interests {
  margin-top: 3rem;
}

.about-interests h3 {
  margin-bottom: 1.5rem;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.interest-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
}

.interest-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Work Page --- */
.work-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 2rem;
  text-align: center;
}

.work-hero p {
  margin: 1rem auto 0;
  text-align: center;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 3rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline__date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.timeline__role {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.timeline__company {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.timeline__location {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.timeline__details {
  list-style: none;
}

.timeline__details li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.timeline__details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1px solid var(--accent);
}

/* Education */
.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.education-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.education-card__degree {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.education-card__school {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}

.education-card__year {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.education-card__detail {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Skills */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.skill-tag {
  padding: 0.5rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.skill-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* --- Blog Page --- */
.blog-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 2rem;
  text-align: center;
}

.blog-hero p {
  margin: 1rem auto 0;
  text-align: center;
}

.blog-filters {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 3rem;
}

.blog-filter {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.blog-filter:hover,
.blog-filter.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* --- Blog Post Page --- */
.post {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
}

.post__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.post__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.post__title {
  margin-bottom: 1rem;
}

.post__meta {
  font-size: 0.95rem;
  color: var(--text-light);
}

.post__cover {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.post__cover-placeholder {
  width: 100%;
  height: 100%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--sage);
}

.post__body {
  max-width: 720px;
  margin: 0 auto;
}

.post__body p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: none;
}

.post__body h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.post__body h3 {
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
}

.post__body blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.post__body ul, .post__body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.post__body li {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  list-style: disc;
}

.post__nav {
  max-width: 720px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}

.post__nav a {
  font-weight: 500;
  color: var(--accent);
  transition: opacity 0.2s;
}

.post__nav a:hover {
  opacity: 0.7;
}

/* --- Contact Page --- */
.contact-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 2rem;
  text-align: center;
}

.contact-hero p {
  margin: 1rem auto 0;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
  align-items: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 500;
  width: 100%;
  max-width: 400px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-link__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta p {
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: var(--font-accent);
  font-size: 1rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 968px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__image-wrapper {
    order: -1;
  }

  .hero__image {
    max-width: 300px;
    aspect-ratio: 1;
  }

  .featured-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-teaser {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-teaser__image {
    margin: 0 auto;
    max-width: 280px;
  }

  .about-hero__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__photo {
    max-width: 300px;
    margin: 0 auto;
    position: static;
    aspect-ratio: 1;
  }

  .education-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .featured-posts__grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .interests-grid {
    grid-template-columns: 1fr;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .post__body p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  h1 {
    font-size: 2rem;
  }

  .hero__image {
    max-width: 240px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
