
.prev-next-btn {
    position: absolute;
    top: 13px;
    right: 10px;
    display: flex;
    gap: 14px;
}
.prev-next-btn svg{
    max-width: 38px !important;
}
.featured-strava-post h2 {
    text-align: center;
    color: #fc4c02;
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}
.fsp-title-one{
    color: #000;
}
.fsp-title-two{
    color: #fc4c02;
}
.fsp-slider {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
        padding-top: 90px;
}

.fsp-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.fsp-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
    transition: transform 0.3s ease;
}

.fsp-slide:hover {
    transform: translateY(-5px);
}

.fsp-activity {
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
h3.fsp-member-name {
    color: #434343 !important;
    text-align: center;
    font-family: Outfit;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    margin: 0px !important;
}

.member-info{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.fsp-member-image{
    width: 50px;
    height: 50px !important;
    border-radius: 50%  !important;
    object-fit: cover;
    margin-right: 10px;
}
.fsp-member-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
h3.fsp-activity-name {
    color: #434343 !important;
    text-align: left;
    font-family: Outfit;
    font-size: 25px !important;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0px !important;
    margin: 0px 0px 12px 0px !important;
}


.fsp-member-name {
    font-size: 0.9em;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.fsp-activity-date {
    font-size: 0.6em;
    color: #000;
    margin-top: 5px;
    padding: 0;
}

.fsp-activity-type {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px 32px;
}
.fsp-activity-name{
    font-size: 1.1em;
    font-weight: 600;
    color: #000;
    margin-top: 15px;
    margin-bottom: 15px;
}
.fsp-activity-icon {
    width: 24px;
    height: 24px;
    color: #666;
}

.fsp-activity-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.fa-trophy{
    margin-right: 5px;
}
.fsp-activity-kudos{
    font-size: 0.6em;
    font-weight: 400;
    color: #000;
    margin: 0;
    text-align: left;
    margin-top: 10px;
}
.fsp-stat {
    text-align: left;
}
.fsp-member-name{
    padding: 0;
    margin: 0;
    line-height: 1;
}
.fsp-stat-label {
    display: block;
    font-size: 0.6em;
    color: #000;
    font-weight: 600;
}
.text-right{
    text-align: right;
}
.fsp-stat-value {
    display: block;
    font-size: 0.7em;
    font-weight: 600;
    color: #000;
    margin: 0;
    font-family: 'Outfit';
}

.fsp-map {
    height: 200px;
    background: #f5f5f5;
    object-fit: cover;
    border-radius: 0px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}
.fsp-map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fsp-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #fc4c02 25%, transparent 25%),
                linear-gradient(-45deg, #fc4c02 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #fc4c02 75%),
                linear-gradient(-45deg, transparent 75%, #fc4c02 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.1;
}

.fsp-prev,
.fsp-next {
    border: none;
    border-radius: 50%;
    padding:12px !important;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(252, 76, 2, 0.3);
}

.fsp-prev:hover,
.fsp-next:hover {
    background: #e64400;
}

.fsp-prev {
    left: 0;
}

.fsp-next {
    right: 0;
}

.fsp-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
    margin-bottom: 10px;
}

.fsp-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff !important;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    padding:0px !important;
}

.fsp-dot:hover {
    background: #fc4c02;
    transform: scale(1.2);
}

.fsp-dot.active {
    background: #fc4c02 !important;
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .fsp-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
.fsp-slider-wrapper {
    justify-content: center;
     gap: 25px;
     padding-top: 64px;
}
    .fsp-slider {
        padding: 0 5px;
    }
    
    .fsp-slide {
        flex: 0 0 calc(100% - 15px);
    }
    
    .fsp-activity-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .fsp-stat {
        flex: 0 0 calc(50% - 15px);
    }
    
    .fsp-stat:not(:last-child)::after {
        display: none;
    }
    
    .fsp-prev,
    .fsp-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}