* {
    box-sizing: border-box;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.site-header {
    background: #111;
    color: #fff;
    padding: 18px 20px;
}

.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

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

.site-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.site-nav a:hover {
    text-decoration: underline;
}

.post-page {
    padding: 40px 20px;
}

.post-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.post-label {
    display: inline-block;
    padding: 6px 10px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.post-title {
    margin: 0 0 15px;
    font-size: 38px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.post-featured-image {
    margin-bottom: 25px;
}

.post-excerpt {
    font-size: 20px;
    color: #444;
    margin-bottom: 25px;
}

.post-body {
    font-size: 18px;
    line-height: 1.8;
}

.post-video-section {
    margin-top: 35px;
}

.post-video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 18px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.post-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.post-youtube-link {
    margin-top: 0;
}

.post-youtube-link a {
    display: inline-block;
    padding: 12px 16px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

.post-youtube-link a:hover {
    background: #333;
}

.post-blocks {
    margin-top: 35px;
}

.post-block {
    margin-top: 30px;
}

.post-block-text-content {
    font-size: 18px;
    line-height: 1.8;
}

.post-block-image-wrap img {
    width: 100%;
    border-radius: 8px;
}

.post-block-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.post-block-credit {
    margin-top: 6px;
    font-size: 13px;
    color: #777;
}

/* -----------------------------------------
   Browse Pages / Articles / Reviews
----------------------------------------- */

.browse-page {
    padding: 40px 20px 60px;
}

.browse-container {
    max-width: 1200px;
    margin: 0 auto;
}

.browse-title {
    margin: 0 0 10px;
    font-size: 40px;
    line-height: 1.2;
}

.browse-intro {
    margin: 0 0 30px;
    font-size: 18px;
    color: #555;
    max-width: 760px;
}

.browse-empty {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.browse-empty p {
    margin: 0;
    color: #666;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.post-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card-image {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f5f5f5;
    text-decoration: none;
    line-height: 0;
    border-bottom: 1px solid #eee;
}

.post-card-image img {
    padding: 8px;
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.post-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
}

.post-card-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.post-card-title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.25;
}

.post-card-title a {
    text-decoration: none;
    color: #111;
}

.post-card-title a:hover {
    text-decoration: underline;
}

.post-card-excerpt {
    margin: 0 0 18px;
    color: #555;
    line-height: 1.6;
    flex: 1;
}

.post-card-link {
    display: inline-block;
    text-decoration: none;
    color: #111;
    font-weight: bold;
    margin-top: auto;
}

.post-card-link:hover {
    text-decoration: underline;
}

.site-footer {
    background: #111;
    color: #fff;
    padding: 24px 20px;
    margin-top: 40px;
}

.site-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 14px;
}

@media (max-width: 1000px) {
    .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .site-header-inner {
        align-items: flex-start;
    }

    .site-logo a {
        font-size: 22px;
    }

    .site-nav {
        width: 100%;
        gap: 12px;
    }

    .post-title {
        font-size: 30px;
    }

    .post-body {
        font-size: 17px;
    }

    .post-container {
        padding: 22px;
    }
}

@media (max-width: 680px) {
    .browse-title {
        font-size: 32px;
    }

    .browse-intro {
        font-size: 16px;
    }

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

    .post-card-image {
        height: 220px;
        padding: 10px;
    }
}


.home-page {
    padding-bottom: 30px;
}

.home-hero {
    padding: 40px 20px 10px;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-hero-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 34px 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.home-kicker {
    display: inline-block;
    padding: 6px 10px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.home-title {
    margin: 0 0 12px;
    font-size: 44px;
    line-height: 1.15;
}

.home-subtitle {
    margin: 0;
    font-size: 19px;
    color: #555;
    max-width: 760px;
}

.home-feature,
.home-section {
    padding: 18px 20px 0;
}

.section-heading {
    max-width: 1200px;
    margin: 0 auto 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.section-heading h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
}

.section-heading a {
    text-decoration: none;
    font-weight: bold;
}

.section-heading a:hover {
    text-decoration: underline;
}

.feature-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
}

.feature-card-image {
    display: block;
    background: #f5f5f5;
    min-height: 100%;
    text-decoration: none;
    overflow: hidden;
	padding: 12px;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.feature-card-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

.feature-card-title {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.2;
}

.feature-card-title a {
    text-decoration: none;
    color: #111;
}

.feature-card-title a:hover {
    text-decoration: underline;
}

.feature-card-excerpt {
    margin: 0 0 20px;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
    flex: 1;
}

.feature-card-link {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
}

.feature-card-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .feature-card {
        grid-template-columns: 1fr;
    }

    .feature-card-image {
        min-height: 260px;
    }

    .home-title {
        font-size: 36px;
    }

    .feature-card-title {
        font-size: 28px;
    }
}

@media (max-width: 680px) {
    .home-hero-box {
        padding: 24px 20px;
    }

    .home-title {
        font-size: 30px;
    }

    .home-subtitle {
        font-size: 17px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .feature-card-body {
        padding: 22px;
    }
}

.post-block-bullet {
    margin: 24px 0;
}

.post-bullet-group {
    margin-bottom: 20px;
}

.post-bullet-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #111;
}

.post-bullet-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.post-bullet-list li {
    margin-bottom: 6px;
    line-height: 1.6;
    color: #333;
}

.post-bullet-symbol {
    display: inline-block;
    min-width: 18px;
    font-weight: bold;
}