/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

/* Album info */
.d-block .row .col .card .album-info{
 background-color:#232323;
}

/* Album info */
.mt-lg-0 .card .album-info{
 background-color:#232323;
}

img {
  max-width: 100%;
  height: auto; /* Maintains aspect ratio */
  display: block; /* Removes extra space below images */
}

/* Ensure consistent spacing and remove whitespace issues */
.icon-link:not(:last-child) {
    margin-right: 0.5rem; /* or your preferred spacing */
}

.author-profile {
  background-color: #1c1c1c !important;
  position: relative;
  border: 1px dotted #555555; /* A noticeably lighter gray */
  padding-left: 0px;
  padding-right: 14px;
  padding-top: 14px; 
}

.author-avatar {
  position: absolute;
  top: 18px; /* Adjust as needed */
  left: 25px; /* Adjust as needed */
  width: 45px; /* Set image size */
  height: 45px; /* Set image size */
  border-radius: 50%; /* Make the image round */
  object-fit: cover; /* Ensures the image fills the area without distorting */
  /* Add any other styling for the avatar (e.g., border, box-shadow) */
}

.author-details {
  margin-left: 85px;
  margin-right: 5px; 
  font-size: 14px !important;
  /* Add any other styling for the author's details (e.g., font styles, spacing) */
}

.comment {
    padding: 10px 0;
}
.author {
    font-weight: bold;
}
.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
}
.nested-replies {
    margin-left: 20px;
    padding-left: 10px;
}
.actions {
    font-size: 12px;
    color: #666;
}
.nested-replies .comment {
    margin-bottom: 0;
}

/* Global layout protection */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  background-color: #1c1c1c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Album info */
.col-md-12 .card .album-info,
#meta .card .album-info {
  background-color: #232323;
}

/* Card body (list view, permalinks, conversations) */
.post-list .card-body,
#content .perma .card-body,
#content .microblog_conversation {
  background-color: #232323;
  transform: translateX(0px) translateY(0px); /* now using proper casing */
  opacity: 1;
}

/* Post image — specific context (likely grid layout) */
.container-fluid-lg .row #content .post-list .NotesPhotography .post-image {
  height: none !important;
}

/* Syndication link spacing */
.u-syndication {
  margin-right: 0.5rem;
}
.u-syndication:last-child {
  margin-right: 0;
}

/* Archive heading */
.perma h5 {
  line-height: 2.5em;
}

/* Sidebar title */
#sidebar a h1 {
  font-family: 'Fira Sans Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  color: #ced4da;
  transform: translateX(0px) translateY(0px);
}

/* Hide sidebar and content icons/images */
#sidebar .d-flex img,
#content .d-flex img {
  width: 0px;
  height: 0px;
  opacity: 0.9;
  mix-blend-mode: multiply;
  background-color: #ced4da;
  filter: invert(20%);
}

/* Content heading */
#content a h1 {
  font-family: 'Fira Sans Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 26px;
  color: #ced4da;
}

/* Subheading */
#content .py-2 h2 {
  color: #ced4da;
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  .perma h5 {
    transform: translateX(0px) translateY(0px);
  }

.bg-marquee {
  background-color: #232323 !important;
}

  #content {
    padding-top: 20px !important;
  }

  /* Restore mobile-specific image style (contextual) */
  .container-fluid-lg .row #content .post-list .NotesPhotography .post-image {
    height: auto !important;
  }

  .post-list .NotesPhotography .post-image {
    overflow: hidden;
    max-height: none !important;
  }

  /* Hamburger */
  #hamburger {
    background-attachment: scroll;
    width: 100% !important;
    direction: ltr;
    transform: scale(0.6);
    transform-origin: top left;
    margin-left: 0;
    position: relative;
    left: 0;
    top: 0;
    padding: 0;
    display: inline-block;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    background-color: #ced4da !important;
    border-radius: 0.75px;
    height: 1.5px;
    left: 0;
  }
}