.user-practical-experience ul {
   display: grid;
   list-style: none;
   margin: 0;
   padding: 0;
   grid-template-columns: repeat(2, 1fr);
   gap: 12px 30px;
   display: flex;
   flex-flow: row;
   flex-wrap: wrap;
}

.user-practical-experience ul li {
   display: flex;
   gap: 10px;
   flex-direction: row;
   align-items: center;
   line-height: 21px;
}

.user-practical-experience ul li svg {
   height: 21px;
}

.user-practical-experience ul li span {
   display: block;
   line-height: 21px;
   margin-top: 3px;
   font-family: Inter;
   font-weight: 400;
   font-size: 16px;
   letter-spacing: 0;
   color: #413D4F;
}

.user-practical-experience ul li:nth-child(odd) {
   min-width: 50%;
}

.user-highlights ul {
   margin: 0;
   padding: 0;
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 15px;
}

.user-highlights ul li a,
.user-highlights ul li span {
   color: #413D4F !important;
   font-family: Inter !important;
   font-weight: 400 !important;
   font-size: 16px;
   letter-spacing: 0;
}

.user-highlights ul li img {
   width: 18px;
   height: 22px;
}

.user-highlights ul li {
   display: flex;
   gap: 10px;
}

.areas-of-expertise ul {
   margin: 0;
   padding: 0;
   list-style: none;
   display: flex;
   gap: 15px;
   flex-direction: column;
}

.areas-of-expertise ul li {
   display: flex;
   gap: 10px;
}

.areas-of-expertise ul li span {
   display: block;
   line-height: 21px;
   color: #413D4F;
   font-family: Inter;
   font-weight: 400;
   font-size: 16px;
}

.areas-of-expertise ul li svg {
   margin-top: 2px;
}


/* ============================================================
   USER POSTS LIST - [user_posts_list]
   ============================================================ */

/* Wrapper */
.upl-wrap {
   position: relative;
}

/* --- Header --- */
.upl-header {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   margin-bottom: 60px;
}

/* --- Quick Filter Button --- */
.upl-filter-btn {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: transparent;
   border: none;
   padding: 0;
   cursor: pointer;
   color: #413D4F !important;
   transition: color 0.2s;
   user-select: none;
   font-family: Inter;
   font-weight: 500;
   font-size: 16px;
   line-height: 16px;
   letter-spacing: 0%;
}

.upl-filter-label {
   /* font-weight: 600; */
}

.upl-chevron {
   transition: transform 0.22s ease;
   flex-shrink: 0;
}

.upl-filter-btn[aria-expanded="true"] .upl-chevron {
   transform: rotate(180deg);
}

/* --- Dropdown --- */
.upl-quick-filter {
   position: relative;
   height: 18px;
   margin-top: -20px;
}

.upl-filter-dropdown {
   position: absolute;
   top: calc(100% + 10px);
   right: 0;
   z-index: 999;
   background: #fff;
   border: 1px solid #E8E6EC;
   border-radius: 12px;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
   padding: 10px 0;
   min-width: 190px;
   display: none;
   flex-direction: column;
   gap: 0;
}

.upl-filter-dropdown.is-open {
   display: flex;
}

/* --- Filter Item (label) --- */
.upl-filter-item {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 9px 16px;
   cursor: pointer;
   transition: background 0.15s;
}

.upl-filter-item:hover {
   background: #F7F5FA;
}

/* Hide original checkbox */
.upl-cat-cb {
   position: absolute;
   opacity: 0;
   width: 0;
   height: 0;
   pointer-events: none;
}

/* Custom checkbox box */
.upl-cb-box {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 16px;
   height: 16px;
   border: 1.5px solid #C4BFD2;
   border-radius: 4px;
   background: #fff;
   flex-shrink: 0;
   transition: border-color 0.15s, background 0.15s;
   position: relative;
}

/* Checkmark when checked */
.upl-cat-cb:checked~.upl-cb-box {
   background: #413D4F;
   border-color: #413D4F;
}

.upl-cat-cb:checked~.upl-cb-box::after {
   content: '';
   display: block;
   width: 9px;
   height: 5px;
   border-left: 1.8px solid #fff;
   border-bottom: 1.8px solid #fff;
   transform: rotate(-45deg) translate(1px, -1px);
}

.upl-cat-name {
   font-family: Inter, sans-serif;
   font-size: 14px;
   color: #413D4F;
   line-height: 1.4;
}

/* --- Post Grid --- */
.upl-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 40px 30px;
   min-height: 100px;
   transition: opacity 0.2s;
}

.upl-grid.is-loading {
   opacity: 0.45;
   pointer-events: none;
}

@media (max-width: 900px) {
   .upl-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 580px) {
   .upl-grid {
      grid-template-columns: 1fr;
   }
}

/* --- Card --- */
.upl-card {
   display: flex;
   flex-direction: column;
   border-radius: 15px;
   overflow: hidden;
   background: #fff;
}

.upl-card-thumb {
   display: block;
   aspect-ratio: 380/225;
   overflow: hidden;
}

.upl-card-thumb img {
   width: 100%;
   height: 100% !important;
   object-fit: cover;
   transition: transform 0.35s ease;
}

.upl-card-thumb:hover img {
   transform: scale(1.04);
}

.upl-card-body {
   padding: 30px 25px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   flex: 1;
}

/* Card Meta (author/reviewer) */
.upl-card-meta {
   font-family: Inter, sans-serif;
   font-size: 13px;
   font-weight: 400;
   line-height: 18px;
   letter-spacing: 0;
   color: #413D4F;
   margin-bottom: 5px;
   margin-top: 5px;
}

.upl-card-meta .dot {
   margin: 0 4px;
   color: #C4BFD2;
}

/* Category tag */
.upl-card-tag {
   display: inline-block;
   padding: 6px 10px;
   border-radius: 30px;
   background-color: #E4CDEB;
   color: #413D4F;
   width: fit-content;
   transition: background 0.2s;
   font-size: 13px;
   line-height: 17px;
   letter-spacing: 0px;
   text-align: center;
   vertical-align: middle;
   text-transform: uppercase;
   text-decoration: none !important;
   margin-bottom: 10px;
   font-weight: 400 !important;
}

.upl-card-tag:hover {
   background: rgba(65, 61, 79, 0.16);
}

.upl-card-title {
   margin: 0;
   font-family: Inter, sans-serif;
   font-size: 17px;
   font-weight: 600;
   line-height: 1.45;
   color: #1C1B22;
}

.upl-card-title a {
   color: #413D4F;
   transition: color 0.2s;
   font-size: 22px;
   line-height: 30px;
   letter-spacing: 0;
   text-decoration: none !important;
   font-weight: 400 !important;
}

.upl-card-title a:hover {
   color: #413D4F;
   text-decoration: underline;
}

.upl-card-date {
   color: #413D4FCC;
   font-family: Inter;
   font-weight: 400;
   font-size: 13px;
   line-height: 130%;
   letter-spacing: 0%;
   text-transform: uppercase;
}

/* --- No-posts --- */
.upl-no-posts {
   grid-column: 1 / -1;
   text-align: center;
   padding: 40px 0;
   color: #9B97A8;
   font-family: Inter, sans-serif;
   font-size: 15px;
}

/* --- Load More --- */
.upl-loadmore-wrap {
   display: flex;
   justify-content: center;
   margin-top: 60px;
}

.upl-loadmore-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 17px 52px 15px;
   border-radius: 50px;
   background: #21B07D;
   color: #fff;
   border: none;
   cursor: pointer;
   transition: background 0.2s, transform 0.15s;
   font-family: Soleil;
   font-weight: 700;
   font-size: 16px;
   line-height: 27px;
   letter-spacing: 1px;
   text-align: center;
   vertical-align: bottom;
   text-transform: uppercase;
}

.upl-loadmore-btn:hover {
   background: #2C2935;
   transform: translateY(-1px);
}

.upl-loadmore-btn:disabled {
   opacity: 0.5;
   cursor: not-allowed;
   transform: none;
}

@media screen and (max-width: 768px) {
   .upl-header {
      margin-bottom: 30px;
   }

   .upl-quick-filter {
      margin-top: 30px;
   }
}