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


.blog-header {
    color: var(--dim-white);

    font-size: 65px;
    font-family: 'Didact Gothic', Arial, sans-serif;
    font-style: normal;
    font-weight: 275;
}

.span-container {
    max-width: 500px; /* Optional: Set max width for better control */
    margin-top: 10px; /* Optional: Add some spacing */
    padding: 10px; /* Optional: Add padding if necessary */
    font-size: 25px;
  }

  .blog-txt-tag {
    color: var(--dim-white);
    font-size: 19px;
    font-family: 'Didact Gothic', Arial, sans-serif;
    font-style: normal;
    font-weight: 225;
}

ul#horizontal-list {
	list-style: none;
    padding-left: 0px;
}

ul#horizontal-list li {
	display: inline;
}

.tag-it {
    color: var(--blog-yellow);
    text-decoration: none;
    font-size: 30px;
    font-family: 'Didact Gothic', Arial, sans-serif;
    font-style: normal;
    font-weight: 225;
    line-height: normal;
}

.tag-it:hover {
    text-decoration: none;
    color: var(--blog-hover);
  }

.blog-txt-sm {
    color: var(--dim-white);
    font-size: 35px;
    font-family: 'Didact Gothic', Arial, sans-serif;
    font-style: normal;
    font-weight: 225;
}

.blog-txt-smm {
    color: var(--dim-white);
    font-size: 30px;
    font-family: 'Didact Gothic', Arial, sans-serif;
    font-style: normal;
    font-weight: 225;
}

.blog-txt-body{
    color: var(--dim-white);
    font-size: 25px;
    font-family: 'Didact Gothic', Arial, sans-serif;
    font-style: normal;
    font-weight: 200;
}

.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;
}

.author {
    color: var(--blog-yellow); 
    text-decoration: none;
}

.author:hover {
    color: var(--blog-hover);
    text-decoration: none;
}

/* Comment form */

/* Comment Button */

.comments-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.comment-btn {
    display: block;
    padding: 15px;
    font-size: 18px;
    background-color: var(--blog-yellow);
    color: var(--blog-black) !important;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.comment-btn:hover {
    background-color: var(--blog-hover);
}

/* Comment Form - Initially Hidden */
.hidden {
    display: none;
}

/* Comment Form */
#comment-form {
    background-color: var(--blog-yellow);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    line-height: initial;
    width: 100%;  /* Ensure form stays within the container */
    box-sizing: border-box;  /* Include padding and borders in width */
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;  /* Ensure inputs and textarea fill the width of the container */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;  /* Ensure padding and borders are included in the width */
}

textarea {
    resize: vertical;  /* Allow vertical resizing but no horizontal resizing */
}

.submit-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--blog-black);
    color: var(--dim-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--blog-hover);
}

/* Comment List Styling */
.comment-list {
    background-color: var(--blog-yellow);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    line-height: initial;
}

.comment-list ul {
    list-style-type: none;
}

.comment-list ul li {
    margin-bottom: 10px;
    font-size: 18px;
}


/* Social Share */

/* Style Facebook share link */
a[href*="facebook.com"] {
    background-color: #4267B2;  /* Facebook blue */
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

a[href*="facebook.com"]:hover {
    background-color: #365899;  /* Darker blue on hover */
}

/* Style Twitter share link */
a[href*="twitter.com"] {
    background-color: #1DA1F2;  /* Twitter blue */
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

a[href*="twitter.com"]:hover {
    background-color: #0d8fe8;  /* Darker blue on hover */
}

/* Style Reddit share link */
a[href*="reddit.com"] {
    background-color: #FF5700;  /* Reddit orange */
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

a[href*="reddit.com"]:hover {
    background-color: #d84300;  /* Darker orange on hover */
}

/* Style Telegram share link */
a[href*="telegram.me"], a[href*="t.me"] {
    background-color: #0088cc;  /* Telegram blue */
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

a[href*="telegram.me"]:hover, a[href*="t.me"]:hover {
    background-color: #006c9e;  /* Darker blue on hover */
}

/* Style WhatsApp share link */
a[href*="wa.me"], a[href*="whatsapp.com"] {
    background-color: #25D366;  /* WhatsApp green */
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

a[href*="wa.me"]:hover, a[href*="whatsapp.com"]:hover {
    background-color: #1EBE54;  /* Darker green on hover */
}


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

.blog-social-share a {
    text-decoration: none;  /* Ensure the links have no underlines */
    color: inherit;  /* Inherit color from the parent (var(--dim-white)) */
}
