@charset "UTF-8";

.profile-page {
  display: flex;
  gap: 16px;
  flex-direction: column;
  color: #333;
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: normal;
}

.profile-page__header {
  display: flex;
  gap: 16px;
  align-items: center;
  /* [101424TIN] Adjust spacing top - bottom */
  padding: 60px 0 30px;
  box-sizing: border-box;
}

.profile-page__body {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 120px;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}

.profile-page .profile-section {
  display: flex;
  gap: 16px;
  /* flex-direction: row; */
  /* [101424TIN] To column & center text, center elements */
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
	max-width: 100%;
}

@media (min-width: 480px) and (max-width: 785px) {
  .profile-page .profile-section {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 479px) {
  .profile-page .profile-section {
    flex-direction: column;
    text-align: center;
    /* [090125TIN] Update padding */
    padding: 0;
  }
}

.profile-page .profile-section__avatar {
  flex-basis: 200px;
  background-size: cover;
  background-position: center;
  width: 200px;
  /* padding: 0 40px; */
}

.profile-page .profile-section__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

@media (min-width: 480px) and (max-width: 785px) {
  .profile-page .profile-section__avatar {
    margin: 0 auto;
    max-width: 250px;
    max-height: 250px;
    padding: 0;
  }
}

@media (max-width: 479px) {
  .profile-page .profile-section__avatar {
    margin: 0 auto;
    /* [101424TIN] Adjust image size */
    max-width: 150px;
    max-height: 150px;
    padding: 0;
  }
}

.profile-page .profile-section__info {
  flex-grow: 1;
  display: flex;
  gap: 22px;
  flex-direction: column;
}

.profile-page .profile-section__name {
  font-size: 32px;
  font-weight: 600;
	/* [020625TIN] Uppercase for name */
  text-transform: capitalize;
}

.profile-page .profile-section__summary {
  display: flex;
  gap: 42px;
  width: 100%;
  /* [101424TIN] Center elements */
  justify-content: center;
}

/* [101424TIN] Set max-width for bio text */
.profile-page .profile-section__bio {
  max-width: 800px;
}

@media (min-width: 480px) and (max-width: 785px) {
  .profile-page .profile-section__summary {
    justify-content: center;
  }
}

@media (max-width: 479px) {
  .profile-page .profile-section__summary {
    justify-content: space-evenly;
    padding: 0 30px;
    /* [020325TIN] Increase gap */
    /*gap: 26px;*/
    margin: 0 auto;
    box-sizing: border-box;
    /* [090125TIN] Wrap content & adjust gap */
    flex-wrap: wrap;
    gap: 12px;
  }
}

.profile-page .profile-section__summary .profile-summary-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
}

.profile-page .profile-section__summary .profile-summary-item__highlight {
  font-weight: 600;
}

.profile-page .profile-page-filter {
  display: flex;
  gap: 22px;
  width: 100%;
  max-width: 400px;
  justify-content: space-evenly;
  margin: 0 auto;
}

.profile-page .profile-page-filter__item {
  box-sizing: border-box;
  display: flex;
  padding: 20px 0;
  border-top: 2px solid transparent;
  color: #666;
  cursor: pointer;
  flex-direction: row;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.profile-page .profile-page-filter__item--active {
  border-top-color: #333;
  color: #333;
}

.profile-page .profile-card-grid {
  display: grid;
  /* [020325TIN] Adjust grid column to 4 */
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 20px;
}

@media (min-width: 480px) and (max-width: 785px) {
  .profile-page .profile-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}

@media (max-width: 479px) {
  .profile-page .profile-card-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }
}

.profile-page .profile-post-card {
  width: 100%;
  position: relative;
	/* [020325TIN] Adjust layout to show title above image */
/*   display: flex; */
/*   flex-direction: column; */
/*   gap: 8px; */
}

@media (max-width: 479px) {
  .profile-page .profile-post-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

@media (min-width: 480px) and (max-width: 785px) {
  .profile-page .profile-post-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.profile-page .profile-post-card__image {
  width: 100%;
/*   height: 300px; */
	/* [020325TIN] Decrease height */
  height: 250px;
  display: block;
}

.profile-page .profile-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* [020325TIN] Adjust layout to show title above image */
.profile-page .profile-post-card__info {
  position: absolute;
  width: 100%;
	flex: 1;
  height: 100%;
/*   display: none; */
	  display: flex;
  flex-direction: column;
  gap: 12px;
/*   justify-content: flex-end; */
	/* [020325TIN] Adjust vertical alignment to start */
  justify-content: flex-start;
  z-index: 1;
  top: 0;
  left: 0;
  box-sizing: border-box;
	padding: 16px;
/*   padding: 0; */
/*   background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); */
	/* [120224TIN] Change gradient color */
/*   background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255 215 156) 100%); */
	background: linear-gradient(180deg, rgb(255 215 156) 0%, transparent 100%);
  transition: all 0.2s;
  border-radius: 12px;
}

@media (max-width: 479px) {
  .profile-page .profile-post-card__info {
    display: flex;
    position: unset;
    height: fit-content;
    background-color: transparent;
    background: transparent;
  }
}

@media (min-width: 480px) and (max-width: 785px) {
  .profile-page .profile-post-card__info {
    display: flex;
    position: unset;
    height: fit-content;
    background-color: transparent;
    background: transparent;
  }
}

.profile-page .profile-post-card:hover .profile-post-card__info {
  display: flex;
}

.profile-page .profile-post-card__title {
  /* [020325TIN] Adjust font size */
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-page .profile-post-card__title:hover {
  text-decoration: underline;
  cursor: pointer;
}

.profile-page .profile-post-card__meta {
  display: flex;
  gap: 20px;
}

.profile-page .profile-post-card .profile-post-meta-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

.profile-page .profile-post-card .profile-post-meta-item__icon svg {
  height: 24px;
  width: auto;
}

/*# sourceMappingURL=profile-happyhandspottery.css.map */