
        .writers-section {
            background-color: #0B2447;
            padding: 100px 20px;
            font-family: 'Inter', sans-serif;
            color: #FFFFFF;
        }
        .writers-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .writers-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .writers-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            color: #FCD34D;
            border: 1px solid rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .writers-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .writers-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 850px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .writers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .writer-card {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 25px 20px;
            text-align: left;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            color: #0F172A;
            display: flex;
            flex-direction: column;
        }
        .writer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        
        .w-header-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .w-avatar-wrap {
            position: relative;
            width: 55px;
            height: 55px;
            background: #EFF6FF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0ea5e9;
        }
        .w-verify-badge {
            position: absolute;
            bottom: -2px;
            right: -2px;
            background: #F59E0B;
            border: 2px solid #FFFFFF;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
        }
        .w-name {
            font-size: 18px;
            font-weight: 800;
            color: #0B2447;
            margin: 0 0 2px 0;
        }
        .w-title {
            font-size: 13px;
            color: #64748B;
            margin: 0;
        }
        
        .w-stats-row {
            display: flex;
            justify-content: space-between;
            text-align: center;
            margin-bottom: 25px;
        }
        .w-stat-val {
            display: block;
            font-size: 17px;
            font-weight: 800;
            color: #0B2447;
        }
        .w-stat-lbl {
            display: block;
            font-size: 11px;
            color: #64748B;
            font-weight: 500;
            margin-top: 4px;
        }
        
        .w-review-block {
            background: #FFFBEB;
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 25px;
            border: 1px solid #FEF3C7;
            position: relative;
        }
        .w-review-title {
            font-size: 11px;
            color: #94A3B8;
            margin-bottom: 8px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .w-review-text {
            font-size: 13px;
            color: #475569;
            line-height: 1.5;
            margin: 0 0 12px 0;
        }
        .w-review-footer {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        .w-review-meta {
            font-size: 10px;
            color: #64748B;
            line-height: 1.4;
        }
        .w-review-stars {
            color: #F59E0B;
            font-size: 12px;
            letter-spacing: 1px;
        }
        
        .w-btn-row {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }
        .btn-w-outline {
            flex: 1;
            text-align: center;
            border: 1px solid #93C5FD;
            color: #0B2447;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            padding: 12px 0;
            text-decoration: none;
            background: #FFFFFF;
            transition: all 0.2s ease;
        }
        .btn-w-outline:hover {
            background: #F8FAFC;
        }
        .btn-w-solid {
            flex: 1;
            text-align: center;
            background: linear-gradient(90deg, #F59E0B, #EF4444);
            color: #FFFFFF;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            padding: 12px 0;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            transition: all 0.2s ease;
        }
        .btn-w-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(239, 68, 68, 0.4);
        }
        
        .w-view-all-wrapper {
            text-align: center;
            margin-top: 50px;
        }
        .btn-w-view-all {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #FFFFFF;
            color: #0B2447;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        .btn-w-view-all:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }
        
        @media (max-width: 1200px) {
            .writers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 767px) {
            .writers-grid {
                grid-template-columns: 1fr;
            }
            .writers-header h2 {
                font-size: 32px;
            }
        }
    

﻿
        .writer-card {
            perspective: 1000px;
            background: transparent !important;
            padding: 0 !important;
            border: none !important;
            box-shadow: none !important;
        }

        .writer-card-inner {
            background: transparent;
            border-radius: 20px;
            text-align: left;
            transition: transform 0.6s;
            transform-style: preserve-3d;
            position: relative;
            
            color: #0F172A;
            display: flex;
            flex-direction: column;
        }

        .writer-card-inner.flipped {
            transform: rotateY(180deg);
        }

        .writer-card-front, .writer-card-back {
            width: 100%;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: 20px;
            box-sizing: border-box;
        }

        .writer-card-front {
            background: #FFFFFF;
            padding: 25px 20px 30px;
            display: flex;
            flex-direction: column;
            z-index: 2;
            transform: rotateY(0deg);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            border-radius: 20px;
        }

        .writer-card-back {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            transform: rotateY(180deg);
            background: #0F172A;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.05);
            z-index: 1;
        }

        .w-back-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .w-back-avatar-placeholder {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(245, 158, 11, 0.3);
            color: #F59E0B;
            flex-shrink: 0;
        }

        .w-back-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 0;
            color: #F59E0B;
            line-height: 1.2;
        }

        .w-back-bio {
            font-size: 13.5px;
            color: #F8FAFC;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .w-back-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            background: rgba(255,255,255,0.03);
            padding: 10px 15px;
            border-radius: 10px;
        }

        .w-back-stat-col {
            display: flex;
            flex-direction: column;
        }

        .w-back-stat-val {
            font-size: 18px;
            font-weight: 800;
            color: #FFFFFF;
            line-height: 1.2;
        }

        .w-back-stat-lbl {
            font-size: 11px;
            color: #94A3B8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 2px;
        }
    
