.hidden-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
    text-align: center;
  }
  .content-container {
  	display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 5px;
  }
  
.content-container img {
    border-radius: 3px;
    max-height: 220px;
    object-fit: cover;
}

.content-container .front {
    min-height: 250px;
    object-fit: unset;
}

  .content-container hr {
  	border-top: 3px solid #eee;
  }
  
  .show-btn {
    cursor: pointer;
    color: blue;
    text-decoration: none;
    margin-top: 12px;
  }
  
  .middle-container {
    background-color: #FAFAFA;
    border-radius: 7px;
  }
  
/*Motivace na stránce BLOK*/
.image-container {
  position: relative;
  width: 130vw;
  left: -23%;
  height: 300px; /* Adjust the height as needed */
  background-image: url('/sites/default/files/inline-images/coworking.jpg');
  background-size: cover;
  background-position: center;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75); /* Adjust the alpha value for darkness */
}

.text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center; /* Align text in the middle */
}

.text-line {
    font-size: 6em;
    line-height: 1;
    letter-spacing: 6px;
    margin-bottom: auto;
    margin-top: auto;
}

.text-line:nth-child(2) {
  opacity: 0.7; /* Adjust opacity for the second line */
  font-size: 1em;
}

/* Media queries for tablet and phone */
@media (max-width: 768px) {
  .text-line {
    font-size: 4em; /* Adjust font size for tablets */
  }
  .image-container {
  	height: 230px;
  }
  
}
