.elementor-12 .elementor-element.elementor-element-8070512{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-10px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-12 .elementor-element.elementor-element-8bd5eec{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-12 .elementor-element.elementor-element-2abf683 .elementor-button{background-color:var( --e-global-color-secondary );font-family:"Cairo", Sans-serif;font-weight:800;fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-radius:4px 4px 4px 4px;}.elementor-12 .elementor-element.elementor-element-2ce0b12{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-f0a8ccb *//* Container Setup */
.legal-insights-section {
    padding: 60px 20px;
    direction: rtl; /* Sets right-to-left flow */
    font-family: 'Cairo', sans-serif; /* Recommended Arabic font */
    color: #ffffff;
    box-sizing: border-box;
}

.legal-insights-section * {
    box-sizing: border-box;
}

/* Header Styling */
.legal-header {
    text-align: center;
    margin-bottom: 40px;
}
.legal-subtitle {
    color: #c5a880; /* Gold accent color */
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}
.legal-subtitle::before, .legal-subtitle::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #c5a880;
    vertical-align: middle;
    margin: 0 10px;
}
.legal-title {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
    color: black;
}
.legal-description {
    color: #a0a5b5;
    font-size: 16px;
    max-width: 600px; /* Fixed from 60px to 600px so text isn't cut off */
    margin: 0 auto;
    line-height: 1.6;
}

/* Post Cards Grid - Fully Responsive Layout */
.legal-posts-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 1 Column on Mobile by default */
    gap: 30px;
    /*margin: 0 auto;*/
    width: 100%;
}

/* Individual Card Styling */
.legal-post-card {
    background: rgba(59, 44, 86, 0.98);
    border: 1px solid #222630;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures cards match height if content sizes vary slightly */
}
.legal-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.1);
}

/* Thumbnail & Badge - Dynamic Scaling */
.legal-thumb-wrapper {
    position: relative;
    width: 100%;
    height: 250px; /* Aspect-ratio friendly default height */
    overflow: hidden;
}
.legal-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.legal-badge {
    position: absolute;
    top: 20px;
    right: 20px; /* Placed top-right for Arabic layout */
    background: rgba(197, 168, 128, 0.15);
    color: #c5a880;
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    backdrop-filter: blur(5px);
    z-index: 2;
}

/* Card Body Content */
.legal-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes the read-more button down uniformly */
}
.legal-post-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.2s;
    line-height: 1.4;
}
.legal-post-title a:hover {
    color: #c5a880;
}
.legal-post-excerpt {
    color: #b0b5c0;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
}
.legal-meta {
    margin-top: auto; /* Pushes meta and readmore to the absolute bottom of card */
    padding-top: 15px;
    color: #707585;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Divider & Read More Button */
.legal-divider {
    border: 0;
    height: 1px;
    background: #222630;
    margin: 15px 0;
    width: 100%;
}
.legal-readmore {
    color: #c5a880 !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: max-content;
}
.legal-readmore .arrow {
    font-size: 16px;
    transition: transform 0.2s;
}
.legal-readmore:hover .arrow {
    transform: translate(-3px, -3px); /* Moves arrow up-left for RTL theme */
}


/* Media Queries for Tablet and Desktop Devices */
@media (min-width: 768px) {
    .legal-posts-grid {
        grid-template-columns: repeat(3, 1fr); /* 2 Columns side-by-side */
    }
    .legal-thumb-wrapper {
        height: 280px; /* Taller image frames on tablets/desktops */
    }
    .legal-title {
        font-size: 38px;
    }
    .legal-card-content {
        padding: 15px;
    }
}

@media (min-width: 992px) {
    .legal-thumb-wrapper {
        height: 220px; /* Optimal display size for standard desktops */
    }
}/* End custom CSS */