.trend-wrapper { background: #ffffff; min-height: 100vh; padding: 140px 20px 80px; }
.trend-container { width: 100%; max-width: 1000px; margin: 0 auto; }
.trend-header { text-align: center; margin-bottom: 70px; }
.trend-sub-label { font-size: 12px; font-weight: 800; color: var(--primary-color); letter-spacing: 4px; margin-bottom: 15px; display: inline-block; }
.trend-title { font-size: 32px; font-weight: 900; margin-bottom: 15px; }
.trend-desc { font-size: 14px; color: var(--text-muted); }
.profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 40px; }
.profile-card { background: #fff; border-radius: 20px; overflow: hidden; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid #f5f5f5; transition: all 0.3s; }
.profile-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(255,74,141,0.12); border-color: rgba(255,74,141,0.2); }
.profile-img { height: 320px; background-size: cover; background-position: center; transition: 0.4s; }
.profile-card:hover .profile-img { transform: scale(1.05); }
.profile-name { padding: 20px; font-size: 18px; font-weight: 800; text-align: center; background: #fff; position: relative; z-index: 2; }
.trend-footer-actions { display: flex; justify-content: center; margin-top: 80px; }
.btn-back { display: inline-block; border: 1px solid var(--text-dark); color: var(--text-dark); text-decoration: none; font-size: 14px; font-weight: 700; padding: 14px 45px; border-radius: 30px; transition: 0.3s; }
.btn-back:hover { background: var(--text-dark); color: #ffffff; }