/* ===========================================================
   MITCHELL & SON — INDUSTRIAL BLOG STYLESHEET
   /blog/style.css
=========================================================== */

/* GLOBAL RESET */
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, sans-serif;
    background: #f7f9fb;
    color: #0f0f10;
}

/* -----------------------------------------------------------
   HEADER
----------------------------------------------------------- */
.ms-header {
    background: #ffffff;
    border-bottom: 3px solid #d8ae09;
    padding: 12px 0;
}

.ms-header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}

.ms-logo {
    font-size: 22px;
    font-weight: 700;
    color: #002b5e;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.ms-nav a {
    color: #002b5e;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}
.ms-nav a:hover {
    color: #d8ae09;
}

/* -----------------------------------------------------------
   MAIN LAYOUT WRAPPER
----------------------------------------------------------- */
.ms-main {
    max-width: 1200px;
    margin: auto;
    padding: 40px 16px;
}

/* -----------------------------------------------------------
   BLOG HERO SECTION
----------------------------------------------------------- */
.blog-hero {
    text-align: center;
    margin-bottom: 40px;
}
.blog-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #002b5e;
    margin-bottom: 10px;
}
.blog-hero p {
    font-size: 18px;
    color: #333;
}

/* -----------------------------------------------------------
   GRID OF POSTS
----------------------------------------------------------- */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.post-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e3e8ee;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.post-thumb {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.post-card h2 {
    font-size: 22px;
    color: #002b5e;
    margin: 10px 0;
}
.post-card h2 a {
    color: inherit;
    text-decoration: none;
}
.post-card h2 a:hover {
    color: #d8ae09;
}

.post-meta {
    font-size: 14px;
    color: #666;
}

.post-desc {
    font-size: 15px;
    margin: 10px 0;
}

.read-more {
    margin-top: auto;
    font-weight: 600;
    color: #002b5e;
    text-decoration: none;
}
.read-more:hover {
    color: #d8ae09;
}

/* -----------------------------------------------------------
   ARTICLE PAGE
----------------------------------------------------------- */
.article-hero {
    text-align: center;
    margin-bottom: 20px;
}
.article-hero h1 {
    font-size: 40px;
    color: #002b5e;
    font-weight: 800;
}
.article-date {
    font-size: 15px;
    color: #666;
}

.article-main-image {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    display: block;
    border-radius: 12px;
}

.article-body {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e3e8ee;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    line-height: 1.7;
    font-size: 18px;
    color: #222;
}

.article-body h2 {
    color: #002b5e;
    margin-top: 30px;
}
.article-body h3 {
    color: #0f0f10;
    margin-top: 25px;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
.ms-footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    background: #ffffff;
    border-top: 2px solid #d8ae09;
    color: #333;
}

.fixed-img {
  width: 300px;
  height: 200px;
}

