body {

    font-family: "Arial", sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #ffffff;
    direction: rtl;
  
  }
  .secular-one-regular {
    font-family: "Secular One", serif;
    font-weight: 400;
    font-style: normal;
  }
  .first-row {
    position: relative;

    margin-top: -73px;
  }
  .main-logo {
    width: 56px;
  }
  /* Components: Header */
.header {

    background: #ffffffb0;
    color: #2e2e2e;
    padding-top: 17px;
    text-align: center;
    position: relative;
    width: 100%;
  }
  
  .header-image {
    width: 100%;
    height: 450px;
    /* Set a default height for large screens */
    background-repeat: no-repeat;
    background-size: cover;
    /* Ensures the image covers the div area */
    overflow: hidden;
    background-position: top;
  }
  
  .header-image img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    object-fit: cover;
    /* Ensures the image fills the container */
    display: block;
  
  }
  .strip_info{
    margin-top: 37px;
 
  }
  .strip_image{
     background-position: center;
      
       height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  /* Main Article Title (h1) */
.title {
    font-family: "Secular One", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
    margin-top: 50px;
    line-height: 2.5rem;
  }
  
  /* Subtitle (h2) */
  .subtitle {
    font-family: "Secular One", sans-serif;
     color: var(--secondary-color);
    margin-bottom: 15px;
  
  
    font-size: 1.25rem; /* Set the font size */
     line-height: 1.4; /* Adjust the line spacing */
    
  
  }

  /* Main Article Credit */
.main-article-credit {
    font-size: 0.92rem;
    color: var(--tertiary-color);
  
    margin-top: 10px;
    font-style: italic;
    /* Optional: italic style for credit */
  }
  
  /* Optional: Styling for the author's name, date, etc. */
  .main-article-credit span {
    display: inline-block;
    margin-right: 5px;
  }
  .label {
    display: inline-block;
    font-size: 0.8rem;
    /* Adjust size to make the label smaller */
    font-weight: bold;
    color: #fff;
    box-shadow: 0px 5px 8px 0px rgb(2 2 2 / 17%);
    /* White text for visibility */
    background-color: var(--red-color);
    /* Blue background (you can change this) */
    padding: 5px 10px;
    /* Adjust padding for better size */
    border-radius: 15px;
    /* Rounded corners */
    text-transform: uppercase;
    /* Make label text uppercase */
    position: absolute;
    /* Position label at the top of the article block */
    top: 20px;
    /* Distance from the top */
    /*left: 10px;  Distance from the left side */
    right: 20px;
    /* Distance from the right side */
    z-index: 10;
    /* Ensure the label stays on top of other content */
  }

.w3-row{
    position: relative;
}

  /* Components: Footer */
.footer {
    text-align: center;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    margin-top: 20px;
  }



  /* Responsive Utilities */
@media (min-width: 1024px) {

    .header-image {
      height: 650px;
      /* Adjust height for smaller screens */
  
    }
  }
  
  @media (max-width: 768px) {
    .nav-menu {
      justify-content: flex-start; /* Align items to the left */
  
    }
    .subtitle {
       font-size: 1.25rem; /* Set the font size */
       line-height: 1.4; /* Adjust the line spacing */
      display: -webkit-box; /* Use a flexbox-like container for text */
      -webkit-line-clamp: 3; /* Limit to 3 lines */
      -webkit-box-orient: vertical; /* Set the box orientation to vertical */
      overflow: hidden; /* Hide overflowing text */
      text-overflow: ellipsis; /* Add ellipsis (...) for truncated text */
    }
    .text-center {
      text-align: center;
    }
  
    .header-image {
      height: 300px;
      /* Adjust height for smaller screens */
  
    }
     
    .container {
      padding: 0 10px;
    }
  }
  
  @media (max-width: 480px) {
    .header-image {
      height: 270px;
    }
  }