@charset "UTF-8";
/**
 * Convert pixels to rem units
 * @param {Number} $pixels - The pixel value to convert
 * @return {Number} - The rem equivalent
 * 
 * Usage:
 * font-size: toRem(24px);        // 1.5rem
 * padding: toRem(32px) toRem(16px); // 2rem 1rem
 */
/**
 * Convert rem to pixels
 * @param {Number} $rems - The rem value to convert
 * @param {Number} $base-font-size - The base font size (default: 16px)
 * @return {Number} - The pixel equivalent
 * 
 * Usage:
 * width: px(1.5rem);  // 24px
 */
/**
 * Strip units from a number
 * @param {Number} $number - Number with or without units
 * @return {Number} - Unitless number
 */
/**
 * Fluid typography - calculate font size between two breakpoints
 * @param {Number} $min-size - Minimum font size
 * @param {Number} $max-size - Maximum font size  
 * @param {Number} $min-width - Minimum viewport width
 * @param {Number} $max-width - Maximum viewport width
 * @return {String} - CSS clamp() function
 * 
 * Usage:
 * font-size: fluid-type(toRem(16px), toRem(24px), 320px, 1440px);
 */
/**
 * Calculate line height ratio
 * @param {Number} $font-size - Font size
 * @param {Number} $line-height - Desired line height
 * @return {Number} - Line height ratio
 * 
 * Usage:
 * line-height: line-height-ratio(toRem(16px), toRem(24px)); // 1.5
 */
/**
 * Get a color from a nested map
 * @param {Map} $map - The color map
 * @param {String} $keys... - The nested keys
 * @return {Color} - The color value
 * 
 * Usage:
 * color: map-deep-get($theme-colors, 'primary', 'base');
 */
/**
 * Power function (since Sass doesn't have built-in pow)
 * @param {Number} $base - Base number
 * @param {Number} $exponent - Exponent
 * @return {Number} - Result of base^exponent
 */
/**
 * Modular scale for typography
 * @param {Number} $increment - Scale increment (positive or negative)
 * @param {Number} $base - Base size (default: 1rem)
 * @param {Number} $ratio - Scale ratio (default: 1.25 - major third)
 * @return {Number} - Scaled size
 * 
 * Usage:
 * font-size: modular-scale(2);     // 1.5625rem (1.25^2)
 * font-size: modular-scale(-1);    // 0.8rem (1.25^-1)
 */
/**
 * Z-index management
 * @param {String} $layer - Layer name
 * @return {Number} - Z-index value
 */
/**
 * SVG Icon Path Function
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @return {String} - Full path to the icon
 * 
 * Usage:
 * background-image: url(icon-path('search'));
 */
/**
 * Common SVG Icons Map
 * Store commonly used SVG icons as encoded strings
 */
/**
 * Get SVG Icon as Data URI
 * @param {String} $icon-name - Name of the icon
 * @return {String} - Complete data URI for the SVG
 * 
 * Usage:
 * background-image: svg-icon('search');
 */
/**
 * Design Container - 1440px Design Width
 * Max-width: 1240px (1440px - 100px × 2)
 * Padding: 20px left/right for smaller screens
 * 
 * Usage:
 * @include container-design();
 * @include container-design(1.5rem); // Custom padding
 */
/**
 * Custom Container - Flexible max-width with consistent padding
 * @param {Number} $max-width - Maximum width (default: 1240px)
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-custom(800px, 16px);
 * @include container-custom(toRem(1140px));
 */
/**
 * Full-width Container - 100% width with padding
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-full();
 * @include container-full(1rem);
 */
/**
 * Advanced Border Radius Mixin (Backward Compatible)
 * Apply border-radius to specific corners or all corners
 * 
 * @param {String|Number} $corner-or-size - Corner name OR size for backward compatibility
 * @param {Number} $size - The radius size (when using corner names)
 * 
 * Backward Compatible Usage:
 * @include border-radius(10px);               // Old style: all corners
 * 
 * New Advanced Usage:
 * @include border-radius('all', 20px);        // All corners
 * @include border-radius('top', 15px);        // Top left & right
 * @include border-radius('right', 15px);      // Right top & bottom  
 * @include border-radius('bottom', 15px);     // Bottom left & right
 * @include border-radius('left', 10px);       // Left top & bottom
 * @include border-radius('top-left', 5px);    // Single corner
 * @include border-radius('top-right', 5px);   // Single corner
 * @include border-radius('bottom-left', 5px); // Single corner
 * @include border-radius('bottom-right', 5px);// Single corner
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/**
 * File-based SVG Icon Mixin (Recommended)
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * 
 * Usage:
 * @include icon('arrow-down', 0.9rem);
 * @include icon('cart', 1.25rem);
 * 
 * Place your SVG files in: assets/icons/icon-name.svg
 */
/**
 * SVG Icon Mixin (For encoded SVGs in map)
 * @param {String} $icon-name - Name of the icon
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Color} $color - Color of the icon (default: currentColor)
 * 
 * Usage:
 * @include svg-icon('search');
 * @include svg-icon('cart', 1.5rem, #333);
 */
/**
 * Icon with Text Mixin
 * @param {String} $icon-name - Name of the icon
 * @param {String} $position - Position of icon (before, after)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Number} $spacing - Space between icon and text (default: 0.5rem)
 * 
 * Usage:
 * @include icon-with-text('search', 'before');
 */
/**
 * Content Type Color Mixin
 * Applies colors based on body class fot-page--{slug}
 * @param {String} $property - CSS property to apply color to (color, background-color, border-color, etc.)
 * @param {String} $shade - Color shade (dark, medium, light, pastel, gradient)
 * 
 * Usage:
 * @include content-type-color('color', 'dark');
 * @include content-type-color('background', 'gradient');
 * @include content-type-color('border-color', 'medium');
 */
/**
 * Quick Content Type Color Functions
 * Shorthand mixins for common use cases
 */
/**
 * Content Type Search Icon Mixin
 * Applies different search icons based on body class fot-page--{slug}
 * @param {Number} $width - Width of the icon (default: 20px)
 * @param {Number} $height - Height of the icon (default: 20px)
 * 
 * Usage:
 * @include content-type-search-icon();
 * @include content-type-search-icon(toRem(24px), toRem(24px));
 */
.fot-activity-feed-container {
  display: grid;
  grid-template-columns: 300px 1fr 300px; /* left | center | right */
  gap: 25px;
  margin: 0 auto;
  padding: 25px 0;
}

/* Left sidebar */
.fot-activity-feed-left {
  position: relative;
}

/* Main feed */
.fot-activity-feed-center {
  position: relative;
}

/* Right sidebar */
.fot-activity-feed-right {
  position: relative;
}

/* Responsive layout */
@media (max-width: 1024px) {
  .fot-activity-feed-container {
    grid-template-columns: 220px 1fr;
  }
  .fot-activity-feed-right {
    display: none;
  }
}
@media (max-width: 768px) {
  .fot-activity-feed-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .fot-activity-feed-left,
  .fot-activity-feed-right {
    display: none;
  }
}
/********** My Groups Styles **********/
.fot-my-groups-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ECEDEE;
}

.fot-my-groups-header h3 {
  font-size: 21px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #111;
  margin: 0 0 1rem;
}

.fot-my-groups-header h3 span {
  font-weight: 600;
  color: #6E6E6F;
  font-size: 0.9rem;
  margin-left: 6px;
}

.fot-my-groups-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fot-my-groups-list li {
  cursor: pointer;
  transition: background 0.15s ease;
  border-radius: 8px;
  margin: 0;
}

.fot-my-groups-list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fot-my-groups-list img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.fot-my-groups-list span {
  font-size: 0.95rem;
  color: #111;
  font-weight: 600;
  line-height: 18px;
}

.fot-my-groups-empty {
  color: #6b7280;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem 0;
  margin: 0;
}

/********** Following Widget Styles **********/
.fot-following-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ECEDEE;
  margin-top: 25px;
}

.fot-following-header h3 {
  font-size: 21px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #111;
  margin: 0 0 1rem;
}

.fot-following-header h3 span {
  font-weight: 600;
  color: #6E6E6F;
  font-size: 0.9rem;
  margin-left: 6px;
}

.fot-following-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.fot-following-list li {
  cursor: pointer;
  transition: background 0.15s ease;
  padding: 0;
  margin: 0;
  border-radius: 8px;
}

.fot-following-list img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.fot-following-list span {
  font-size: 0.95rem;
  color: #111;
  font-weight: 500;
}

.fot-following-list a {
  text-decoration: none;
}

.fot-following-empty {
  color: #6b7280;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem 0;
  margin: 0;
}

.fot-following-view-all {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.fot-following-view-all a {
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

/********** Recent Replies Styles **********/
.fot-recent-replies-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ECEDEE;
}

.fot-recent-replies-header h3 {
  font-size: 21px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #111;
  margin: 0 0 1rem;
}

.fot-recent-replies-header h3 span {
  font-weight: 600;
  color: #6E6E6F;
  font-size: 0.9rem;
  margin-left: 6px;
}

.fot-recent-replies-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fot-recent-replies-list li {
  cursor: pointer;
  transition: background 0.15s ease;
  border-radius: 8px;
  margin: 0;
}

.fot-recent-replies-list li a {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #232325;
}

.fot-recent-replies-list .fot-reply-content p {
  font-size: 13px;
  margin: 0;
  color: #6E6E6F;
}

.fot-recent-replies-list img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.fot-recent-replies-list span {
  font-size: 0.95rem;
  color: #111;
  font-weight: 600;
  line-height: 18px;
}

.fot-recent-replies-empty {
  color: #6b7280;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem 0;
  margin: 0;
}

/* User Profile Header */
.fot-user-profile-header {
  background: #fff;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  margin: -42px 0 0;
  border: 1px solid #ECEDEE;
}

.fot-profile-cover {
  height: 226px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-color: #f3f4f6;
}

.fot-profile-cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fot-profile-info {
  padding: 0 25px 24px;
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fot-profile-avatar {
  position: relative;
  width: 120px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -95px;
}

.fot-avatar-img {
  border: 4px solid #fff;
  border-radius: 50%;
  display: block;
}

.fot-profile-details {
  padding-top: 10px;
}

.fot-profile-name {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px;
  line-height: 1.2;
}

.fot-profile-stats {
  display: flex;
  gap: 24px;
  margin-top: -22px;
}

.fot-stat-item {
  color: #6E6E6F;
  font-size: 14px;
}

.fot-stat-number {
  line-height: 1;
  font-weight: 600;
}

.fot-stat-label {
  margin-top: 2px;
  font-weight: 500;
}

.fot-profile-joined {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.fot-profile-joined span {
  display: inline-flex;
  align-items: center;
}

#bp-nouveau-activity-form {
  border: none !important;
  margin: 0 !important;
}

#whats-new-form {
  border-radius: 17px;
  border: 1px solid #ECEDEE;
}

#whats-new-toolbar {
  background-color: #F6F6F6 !important;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

/* stylelint-disable selector-class-pattern */
.fot-activity-filters-wrapper .bb-subnav-filters-container.bb-subnav-filters-search {
  /* stylelint-enable selector-class-pattern */
  display: none !important;
}

#activity-stream {
  padding: 0;
}

/* stylelint-disable selector-class-pattern */
.fot-activity-stream-wrapper #activity-stream .activity-list {
  /* stylelint-enable selector-class-pattern */
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

/* stylelint-disable selector-class-pattern */
.fot-activity-stream-wrapper #activity-stream .activity-list > li {
  /* stylelint-enable selector-class-pattern */
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ECEDEE;
  box-shadow: none;
}

/* stylelint-disable selector-class-pattern */
.fot-activity-stream-wrapper .activity-avatar.item-avatar {
  /* stylelint-enable selector-class-pattern */
  width: 60px !important;
  padding: 0;
  margin-right: 5px !important;
}

/* stylelint-disable selector-class-pattern */
.fot-activity-stream-wrapper .activity-avatar.item-avatar img {
  /* stylelint-enable selector-class-pattern */
  border-radius: 60px;
}

/* stylelint-disable selector-class-pattern */
.fot-activity-stream-wrapper .activity-header p {
  /* stylelint-enable selector-class-pattern */
  margin: 0;
}

/*# sourceMappingURL=news-feed.css.map */
