/* cl-portfolio-single-item.css */

body.single-portfolio_item,
.portfolio-single-container {
  background-color: #202020; /* Dark anthracite */
  color: #ffffff;
}

.portfolio-single-container {
  padding: 2rem 0;
  text-align: center;
}

.portfolio-media {
  width: 80%;
  margin: 0 auto;
  position: relative;
  background-color: #202020;
}

.portfolio-image {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-video-wrapper {
  position: relative;
  background-color: #202020;
}

.portfolio-video {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.portfolio-description {
  display: inline-block; /* shrink-wraps the element */
  margin: 1rem auto;   /* centers the block */
  text-align: center;    /* centers text inside the block */
  font-size: 1.2rem;
  width: 70%;
}

.portfolio-attributes {
  width: 70%;
  margin: 1rem auto;
  text-align: left;
  background: #202020;
  padding: 0rem;
  border-radius: 4px;
}

.portfolio-attributes p {
  margin: 0.5rem 0;
}

body.portfolio_item-template-default .main-header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 95%; /* Use a percentage for responsive width */
    z-index: 9999;
	background: #202020;
}