body {
    background-color:var(--blog-black);
}


/* Profile Section Styling */
.author-section {
    display: flex;
}

.author-bio {
    background-color: var(--blog-category);
    padding: 30px;
    border-radius: 20px;
    color: white;
    margin-bottom: 30px;
}

.author-profile {
    text-align: center;
    margin-right: 20px;
}

.author-profile img {
    display: block;
    margin: 0 auto; /* Ensure the image is centered */
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.author-label {
    margin-top: 10px; /* Adds space between the image and the label */
    background-color: var(--blog-yellow);
    color: var(--blog-black);
    padding: 5px 15px;
    border-radius: 10px;
    display: inline-block; /* Ensures the label sticks right below the image */
    font-weight: bold;
}

.author-details h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.author-details .location {
    font-size: 16px;
    margin-bottom: 10px;
}

.author-social-share {
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;  /* Ensure that the items wrap on smaller screens */
    color: var(--dim-white);
    font-size: 19px;
    line-height: 2.5;
    margin: 10px 0;  /* Add some spacing around the social share area */
}

.author-social-share a {
    color: var(--blog-yellow);  /* Inherit color from the parent (var(--dim-white)) */
}

.languages span {
    background-color: var(--blog-yellow);
    color: black;
    border-radius: 5px;
    padding: 0px 15px;
    text-decoration: none;
    margin-right: 10px;
    font-weight: bold;
    line-height: 2.0;
}

/* Blog Sidebar Styling */
.blog-sidebar {
    color: var(--blog-yellow);
    line-height: 1.5;
}

.blog-sidebar h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.blog-sidebar ul {
    list-style-type: none;
    padding: 0;
}

.blog-sidebar ul li {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.blog-sidebar ul li a {
    text-decoration: none;
    color: white;
}

.blog-sidebar ul li a:hover {
    text-decoration: underline;
}

.block-paragraph {
    display: block;           /* Ensure it's a block element */
    margin-bottom: 1rem;      /* Add space between paragraphs */
    line-height: 1.5;         /* Set a comfortable line height for readability */
    padding: 0;               /* Remove any unnecessary padding */
    font-family: 'Didact Gothic', Arial, sans-serif;
    /* text-align: center; */  /*Incase we change our mind!*/
  }

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (divide height by width) */
    /* padding-bottom: 75%; 4:3 aspect ratio (divide height by width) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important; /* Force iframe to take full width */
    height: 100% !important; /* Force iframe to take full height */
    border: 0;
}

.video-caption {
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
}

.flt-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

.flt-left {
    float: left;    
    margin: 0 15px 0 0;
}

.flt-right {
    float: right;    
    margin: 0 0 0 15px;
}

.caption-text {
    font-size: initial;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .author-section, .blog-sidebar {
        flex-direction: column;
    }
}