/* ---------- Homepage tiles (single image sections) ---------- */
body.blogs {
    background: #34424d;
    color: #ffffff;
    padding-top: 10px;
}

/* --- Subpage social: compact utility mode --- */
.subpage-header {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    z-index: 1;
}

.subpage-header .header-image {
    display: block;
    width: 100%;
}

.subpage-header .social-links {
    position: absolute;
    z-index: 10;
    top: 3px;
    left: 3px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 10px;
    border-radius: 6px;
}

.social-compact,
.subpage-header .intro-social-v2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subpage-header .social-top,
.subpage-header .social-bottom-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Special case: YouTube row */
.subpage-header .social-top .social-link {
    justify-content: flex-start;
    padding-left: 10px !important;
    width: 100% !important;
    box-sizing: border-box;
}

.subpage-header .social-link:hover {
    background: rgba(255,255,255,0.06);
}

.subpage-header .social-icon {
    width: 18px;
    height: 18px;
    display: block;
    transform: none;
    flex-shrink: 0;
    opacity: 0.9;
}

.subpage-header .social-link.youtube {
    height: 32px;
    font-size: 13px;
    padding: 0;
    justify-content: flex-start;
    line-height: 1;
    border-color: rgba(255,255,255,0.25);
}

.subpage-header .social-link {
    height: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 0 10px;
    line-height: 1;
    color: #ffffff;
    justify-content: flex-start;
}

.subpage-header .social-link.facebook .social-icon {
    color: #2d6cdf;
}

.subpage-header .social-link.instagram .social-icon {
    color: #c13584;
}

.subpage-header .social-link.youtube .social-icon {
    height: 18px;
    width: 18px;
    transform: none;
    color: #e60000;
}

/* All Blog Content */
.blog-post {
    max-width: 74ch;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-header {
    margin: 0 0 2rem 0;
}

.blog-date {
    font-size: 0.85rem;
    opacity: 0.65;
    margin: 0 0 6px 0;
    text-align: left;
}

.blog-header h1 {
    text-align: center;
    font-size: 2.4rem;
}

.blog-content {
    margin: 0;
}

.blog-content p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
    margin: 0 0 1.2em 0;
}

.blog-content iframe {
    display: block;
    margin: 2rem auto;
    max-width: 100%;
}


