.cv-card {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.cv-card__title-text {
  font-size: 24px;
  color: #3F51B5;
  margin-bottom: 10px;
}

.cv-card__supporting-text {
  font-size: 16px;
  line-height: 1.6;
}

.cv-card__content {
  display: flex;
}

.cv-card__info {
  flex: 1;
}

.cv-card__headshot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 350px;
  border: 1px solid black;
  border-radius: 10%;
  overflow: hidden;
  padding: 0px;
}

.cv-card__title {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .cv-card__title {
    flex-direction: column;
    align-items: flex-start;
  }

  .cv-card__headshot {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    height: auto;
  }
}


.cv-experience-header-card  > .mdl-card__title{
  color: #000;
  background-color: #e0e0e0;
} 


.cv-experience-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cv-experience-header {
  margin-bottom: 15px;
}

.cv-position-title {
  font-size: 20px;
  color: #757575;
  margin: 0;
  font-weight: bold;
}

.cv-date-range {
  font-size: 14px;
  color: #757575;
  margin: 5px 0;
}

.cv-company-name {
  font-size: 16px;
  color: #333;
  margin: 5px 0;
  font-weight: bold;
}

.cv-company-location {
  font-size: 14px;
  color: #757575;
  margin: 5px 0;
}

.cv-experience-content p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #424242;
}

@media (max-width: 768px) {
  .cv-experience-card {
    padding: 15px;
  }

  .cv-position-title {
    font-size: 18px;
  }

  .cv-company-name {
    font-size: 15px;
  }

  .cv-company-location {
    font-size: 13px;
  }

  .cv-experience-content p {
    font-size: 15px;
  }
}

.cv-list-icon {
  width: 300px;
}

.cv-profile-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cv-profile-image {
  flex: 1;
  max-width: 300px; /* Set a maximum width to control image size */
  margin-right: 20px; /* Adds space between the image and text */
}

.cv-profile-image img {
  width: 100%; /* Ensures the image scales responsively */
  height: auto; /* Maintains the aspect ratio */
  display: block;
}

.cv-profile-text {
  flex: 2; /* Ensures text takes up remaining space */
}

@media (max-width: 1024px) {
  .cv-profile-container {
    flex-direction: column;
    align-items: center;
    padding-right: 0;
  }

  .cv-profile-image,
  .cv-profile-text {
    width: 100%; /* Stacks the image and text at full width */
    text-align: center;
    margin: 0; /* Centers image on smaller screens */
  }

  .cv-profile-text {
    text-align: left;
    max-width: 90%;
    margin: 0 auto;
  }
}
