

cp-ferrata-card-sm {
    display: block;
    width: 100%;
    font-family: inherit;
}

.fc-sm-link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}


.fc-sm-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--bg-hover, #f0f0f0);
}

.fc-sm-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}


.fc-sm-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-main, #1a1a1a);
    transition: transform 0.2s ease, color 0.2s ease;
    z-index: 2;
}

.fc-sm-favorite-btn:hover {
    transform: scale(1.1);
    color: #e53935;
}


.fc-sm-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.fc-sm-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main, #1a1a1a);
    line-height: 1.3;
   
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}


.fc-sm-region {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted, #5e5e5e);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.fc-sm-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted, #5e5e5e);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-sm-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}


.fc-sm-rating {
    color: var(--text-main, #1a1a1a);
}


.fc-sm-dot {
    font-size: 1rem;
    line-height: 0.5;
    flex-shrink: 0;
}


.fc-sm-diff-square {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}


.fc-sm-link:hover .fc-sm-image-wrapper img {
    transform: scale(1.05);
}

.fc-sm-link:hover .fc-sm-title {
    color: var(--btn-green, #4f6c14);
}