/* ============================================
YOUR DREAM PROJECT - Service Items Navigation
Makes clickable services clearly look like links
Colour matched to heading navy: #033D5C
============================================ */
/* Style service title links as navy blue clickable links */
.t1107__title a {
    color: #033D5C !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
}

/* Hover: slightly lighter shade of the same navy */
.t1107__title a:hover {
    color: #055a87 !important;
    text-decoration-color: #E46B25 !important;
}

/* Cursor pointer on entire card for better UX */
.t1107__col {
    cursor: pointer;
}

/* ============================================
HIDE "Invest with us" - desktop and mobile
Hides nav links and footer links
============================================ */

/* Hide "Invest with us" links everywhere (nav, footer, mobile menu) */
a[href*="/invest"],
a[href="https://mytrustedbuilder.co.uk/invest"] {
    display: none !important;
}

/* Hide the parent list item too so no gap is left */
a[href*="/invest"] + *,
.t450__list_item:has(a[href*="/invest"]),
.t420__col li:has(a[href*="/invest"]) {
    display: none !important;
}

/* Hide file attachment field from all forms */
.t-input-group_uw {
    display: none !important;
}

/* ============================================
   REVIEW CARDS - Star rating layout
   Order: Name -> Project type -> Stars (centred)
============================================ */
/* Make the descr area a flex column so we can
   reorder: text (project type) on top, stars below */
.t958__author-descr {
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    gap: 6px !important;
    text-align: center !important;
}

/* Centre the star span on its own line */
.t958__author-descr > span {
    display: flex !important;
    align-self: center !important;
    justify-content: center !important;
}

/* ============================================
   REVIEW CARDS - Centre all text
============================================ */
.t958__card-inner,
.t958__author-name,
.t958__author-descr,
.t958__review-text,
.t958__occupation {
    text-align: center !important;
}