.blog-post-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-post-title {
    margin-bottom: 10px;
}

.blog-post-meta {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-post-content p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.7;
}

/* Video styling */
.blog-post-video {
    width: 100%;
    height: auto;
    margin-top: 25px;
    border-radius: 6px;
    display: block;
}

.blog-post-image {
    display: block;          /* allows margin auto to work */
    margin: 20px auto;       /* centres the image */
    max-width: 100%;         /* prevents overflow */
    width: 70%;              /* resize: adjust as needed */
    height: auto;            /* keeps correct proportions */
    border-radius: 6px;      /* optional: matches your design */
}

.blog-post-content a {
    color: #b30000;              /* dojo red accent */
    font-weight: 600;            /* slightly bold for readability */
    text-decoration: none;       /* remove default underline */
    border-bottom: 1px solid #b30000; /* subtle underline that matches theme */
    padding-bottom: 2px;         /* spacing for underline */
    transition: 0.2s ease;       /* smooth hover effect */
}

.blog-post-content a:hover {
    color: #e0d9d9;              /* off‑white hover colour */
    border-bottom-color: #e0d9d9;
}

/* Level 1 bullet list */
.blog-post-content ul {
    list-style: none;              /* remove default bullets */
    padding-left: 0;
    margin-left: 0;
}

.blog-post-content ul li {
    position: relative;
    padding-left: 22px;            /* space for custom bullet */
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
}

.blog-post-content ul li::before {
    content: "•";                  /* dojo-style bullet */
    position: absolute;
    left: 0;
    top: 0;
    color: #b30000;                /* dojo red */
    font-size: 22px;
    line-height: 1;
}

/* Level 2 bullet list */
.blog-post-content ul ul {
    margin-top: 8px;
    margin-left: 18px;             /* indent second level */
}

.blog-post-content ul ul li::before {
    content: "–";                  /* dash for second level */
    font-size: 18px;
    color: #e0d9d9;                /* off-white for contrast */
}
