/*
Theme Name: Jody Theme
Author: Jody Yarborough
Description: Custom editorial theme for jodyar.com
Version: 1.0
*/
/* RESET / BASE */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background-color: #f6f1ea;
  color: #1f1f1f;
  line-height: 1.6;
}

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

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

a:hover {
  text-decoration: underline;
}

/* LAYOUT */

.container {
  width: min(1200px, calc(100% - 60px));
  margin: 0 auto;
}

.page {
  padding-top: 50px;
  padding-bottom: 80px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 50px;
  align-items: start;
}

/* HEADER */

.site-header {
  border-bottom: 1px solid #d8cfc6;
  padding: 30px 0 24px;
  background: #f6f1ea;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.brand-name {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.02em;
}

.brand-tagline {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #6f665f;
}

.nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5e564f;
}

.nav a:hover {
  color: #1f1f1f;
}

/* FEATURED */

.featured-post {
  padding-bottom: 28px;
  border-bottom: 1px solid #ddd2c7;
}

.featured-title {
  font-size: 2.6rem;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 10px;
}

.featured-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7a726b;
  margin-bottom: 20px;
}

.featured-image {
  float: left;
  width: 280px;
  margin-right: 24px;
  margin-bottom: 14px;
  border: 1px solid #ddd2c7;
}

.featured-content p {
  font-size: 1.05rem;
  color: #3f3a36;
}

/* ABOUT SIDEBAR */

.home-about {
  background: #fbf8f4;
  border: 1px solid #ddd2c7;
  padding: 22px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.about-title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: normal;
}

.about-text {
  font-size: 0.95rem;
  color: #4e4843;
  margin-bottom: 1em;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #d8cfc6;
  padding: 30px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.muted {
  color: #7b726a;
}

/* RESPONSIVE */

@media (max-width: 700px) {

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .featured-image {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 18px;
  }

  .container {
    width: min(100%, calc(100% - 30px));
  }

  .featured-title {
    font-size: 2.1rem;
  }
	
/* POST TAGS */

.post-tags {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #ddd2c7;
  font-size: 0.95rem;
  color: #5e564f;
}

.post-tags a {
  color: inherit;
}

.post-tags a:hover {
  color: #1f1f1f;
}