/* ===== صفحة قصص النجاح ===== */
.success-stories-page {
    background: linear-gradient(135deg, var(--white-off) 0%, var(--white) 100%);
    min-height: 100vh;
}

/* تحسينات عامة للتجاوب */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* تحسينات للشبكة */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stories-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* تحسينات للبطاقات */
.story-card,
.story-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.story-card:hover,
.story-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== رأس الصفحة ===== */
.page-header {
    background: linear-gradient(135deg, #7E22CE 0%, #4B0082 100%);
    border-bottom: 2px solid var(--gold);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== إحصائيات قصص النجاح ===== */
.success-stats {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 2px solid var(--gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border-color: var(--gold-dark);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #7E22CE 0%, #4B0082 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-purple-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-dark);
    font-weight: 500;
}

/* ===== قصص النجاح المميزة ===== */
.featured-stories {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--white-off) 0%, var(--white) 100%);
    position: relative;
}

.featured-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="10" cy="10" r="0.5" fill="rgba(255,215,0,0.1)"/><circle cx="40" cy="15" r="0.5" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-purple-dark);
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.7; }
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.story-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.story-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--gold-dark);
}

.story-card:hover::before {
    opacity: 1;
}

.story-card.featured {
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
}

.story-card.featured::after {
    content: '⭐';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(126, 34, 206, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.9) contrast(1.1);
}

.story-card:hover .story-image img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1) contrast(1.2);
}

.story-card:hover .story-image::before {
    opacity: 1;
}

.story-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-purple-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-badge.featured {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-purple-dark);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    to { box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6); }
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.8) 0%, rgba(255, 215, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.story-card:hover .story-overlay {
    opacity: 1;
}

.story-overlay .btn {
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.story-card:hover .story-overlay .btn {
    transform: translateY(0);
}

.story-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.story-header {
    margin-bottom: 1.5rem;
}

.story-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.story-title a {
    color: var(--primary-purple-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.story-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    transition: width 0.3s ease;
}

.story-title a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.story-title a:hover::after {
    width: 100%;
}

.story-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.story-rating i {
    color: var(--gray-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 16px;
    text-align: center;
}

.story-rating i.filled {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

/* تحسينات التجاوب للنجوم في قصص النجاح */
@media (max-width: 768px) {
    .story-rating {
        gap: 0.2rem;
    }
    
    .story-rating i {
        font-size: 1rem;
        min-width: 14px;
    }
    
    /* تحسينات للنجوم في البطاقات */
    .story-item .story-rating {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .story-rating {
        gap: 0.15rem;
    }
    
    .story-rating i {
        font-size: 0.9rem;
        min-width: 12px;
    }
    
    /* تحسينات إضافية للشاشات الصغيرة */
    .story-item .story-rating {
        gap: 0.1rem;
    }
}

/* تحسينات للشاشات الكبيرة */
@media (min-width: 1200px) {
    .story-rating i {
        font-size: 1.2rem;
        min-width: 18px;
    }
}

.story-author {
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-purple-dark);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.author-job {
    color: var(--gray-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.author-company {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.3);
}

.story-excerpt {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
    font-style: italic;
    position: relative;
}

.story-excerpt::before {
    content: '"';
    font-size: 3rem;
    color: var(--gold);
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

.story-excerpt::after {
    content: '"';
    font-size: 3rem;
    color: var(--gold);
    position: absolute;
    bottom: -20px;
    right: -10px;
    opacity: 0.3;
}

.story-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 2px solid var(--gold);
    color: var(--primary-purple-dark);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.achievement:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.achievement i {
    color: var(--gold);
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.3);
}

.story-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

.story-actions {
    text-align: center;
}

/* ===== جميع قصص النجاح ===== */
.all-stories {
    padding: 4rem 0;
    background: var(--white);
}

.no-stories {
    text-align: center;
    padding: 4rem 2rem;
}

.no-stories-icon {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.no-stories h3 {
    font-size: 1.5rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.no-stories p {
    color: var(--gray);
}

.stories-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-item {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--gold);
    overflow: hidden;
    transition: var(--transition);
}

.story-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border-color: var(--gold-dark);
}

.story-item .story-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.story-item .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-item .story-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

.story-details {
    flex: 1;
    padding: 1.5rem;
}

.story-item .story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.story-item .story-title {
    margin-bottom: 0;
}

.story-item .story-title a {
    font-size: 1.3rem;
    color: var(--primary-purple-dark);
    text-decoration: none;
    transition: var(--transition);
}

.story-item .story-title a:hover {
    color: var(--gold);
    text-shadow: 0 0 8px var(--gold);
}

.story-item .story-rating {
    margin-bottom: 0;
}

.story-item .story-author {
    margin-bottom: 1rem;
}

.story-item .author-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.story-item .author-job {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.story-item .story-excerpt {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-item .story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--gold);
    width: 16px;
}

.story-item .story-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.story-item .story-actions {
    text-align: left;
}

/* ===== قسم الدعوة للعمل ===== */
.cta-section {
    background: linear-gradient(135deg, #7E22CE 0%, #4B0082 100%);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars-cta" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,215,0,0.2)"/><circle cx="5" cy="5" r="0.5" fill="rgba(255,215,0,0.2)"/><circle cx="25" cy="8" r="0.5" fill="rgba(255,215,0,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars-cta)"/></svg>');
    opacity: 0.4;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
}

.cta-title::before {
    content: '🚀';
    position: absolute;
    top: -30px;
    left: -40px;
    font-size: 2.5rem;
    animation: rocket 3s ease-in-out infinite;
}

.cta-title::after {
    content: '⭐';
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.cta-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 250px;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== التجاوب ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .story-item {
        flex-direction: column;
    }
    
    .story-item .story-image {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .page-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .success-stats {
        padding: 2rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .featured-stories,
    .all-stories {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-card {
        margin: 0;
    }
    
    .story-item {
        flex-direction: column;
        margin: 0;
        margin-bottom: 1.5rem;
    }
    
    .story-item .story-image {
        width: 100%;
        height: 200px;
    }
    
    .story-details {
        padding: 1rem;
    }
    
    .story-item .story-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .story-item .meta-item {
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .page-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .success-stats {
        padding: 1.5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .featured-stories,
    .all-stories {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .stories-grid {
        gap: 1rem;
    }
    
    .story-card {
        margin: 0;
    }
    
    .story-item {
        margin: 0;
        margin-bottom: 1rem;
    }
    
    .story-item .story-image {
        height: 150px;
    }
    
    .story-details {
        padding: 0.75rem;
    }
    
    .story-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .author-name {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .author-job {
        font-size: 0.85rem;
    }
    
    .story-excerpt {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .story-item .story-meta {
        gap: 0.25rem;
    }
    
    .story-item .meta-item {
        font-size: 0.75rem;
    }
    
    .story-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 1.5rem 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* تحسينات إضافية للشاشات المتوسطة */
@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .story-item .story-image {
        height: 160px;
    }
}

/* تحسينات للشاشات الكبيرة */
@media (min-width: 1200px) {
    .stories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2.5rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}