/* أنماط أساسية */
.samposts-module-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    perspective: 1000px;
}

/* المقال الرئيسي */
.samposts-module-1 .main-post {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.samposts-module-1 .main-post:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* الصورة الرئيسية - تم تخفيض الارتفاع */
.samposts-module-1 .featured-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* تأثيرات الصورة */
.samposts-module-1 .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,115,170,0.4) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.samposts-module-1 .main-post:hover .image-overlay {
    opacity: 0.9;
}

/* العنوان الرئيسي */
.samposts-module-1 .title-overlay {
    position: relative;
    width: 100%;
    padding: 30px 20px;
    text-align: center;
    z-index: 2;
}

.samposts-module-1 .post-title {
    color: white;
    font-size: 28px;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.samposts-module-1 .title-decoration {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, transparent, #fff, transparent);
    margin: 10px auto;
    border-radius: 2px;
}

/* روابط */
.samposts-module-1 .post-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.samposts-module-1 .post-link:hover .post-title {
    color: #ffd700;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* معلومات المقال */
.samposts-module-1 .post-meta {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 3px solid #0073aa;
}

/* التصنيفات */
.samposts-module-1 .post-category {
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin: 0 5px 5px 0;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 5px rgba(0,115,170,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.samposts-module-1 .post-category:hover {
    background: linear-gradient(135deg, #005a87 0%, #003d5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,115,170,0.3);
}

/* تفاصيل الميتا */
.samposts-module-1 .meta-details {
    display: flex;
    gap: 20px;
    align-items: center;
}

.samposts-module-1 .date,
.samposts-module-1 .author {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.samposts-module-1 .date i,
.samposts-module-1 .author i {
    color: #0073aa;
}

.samposts-module-1 .author a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.samposts-module-1 .author a:hover {
    color: #0073aa;
}

/* المقالات الثانوية */
.samposts-module-1 .secondary-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.samposts-module-1 .secondary-post {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.samposts-module-1 .secondary-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* الصور الثانوية - تم تخفيض الارتفاع */
.samposts-module-1 .secondary-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.samposts-module-1 .secondary-post:hover .secondary-image {
    transform: scale(1.1);
}

/* المحتوى الثانوي */
.samposts-module-1 .secondary-content {
    padding: 20px;
}

.samposts-module-1 .secondary-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.samposts-module-1 .secondary-post:hover .secondary-title {
    color: #0073aa;
}

.samposts-module-1 .secondary-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* الميتا الثانوية */
.samposts-module-1 .secondary-meta {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

/* تأثيرات الـ Hover الإضافية */
.samposts-module-1 .post-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.samposts-module-1 .secondary-post:hover .post-hover-effect {
    transform: translateX(100%);
}

/* رسالة عدم وجود مقالات */
.samposts-no-posts {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 2px dashed #0073aa;
}

.samposts-no-posts p {
    color: #666;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.samposts-no-posts .dashicons {
    color: #0073aa;
    font-size: 24px;
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .samposts-module-1 .featured-image {
        height: 300px;
    }
    
    .samposts-module-1 .post-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .samposts-module-1 .secondary-posts {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .samposts-module-1 .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .samposts-module-1 .meta-details {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .samposts-module-1 .featured-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .samposts-module-1 {
        padding: 10px;
    }
    
    .samposts-module-1 .post-title {
        font-size: 20px;
    }
    
    .samposts-module-1 .secondary-image {
        height: 150px;
    }
}

/* رسوميات متحركة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.samposts-module-1 .main-post,
.samposts-module-1 .secondary-post {
    animation: fadeInUp 0.6s ease forwards;
}

.samposts-module-1 .secondary-post:nth-child(1) {
    animation-delay: 0.1s;
}

.samposts-module-1 .secondary-post:nth-child(2) {
    animation-delay: 0.2s;
}

/* تأثيرات الضوء */
.samposts-module-1 .main-post::before,
.samposts-module-1 .secondary-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #0073aa, #00a8ff, #0073aa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.samposts-module-1 .main-post:hover::before,
.samposts-module-1 .secondary-post:hover::before {
    opacity: 1;
}