.hover-group {
    display: flex;
    gap: 10px; /* Adds spacing between the link and text */
}

.hover-group a,
.hover-group span {
    transition: color 0.3s, text-decoration 0.3s;
}

.hover-group:hover a,
.hover-group:hover span {
    color: blue;
    text-decoration: underline;
}

.bio-arrow {
    opacity: 0.4;      /* Adjust opacity to your liking */
    font-weight: lighter;  /* Or use a specific numeric value like 300 if needed */
    color: inherit;    /* Ensures it inherits the font color, or you can set a specific color */
}

body {
            background-color: #d8e1dd;
            color: black;
            font-family: monospace;
            font-size: 14px;
            white-space: pre-wrap;
			margin: 20px;
        }
        
.header {
            font-weight: bold;
        }
				
.ext-link {
            color: blue;
            text-decoration: none;
        }

.ext-link:hover {
            color: blue;
            text-decoration: underline;
}        
        
       
.poem-link {
            color: black;
            text-decoration: none;
        }
        
.poem-link:hover {
            color: blue;
            text-decoration: underline;
        }
				
.quote {
	 opacity: 0;
}					
		
.quote:hover {
            opacity: 1;
        }
        
.section-title {
            font-weight: bold;
            margin-top: 20px;
        }


.job-container {
            display: flex;
            align-items: center;
            position: relative;
        }
        
.job-details {
            position: absolute;
            left: 300px; /* Adjust as needed */
            opacity: 1;
            transform: translateX(-20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            border-radius: 5px;
            width: 600px;
            display: flex;
            flex-direction: column;
            margin-left: 20px;
        }


.job-image {
  transition: transform 0.3s ease;
}

.job-image:hover {
  transform: scale(1.1); /* 10% larger */
}



.job-image--helix {
            width: 25%;
            height: auto;
            margin-left: 20px;
            padding: 24px;
}

.job-image--fetti {
    width: 33%;
    height: auto;
}

.job-image--uhpl {
    width: 30%;
    height: auto;
    padding: 28px;
    margin-left: 20px;
}

.job-image--mni {
    width: 50%;
    height: auto;
    padding: 28px;
    margin-left: 20px;
}

#jobDetails a {
    display: inline-block;
    text-decoration: none;
}
  
#jobDetails a img {
    display: block;
    border: none;
    max-width: 100%;
    height: auto;
}

.bio-image {
    width: 40%;
    height: auto;
}
  



/* Container for the row of tracks */
.electronic-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 20px 0;
}

/* Style for each embedded player */
.electronic-row iframe {
    width: 250px;
    height: 200px;
    border: none;
    opacity: .8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}


/* Optional hover effect to give a slight lift to the card */
.electronic-row iframe:hover,
.electronic-row iframe + div:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}