/********************* 
   About Page Items 
**********************/

#profile-container {
   display: block;
   width: 100%;
   padding-bottom: 1rem;
   z-index: 1;
   animation: fadeInUp 0.8s ease forwards;
   opacity: 0;
 }
 
 .image-wrapper {
   position: relative;
   width: 100%;
   height: 25rem;
   overflow: hidden;
 }
 
 /* the image itself */
 .image-wrapper img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   display: block;
 }
 
 .image-wrapper::after {
   content: "";
   position: absolute;
   inset: 0;
   pointer-events: none;
   background: linear-gradient(
     to bottom,
     #f9f9f9 0%,
     rgba(255,255,255,0) 10%,
     rgba(255,255,255,0) 90%,
     #f9f9f9 100%
   );
 }
 
 .text-wrapper {
   padding-top: 0.5rem;
   font-size: 2.2rem;
 }
 
 .profile-title {
   color: #333;
   font-weight: bold;
   font-size: 1em;
 }
 
 .profile-subtitle {
   color: #444;
   font-size: .6em;
 }
 

.about-paragraph {
   width: 90%;
   max-width: 800px;
   margin: 0 auto;
   padding: 1rem;
   text-align: justify;
   font-size: 1.2rem;
   line-height: 1.6;
   color: #222;
   opacity: 0;
   animation: fadeInUp 0.8s ease forwards;
}

.about-image-container {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 20rem;
   width: 90%;
   margin: 0 auto;
   padding: 1rem;
   text-align: left;
   animation: fadeInUp 0.8s ease forwards;
   opacity: 0;
}

.about-image-container-reverse {
   display: flex;
   justify-content: center;
   flex-direction: row-reverse;
   align-items: center;
   height: 20rem;
   width: 90%;
   margin: 0 auto;
   padding: 1rem;
   text-align: right;
   animation: fadeInUp 0.8s ease forwards;
   opacity: 0;
}

.about-image {
   width: 60%;
   height: 100%;
   border-radius: 10px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-image-caption-container {
   display: flex;
   flex-direction: column;
   justify-content: center;
   width: 40%;
   height: 100%;
   margin-left: 1rem;
   margin-right: 1rem;
   font-size: 1.5rem;
}

.about-image-title {
   height: auto;
   font-size: 1em;
   font-weight: bold;
   color: #242424;
}

.about-image-caption {
   height: auto;
   font-size: 0.9em;
   font-style: italic;
   color: #242424;
}