.blog_post {
    background: #fff;
    /* max-width: 800px; */
    border-radius: 10px;
    /* box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.3); */
    position: relative;
}


.container_copy {
    padding: 9rem 4rem 5rem 4rem;
}

.img_pod {
    height: 190px;
    width: 190px;
    background: linear-gradient(90deg, #ff9966, #ff5e62);
    z-index: 10;
    box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.3);
    border-radius: 100%;
    position: absolute;
    left: -7%;
    top: -9%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:30px;
}

.imgg {
    height: 9.9rem;
    width: 9.9rem;
    border-radius: 50%;
    box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.3);
    overflow: hidden;
    /* لإخفاء أي جزء من الصورة خارج الحاوية الدائرية */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.imgg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* لضبط حجم الصورة مع الحفاظ على النسبة */
}

@media (min-width: 768px) and (max-width: 1024px) {
    .img_pod {
    
        top:-10%;
    }
    
}



.h1 {
    margin: 5px 0 1rem 0;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #8a2387 30%,
            /* اللون الأول ينتهي عند 30% */
            #e94057 70%,
            /* اللون الثاني يبدأ عند 30% وينتهي عند 70% */
            #f27121 100%
            /* اللون الثالث يبدأ عند 70% وينتهي عند 100% */
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.p {
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.45;
    color: #333;
    text-align: left;
}

.btn_primary {
    border: none;
    outline: none;
    background: linear-gradient(90deg, #ff9966, #ff5e62);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    box-shadow: 1px 10px 2rem rgba(255, 94, 98, 0.5);
    transition: all 0.2s ease-in;
    text-decoration: none;
}

.btn_primary:hover {
    box-shadow: 0px 5px 1rem rgba(255, 94, 98, 0.5);
}



.custom-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 7rem;
}

.custom-list-item {
    border-bottom: 1px solid #e0e0e0;
    margin: 10px 0;
    position: relative;
    padding: 10px 0;
}

.custom-list-link {
    text-decoration: none;
    font-size: 18px;
    color: black;
    /* اللون المطلوب */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-list-link::after {
    content: '›';
    /* رمز السهم */
    font-size: 18px;
    color: #8a2387;
    /* اللون المطلوب */
}

.custom-list-link:hover {
    color: #f27121;
}

.active {
    color: #8a2387 !important;
}

@media only screen and (max-width: 650px) {
    body {
        /* background-color: black; */
    }
 .img_pod {
        top:-10%;
    }
    .container_copy {
        padding: 8rem 0px 0px 0px;
    }

    .h1 {
        font-size: 1.4rem;
        text-align: center;
    }

    .custom-list {
        margin-top: 0px;
        padding:40px;
    }
    .p {
        font-size:1rem;
        padding-left:10px;
        line-height:1.8;
    }
}