/* Hide the entire meta block (which usually contains date and tags) */
.sp-simpleportfolio .sp-simpleportfolio-meta {
    display: none !important;
}

/* Alternatively, if you only want to hide date and tags but keep other meta info (if any) */
.sp-simpleportfolio-created,
.sp-simpleportfolio-tags {
    display: none !important;
}
a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

body.about_project.a:hover {
  font-size:105%;
}

a:active {
  text-decoration: underline;
}
/* Target the body class for your specific page */
body.about_project {
    
}

body.about_project #sidebar-left {
    background-color: #e6f7ff; /* Light blue */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.introPhotos {
    border-radius: 8px;
    width: 75%;
    height: 50%;
}

/* Target elements within the content on that specific page */
body.about_project .com-content-article {
    padding-top: 30px;
    padding: 30px;
    border: 10px solid #ddd;
    border-radius: 8px;
}

/* Hide an element only on that page */
body.about_project .some-module-class {
    display: none;
}
body.about_project_content{
    border: 0.5px solid #ddd;
    border-radius: 8px;
}

.quickNavigationHeader{
  text-align: center;
}
.quickNavigation{
   border-radius: 8px;
}
.btn btn-primary btn-lg{
  width: 75%;
}

/* Optional CSS for basic styling and hover effects */
    .image-button-link {
        display: inline-block; /* Makes the link behave like a block element, but allows text to flow around it */
        line-height: 0; /* Prevents extra space below the image */
        border-radius: 5%;
    }

    .image-button-link img {
        transition: transform 0.3s ease-in-out; /* Smooth hover transition */
    }

    .image-button-link:hover img {
        transform: scale(1.05); /* Slightly enlarge image on hover */
        opacity: 0.9; /* Make it slightly transparent on hover */
    }

.mod-banners__item banneritem{
  display: inline-block; /* Makes the link behave like a block element, but allows text to flow around it */
        line-height: 0; /* Prevents extra space below the image */
        border-radius: 5%;
}
.mod-banners__item img{
  transform: scale(1.05); /* Slightly enlarge image on hover */
        opacity: 0.9; /* Make it slightly transparent on hover */
  }
.mod-banners__item :hover img {
        transform: scale(1.05); /* Slightly enlarge image on hover */
        opacity: 0.9; /* Make it slightly transparent on hover */
    }
.container-header .navbar-brand {
    color: #fff;
    margin-inline-end: auto;
    padding-top: 2.5px;
    padding-bottom: 0;
    font-size: 2rem;
    display: inline-block;
    position: relative;
}
.container-header .grid-child {
    padding: 1.5px;
}
.container-header nav {
    margin-top: 5px;
    padding: 0;
}
.container-banner {
    margin: 0 0 2px;
    display: block;
}

/* For screen sizes wider than ~768px (tablets and desktops) */
@media (min-width: 768px) {
    
    /* Change the width of the left sidebar to a fixed 300px */
    .grid-child container-sidebar-right {
        flex: 0 0 500px; /* flex property for modern browsers */
        max-width: 500px;
    }
    
    /* Adjust the main content area to take up the remaining space */
    .grid-child container-component {
        flex: 1; /* Makes the main content expand to fill the rest of the space */
        max-width: calc(100% - 500px);
    }
    
}

/* For screen sizes wider than ~992px (large desktops) */
@media (min-width: 992px) {
    
    /* You can make further adjustments for different screen sizes if needed */
    .grid-child container-sidebar-right {
        flex: 0 0 350px;
        max-width: 350px;
    }
    
    .grid-child container-component {
        flex: 1;
        max-width: calc(100% - 350px);
    }
    
}