/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/

/* Hide the avatar for kudos group from post meta */
.bp-activity-head .activity-group-post-meta .activity-post-author--kudos img.avatar {
    display: none !important;
}

.therisereport-kudos-reactions {
    margin: 10px 0;
}

.therisereport-kudos-reactions .activity-state-reactions .reactions_item {
    display: flex;
    background-color: #fff;
    border-radius: 50%;
    padding: 2px;
    position: relative;
    z-index: 3;
}

.therisereport-kudos-reactions .activity-state-reactions .reactions_item>img {
    height: 18px;
    width: 18px;
    object-fit: cover;
}

.therisereport-kudos-reactions .activity-state-reactions .reactions_item>i {
    color: #5087e5;
    font-size: 18px;
    font-weight: 200;
    line-height: 1;
}

.therisereport-kudos-reactions .activity-state-reactions .reactions_item+.reactions_item {
    margin-left: -4px;
}

.therisereport-kudos-reactions .activity-state-reactions {
    display: inline-flex;
    align-items: center;
}

.therisereport-group-team-filters-container {
    margin-right: 10px;
}

.buddypress-wrap .therisereport-group-team-filters-container select {
    max-height: 34px;
}

/* Kudos post grid */
.single-item.groups .buddypress-wrap .bb-profile-grid .post-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.single-item.groups .buddypress-wrap article.type-kudos {
    flex: 0 0 calc(33.333% - 14px);
    margin: 0;
    min-width: 250px;

    box-sizing: border-box;
}

.single-item.groups article.type-kudos .post-inner-wrap .entry-content-wrap {
    padding: 20px;
}

.single-item.groups article.type-kudos .post-inner-wrap .entry-media {
    padding-top: 60%;
}

.single-item.groups article.type-kudos .post-inner-wrap .entry-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.single-item.groups article.type-kudos .post-inner-wrap .entry-content {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

/* Medium screens (tablets) */
@media screen and (max-width: 1024px) {
    .single-item.groups .buddypress-wrap article.type-kudos {
        flex: 0 0 calc(50% - 14px);
        min-width: 200px;
    }
}

/* Mobile */
@media screen and (max-width: 640px) {
    .single-item.groups .buddypress-wrap article.type-kudos {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .single-item.groups .buddypress-wrap .bb-profile-grid .post-grid {
        gap: 15px;
    }
}

/* Kudos single post */
.single-item.groups .bbl-group-container-kudos-single article.type-kudos .entry-content-wrap {
    margin: 20px 0;
    padding: 20px;
    background: var(--bb-content-background-color);
    border: 1px solid var(--bb-content-border-color);
    border-radius: var(--bb-block-radius);
    -webkit-transition: .3s all;
    transition: .3s all;
}

.single-item.groups .bbl-group-container-kudos-single article.type-kudos .entry-content-wrap {
    display: flex;
    flex-direction: column;
}

.single-item.groups .bbl-group-container-kudos-single article.type-kudos figure.entry-media {
    order: 1;
    margin-bottom: 20px;
    border-radius: 6px;
    padding-top: 45%;
    overflow: hidden;
}

.single-item.groups .bbl-group-container-kudos-single article.type-kudos .entry-header {
    order: 2;
    margin-bottom: 20px;
}

.single-item.groups .bbl-group-container-kudos-single article.type-kudos .entry-header .entry-title {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 1.2;
}

.single-item.groups .bbl-group-container-kudos-single article.type-kudos .entry-content {
    order: 3;
    text-align: left;
}

.single-item.groups .bbl-group-container-kudos-single .post-meta-wrapper-main .show-support {
    top: 0px;
}

.single-item.groups article.type-kudos .post-actions a.bbl-action-link {
    font-size: 14px;
    padding: 6px 10px;
    background:var(--bb-primary-button-background-regular);
    color: var(--bb-primary-button-text-regular);
    text-decoration: none;
    font-family: var(--bb-font-family);
    font-size: 14px;
    line-height: 1.2;
    border-radius: 6px;
    opacity: 0.8;
}

.single-item.groups article.type-kudos .post-actions a.bbl-action-link.bbl-approve-link {
    background:var(--bb-success-color);
    color: var(--bb-primary-button-text-regular);
}

.single-item.groups article.type-kudos .post-actions a.bbl-action-link:hover {
    opacity: 1;
}

.single-item.groups article.type-kudos .post-actions a.bbl-rejection-link,
.single-item.groups article.type-kudos .post-actions a.bbl-delete-link {
    background:var(--bb-danger-color);
}

.single-item.groups article.type-kudos .post-actions a.bbl-approval-link {
    background:var(--bb-success-color);
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.therisereport-kudos-single-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.therisereport-kudos-post-meta-date {
    font-size: 14px;
    color: var(--bb-body-text-color);
    font-weight: 400;
    line-height: 1.2;
    padding: 8px;
    background: var(--bb-body-background-color);
    border-radius: 8px;
}

.therisereport-kudos-post-meta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.therisereport-kudos-post-meta-footer .team-or-group-name {
    font-size: 14px;
    color: var(--bb-body-text-color);
    font-weight: 400;
    background: var(--bb-content-alternate-background-color);
    text-decoration: none;
    padding: 8px 12px;
    line-height: 1.2;
    border-radius: 6px;
    border: 1px solid transparent;
}

.therisereport-kudos-post-meta-footer .team-or-group-name:hover {
    color: var(--bb-headings-color);
    background-color: var(--bb-content-alternate-background-color);
    border: 1px solid var(--bb-content-border-color);
}

.therisereport-kudos-single-post-meta .therisereport-kudos-post-meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Kudos list */
.bbl-group-container-kudos .bbl-posts-list .post-actions {
    display: flex;
    gap: 10px;
    align-items: anchor-center;
    flex-wrap: wrap;
    width: 100%;
}

.activity-item .bp-primary-action.the-rise-report-call-to-action-button span {
    color: var(--bb-headings-color) !important;
    font-size: 14px !important;
}

/* Customize the team or group select box */
.bblpro-tax-selectbox.bblpro-tax-team-or-group-selectbox h3 {
    color: var(--bb-headings-color);
    display: block;
    font-weight: 600;
    margin: 15px 0 5px !important;
    width: auto;
    font-size: 17px;
}

.bbl-group-container .bbl-posts-list .post-inner-wrap .entry-content .sfsi_plus_Sicons {
    margin-bottom: 10px !important;
}


.therisereportcore-approval-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 2px solid;
    border-left: 4px solid;
}

.therisereportcore-approval-notice .icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.therisereportcore-approval-notice .content p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.therisereportcore-approval-notice .content .title {
    font-weight: 600;
    margin-bottom: 2px;
}

.therisereportcore-approval-notice.yes-approval {
    border-color: var(--bb-success-color);
    color: #333;
}

.therisereportcore-approval-notice.no-approval {
    border-color: var(--bb-danger-color);
    color: #333;
}


.therisereportcore-approval-notice .bb-icon-check {
    color: var(--bb-success-color);
    font-size: 24px;
    font-weight: 600;
}

.therisereportcore-approval-notice .bb-icon-close {
    color: var(--bb-danger-color);
    font-size: 24px;
    font-weight: 600;
}

.therisereportcore-checkbox-tooltip .therisereportcore-checkbox-tooltip-message {
	font-size: 12px !important;
}

/* Hide the post visibility feature */
.bbl-edit-post-settings-feature.bbl-edit-post-post-visibility {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}

/* Remove bottom margin if section contains hidden field or visibility field */
.bbl-edit-section.bbl-edit-section-custom-fields:has(.bbl-form-field-type-hidden-container),
.bbl-edit-section.bbl-edit-section-settings:has(.bbl-edit-post-settings-feature.bbl-edit-post-post-visibility) {
    margin-bottom: 0 !important;
}

/* BuddyDev CSS */
.bblpro-form-wrapper #postimagediv {
    padding: 0;
}

.bblpro-form-wrapper #postimagediv a {
    background-color: var(--bb-primary-button-background-regular);
    color: var(--bb-primary-button-text-regular);
}
 
.bblpro-form-wrapper #postimagediv #set-post-thumbnail {
    line-height: 2.5em;
    vertical-align: middle;
}

textarea#bbl_post_excerpt {
    padding-top: 1em !important;
}

/* Timeline Shortcode Styles */
.therisereport-timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

/* Animation keyframes */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial hidden state */
.therisereport-timeline-item {
    opacity: 0;
    transform: translateY(30px);
}

/* Animated state */
.therisereport-timeline-item.animate-in {
    animation: slideUpFade 0.6s ease-out forwards;
}

/* Staggered animation delays */
.therisereport-timeline-item:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.therisereport-timeline-item:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.therisereport-timeline-item:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.therisereport-timeline-item:nth-child(4).animate-in {
    animation-delay: 0.4s;
}

.therisereport-timeline-item:nth-child(5).animate-in {
    animation-delay: 0.5s;
}

.therisereport-timeline-item:nth-child(6).animate-in {
    animation-delay: 0.6s;
}

.therisereport-timeline-item:nth-child(7).animate-in {
    animation-delay: 0.7s;
}

.therisereport-timeline-item:nth-child(8).animate-in {
    animation-delay: 0.8s;
}

.therisereport-timeline-item:nth-child(9).animate-in {
    animation-delay: 0.9s;
}

.therisereport-timeline-item:nth-child(10).animate-in {
    animation-delay: 1s;
}

.therisereport-timeline-wrapper .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--bb-content-border-color);
    transform: translateX(-50%);
}

.therisereport-timeline-wrapper .therisereport-timeline-list {
    position: relative;
    z-index: 1;
}

.therisereport-timeline-wrapper .therisereport-timeline-list .therisereport-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-bottom: 30px;
    align-items: center;
}

.therisereport-timeline-item:last-child {
    margin-bottom: 0;
}

/* Icon wrapper - centered on timeline */
.therisereport-timeline-item .timeline-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.therisereport-timeline-item .timeline-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 3px solid var(--bb-content-border-color);
    position: relative;
    z-index: 2;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.therisereport-timeline-item .timeline-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bb-content-alternate-background-color);
}

.therisereport-timeline-item .timeline-icon i {
    font-size: 22px;
    color: var(--bb-headings-color);
}

.therisereport-timeline-item:hover .timeline-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Spacer for opposite side */
.therisereport-timeline-item .timeline-spacer {
    visibility: hidden;
}

/* Content positioning */
.therisereport-timeline-item .timeline-content {
    position: relative;
}

/* Left-side items */
.therisereport-timeline-item[data-position="left"] .timeline-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    padding-right: 0;
}

.therisereport-timeline-item[data-position="left"] .timeline-icon-wrapper {
    grid-column: 2;
    grid-row: 1;
}

.therisereport-timeline-item[data-position="left"] .timeline-spacer {
    grid-column: 3;
    grid-row: 1;
}

/* Right-side items */
.therisereport-timeline-item[data-position="right"] .timeline-content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    padding-left: 0;
}

.therisereport-timeline-item[data-position="right"] .timeline-icon-wrapper {
    grid-column: 2;
    grid-row: 1;
}

.therisereport-timeline-item[data-position="right"] .timeline-spacer {
    grid-column: 1;
    grid-row: 1;
}

/* Card styling */
.therisereport-timeline-item .timeline-card {
    position: relative;
    background: var(--bb-content-background-color);
    border: 1px solid var(--bb-content-border-color);
    border-radius: var(--bb-block-radius);
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.therisereport-timeline-item:hover .timeline-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Arrow pointing to icon */
.therisereport-timeline-item .timeline-arrow {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

/* Left-side arrow (points right) */
.therisereport-timeline-item[data-position="left"] .timeline-arrow {
    right: -12px;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent var(--bb-content-border-color);
}

.therisereport-timeline-item[data-position="left"] .timeline-arrow::after {
    content: '';
    position: absolute;
    right: 2px;
    top: -11px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 11px;
    border-color: transparent transparent transparent var(--bb-content-background-color);
}

/* Right-side arrow (points left) */
.therisereport-timeline-item[data-position="right"] .timeline-arrow {
    left: -12px;
    border-width: 12px 12px 12px 0;
    border-color: transparent var(--bb-content-border-color) transparent transparent;
}

.therisereport-timeline-item[data-position="right"] .timeline-arrow::after {
    content: '';
    position: absolute;
    left: 2px;
    top: -11px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 11px 11px 0;
    border-color: transparent var(--bb-content-background-color) transparent transparent;
}

.therisereport-timeline-item .timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: #172555;
    margin: 0 0 12px;
    line-height: 1.4;
}

.therisereport-timeline-item .timeline-description {
    font-size: 14px;
    color: #1e40af;
    line-height: 1.6;
    margin: 0;
}

/* Single column layout (all items on right) */
.therisereport-timeline-wrapper:not(.timeline-alternate) .timeline-line {
    left: 50px;
}

.therisereport-timeline-wrapper:not(.timeline-alternate) .therisereport-timeline-item {
    grid-template-columns: auto 1fr;
}

.therisereport-timeline-wrapper:not(.timeline-alternate) .timeline-content {
    grid-column: 2;
    text-align: left;
    padding-left: 0;
}

.therisereport-timeline-wrapper:not(.timeline-alternate) .timeline-icon-wrapper {
    grid-column: 1;
    padding: 0 20px 0 0;
}

.therisereport-timeline-wrapper:not(.timeline-alternate) .timeline-spacer {
    display: none;
}

.therisereport-timeline-wrapper:not(.timeline-alternate) .timeline-arrow {
    left: -12px;
    border-width: 12px 12px 12px 0;
    border-color: transparent var(--bb-content-border-color) transparent transparent;
}

.therisereport-timeline-wrapper:not(.timeline-alternate) .timeline-arrow::after {
    left: 2px;
    top: -11px;
    border-width: 11px 11px 11px 0;
    border-color: transparent var(--bb-content-background-color) transparent transparent;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .therisereport-timeline-wrapper {
        padding: 20px 10px;
    }

    .therisereport-timeline-wrapper .timeline-line,
    .therisereport-timeline-wrapper.timeline-alternate .timeline-line {
        left: 40px;
    }

    .therisereport-timeline-item {
        grid-template-columns: auto 1fr;
        margin-bottom: 20px;
    }

    .therisereport-timeline-item[data-position="left"] .timeline-content,
    .therisereport-timeline-item[data-position="right"] .timeline-content {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

    .therisereport-timeline-item[data-position="left"] .timeline-icon-wrapper,
    .therisereport-timeline-item[data-position="right"] .timeline-icon-wrapper {
        grid-column: 1;
        grid-row: 1;
        padding: 0 15px 0 0;
    }

    .therisereport-timeline-item[data-position="left"] .timeline-spacer,
    .therisereport-timeline-item[data-position="right"] .timeline-spacer {
        display: none;
    }

    .therisereport-timeline-item[data-position="left"] .timeline-arrow {
        left: -12px;
        right: auto;
        border-width: 12px 12px 12px 0;
        border-color: transparent var(--bb-content-border-color) transparent transparent;
    }

    .therisereport-timeline-item[data-position="left"] .timeline-arrow::after {
        left: 2px;
        right: auto;
        border-width: 11px 11px 11px 0;
        border-color: transparent var(--bb-content-background-color) transparent transparent;
    }

    .therisereport-timeline-item .timeline-icon {
        width: 50px;
        height: 50px;
        padding: 4px;
    }

    .therisereport-timeline-item .timeline-icon i {
        font-size: 18px;
    }

    .therisereport-timeline-item .timeline-card {
        padding: 20px;
    }

    .therisereport-timeline-item .timeline-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .therisereport-timeline-item .timeline-description {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .therisereport-timeline-wrapper {
        padding: 15px 5px;
    }

    .therisereport-timeline-wrapper .timeline-line,
    .therisereport-timeline-wrapper.timeline-alternate .timeline-line {
        left: 30px;
    }

    .therisereport-timeline-item .timeline-icon {
        width: 44px;
        height: 44px;
        padding: 4px;
    }

    .therisereport-timeline-item .timeline-icon i {
        font-size: 16px;
    }

    .therisereport-timeline-item .timeline-card {
        padding: 16px;
    }

    .therisereport-timeline-item .timeline-title {
        font-size: 15px;
    }

    .therisereport-timeline-item .timeline-description {
        font-size: 12px;
    }
}

/* Recent Kudos Shortcode Styles */
.therisereport-recent-kudos-wrapper {
    padding: 40px;
}

.therisereport-recent-kudos-wrapper.compact-mode {
    padding: 35px 40px;
}

.therisereport-recent-kudos-wrapper .therisereport-kudos-heading {
    color: var(--bb-headings-color);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px;
    line-height: 1.3;
}

.therisereport-recent-kudos-wrapper .therisereport-recent-kudos-list {
    display: flex;
    flex-direction: column;
    margin: 0 0 25px;
}

.therisereport-recent-kudos-wrapper .therisereport-recent-kudos-list .kudos-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid var(--bb-content-border-color);
}

.therisereport-recent-kudos-wrapper .therisereport-recent-kudos-list .kudos-item:last-child {
    border-bottom: none;
}

.therisereport-recent-kudos-wrapper .kudos-group-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.therisereport-recent-kudos-wrapper .kudos-group-icon a {
    display: block;
    line-height: 0;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.therisereport-recent-kudos-wrapper .kudos-group-icon a:hover {
    transform: scale(1.03);
    opacity: 0.85;
}

.therisereport-recent-kudos-wrapper .kudos-group-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bb-content-border-color);
    transition: border-color 0.2s ease;
}

.therisereport-recent-kudos-wrapper .kudos-group-icon a:hover img {
    border-color: #1e3a8a;
}

/* Compact mode - when no metadata is shown */
.therisereport-recent-kudos-wrapper.compact-mode .therisereport-recent-kudos-list .kudos-item {
    align-items: center;
    padding: 8px 0;
    gap: 12px;
    border-bottom: none;
}

.therisereport-recent-kudos-wrapper.compact-mode .kudos-group-icon {
    margin-top: 0;
}

.therisereport-recent-kudos-wrapper.compact-mode .kudos-title-link {
    margin-bottom: 0;
    line-height: 1.4;
}

.therisereport-recent-kudos-wrapper.compact-mode .therisereport-recent-kudos-list {
    margin-bottom: 15px;
}

.therisereport-recent-kudos-wrapper .kudos-item-content {
    flex: 1;
    min-width: 0;
}

.therisereport-recent-kudos-wrapper .kudos-title-link {
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
    display: block;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.therisereport-recent-kudos-wrapper .kudos-title-link:hover {
    color: #172554;
}

.therisereport-recent-kudos-wrapper .kudos-meta-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1.2;
    color: var(--bb-secondary-text-color);
}

.therisereport-recent-kudos-wrapper .kudos-meta-info > span,
.therisereport-recent-kudos-wrapper .kudos-meta-info > a {
    display: inline-flex;
    align-items: center;
}

.therisereport-recent-kudos-wrapper .kudos-meta-info .kudos-author a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
    transition: color 0.2s ease;
}

.therisereport-recent-kudos-wrapper .kudos-meta-info .kudos-author a:hover {
    color: #172554;
    font-weight: 600;
}

.therisereport-recent-kudos-wrapper .kudos-meta-info .kudos-team {
    background: var(--bb-content-alternate-background-color);
    color: var(--bb-accent-color);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--bb-content-border-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.therisereport-recent-kudos-wrapper .kudos-meta-info a.kudos-team:hover {
    border-color: var(--bb-accent-color);
    opacity: 0.8;
}

.therisereport-recent-kudos-wrapper .kudos-meta-info > span:not(:last-child)::after,
.therisereport-recent-kudos-wrapper .kudos-meta-info > a:not(:last-child)::after {
    content: "•";
    margin-left: 8px;
    color: var(--bb-content-border-color);
    font-weight: bold;
}

.therisereport-recent-kudos-wrapper .kudos-meta-info .kudos-team::after {
    display: none;
}

.therisereport-recent-kudos-wrapper .therisereport-kudos-footer {
    text-align: center;
    padding-top: 10px;
}

.therisereport-recent-kudos-wrapper .therisereport-kudos-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e6be5a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.therisereport-recent-kudos-wrapper .therisereport-kudos-link:hover {
    opacity: 0.8;
    gap: 12px;
}

.therisereport-recent-kudos-wrapper .therisereport-kudos-link .arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.therisereport-recent-kudos-wrapper .therisereport-kudos-link:hover .arrow {
    transform: translateX(4px);
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .therisereport-recent-kudos-wrapper {
        padding: 30px 20px;
    }

    .therisereport-recent-kudos-wrapper.compact-mode {
        padding: 25px 20px;
    }

    .therisereport-recent-kudos-wrapper .therisereport-kudos-heading {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .therisereport-recent-kudos-wrapper .kudos-item {
        gap: 12px;
        padding: 14px 0;
    }

    .therisereport-recent-kudos-wrapper.compact-mode .kudos-item {
        padding: 6px 0;
    }

    .therisereport-recent-kudos-wrapper .kudos-group-icon,
    .therisereport-recent-kudos-wrapper .kudos-group-icon img {
        width: 36px;
        height: 36px;
    }

    .therisereport-recent-kudos-wrapper .kudos-title-link,
    .therisereport-recent-kudos-wrapper .therisereport-kudos-link {
        font-size: 15px;
    }

    .therisereport-recent-kudos-wrapper .kudos-title-link {
        margin-bottom: 5px;
    }

    .therisereport-recent-kudos-wrapper .kudos-meta-info {
        font-size: 12px;
        gap: 6px;
    }

    .therisereport-recent-kudos-wrapper .kudos-meta-info .kudos-team {
        font-size: 11px;
        padding: 3px 8px;
    }
}

@media screen and (max-width: 480px) {
    .therisereport-recent-kudos-wrapper {
        padding: 25px 15px;
    }

    .therisereport-recent-kudos-wrapper.compact-mode {
        padding: 20px 15px;
    }

    .therisereport-recent-kudos-wrapper .therisereport-kudos-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .therisereport-recent-kudos-wrapper .kudos-item {
        gap: 10px;
        padding: 12px 0;
    }

    .therisereport-recent-kudos-wrapper.compact-mode .kudos-item {
        padding: 5px 0;
    }

    .therisereport-recent-kudos-wrapper.compact-mode .kudos-group-icon,
    .therisereport-recent-kudos-wrapper.compact-mode .kudos-group-icon img {
        width: 32px;
        height: 32px;
    }

    .therisereport-recent-kudos-wrapper .kudos-title-link {
        font-size: 14px;
    }

    .therisereport-recent-kudos-wrapper .kudos-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .therisereport-recent-kudos-wrapper .kudos-meta-info > span:not(:last-child)::after,
    .therisereport-recent-kudos-wrapper .kudos-meta-info > a:not(:last-child)::after {
        display: none;
    }
}
