.profile_cont{
    /* border: 2px solid darkslategray; */
}
/* The first two stops carried alpha — c5 (0.773) and da (0.855) — so this band was
   not the fixed dark red it looks like in the source: it composited against
   whatever page tone sat behind it, landing near #937059 under the light theme and
   staying dark under the dark one. Everything painted on it therefore had two
   different grounds, and at the light-theme end the complain icon fell to 2.39:1.
   The stops are opaque now, which pins the ground to #742929 → #9c3636 in both
   themes; that is the range the `white` ink here and the #ff8a80 in
   stock_profile_user.html were measured against (5.9-7.0:1 and 3.1-4.4:1). */
.profile_user{
    /* border: 2px solid greenyellow; */
    display: flow-root;
    margin-top: 20px;
    width: 90%;
    margin-left: 5%;
    text-shadow: 2px 2px 5px black;
    padding: 20px 0px;
    background: linear-gradient(110deg,#742929 30%, #702c2c 40%, #9c3636 60%);
    box-shadow: 3px 3px 9px black;
    border-radius: 10px;
    color: white;
}
.profile_img{
    border-right: 2px solid gray;
    float: left;
    width: 49%;
    text-align: center;
    display: flow-root;

}
.profile_img img{
    height: 200px;
    width: 260px;
    box-shadow: 3px 3px 9px black;
    border-radius: 10px;
}
.profile_username{
    /* border: 2px solid purple; */
    float: left;
    width: 49%;
}
.usename{
    text-align: center;
    margin-top: 8%;
    font-size: 25px;
}
.mobile_no{
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
}
.edit_profile{
    margin-top: 13px;
    text-align: center;
}
.edit_profile span{
    border: 2px solid brown;
    display: inline-block;
    width: 40%;
    margin-top: 4%;
    padding: 10px 0px;
    font-size: 17px;
    box-shadow: 3px 3px 8px black;
    border-radius: 10px;
    cursor: pointer;
}
.data_area{
    /* border: 2px solid brown; */
    margin-top: 15px;
    text-align: center;
}
/* The listing card, and the second copy of the alpha-stop gradient fixed in
   home.css: c5/da composited it to #b6b5b4 → #dddbdb light and #83817f → #dddbdb
   dark, which is the ground .cont_ctg below was really being read against —
   2.35:1 light, 1.45:1 dark, not the 4.8/6.9 its note quotes for --surface. Both
   halves are theme roles now, so those numbers are the ones that apply. */
.data_area_cont{
    /* border: 2px solid black; */
    display: inline-block;
    /* height: 220px; */
    width: 22%;
    padding-bottom: 7px;
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
    margin-bottom: 18px;
    margin-right: 1%;
    background: var(--surface);
    color: var(--ink);
    }
.cont_pic{
    /* border: 2px solid purple; */
}
.cont_pic img{
    height: 220px;
    width: 100%;
}
.cont_detail{
    /* border: 2px solid yellow; */
    /* height: 100px; */
    text-align: left;
}
.cont_price{
    /* border: 2px solid brown; */
    display: block;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 5px;
}
.cont_ctg{
    /* border: 1px solid green; */
    display: block;
    font-size: 12px;
    /* font-weight: bold; */
    color: var(--ink-3);   /* was #808080 — see the note in home.css .cont_ctg */
    padding-bottom: 5px;
}
.cont_heading{
    /* border: 1px solid darkkhaki; */
    display: block;
    font-size: 17px;
    font-weight: bold;
    color: var(--primary-strong);   /* was rgb(80,22,58) — see the note in home.css .cont_heading */
    padding-bottom: 5px;
}
.o_detail{
    padding: 5px 14px;
}
.t_a_detail{
    /* border: 2px solid palegreen; */
    padding: 0px 5px;
    font-size: 9px; 
    /* height: 20px; */
}
.adrs{
    float: left;
}
.time{
    float: right;
}
.profile_ads{
    border-bottom: 4px solid black;
    font-size: 20px;
    width: 25%;
    margin-left: 2%;
    font-weight: bold;
    padding-bottom: 7px;
    margin-bottom: 10px;
}
.post_add{
    text-align: center;
    font-size: 22px;
}
.profile_socialmedia_main{
    /* border: 2px solid brown; */
    background: black;
    width: 90%;
    margin-left: 5%;
    margin-top: 15px;
    box-shadow: 4px 4px 9px gray;
    border-radius: 10px;
    text-align: center;
    color: white;
    padding: 10px;
    display: flow-root;
}
.profile_socialmedia_main span{
    float: left;
    display: inline-block;
    width: 50%;
    padding: 12px;
    font-size: 40px;
}
/* A fixed white panel with `color: white` on it — invisible text, and the only
   reason any of it could be read was that four of the five call sites overrode
   the colour with an inline `style="color: black"`. That also made this the one
   sheet-white block on a dark-theme page. Both halves are theme roles now, so
   the card follows the theme and its default ink is the readable one; the inline
   blacks in stock_profile_user.html became var(--ink) in the same pass.
   The span divider was a literal black, which on the dark card was a black line
   on dark brown — gone at exactly the moment it has work to do. --border is the
   hairline role and is visible against --surface in both themes. */
.profile_mystatus_main{
    /* border: 2px solid brown; */
    background: var(--surface);
    width: 90%;
    margin-left: 5%;
    margin-top: 15px;
    box-shadow: 4px 4px 9px gray;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    color: var(--ink);
    padding: 10px;
    display: flow-root;
}
.profile_mystatus_main span{
    border-left: 2px solid var(--border);
    float: left;
    display: inline-block;
    width: 25%;
    padding: 12px;
    font-size: 40px;
}
.profile_mystatus_main span:first-child{
    border-left: 0px solid black;
}



@media only screen and (max-width: 850px) {
    .data_area_cont{
        /* border: 2px solid black; */
        display: inline-block;
        /* height: 220px; */
        width: 30%;
        }

}
@media only screen and (max-width: 800px) {
    .profile_img img{
        height: 180px;
        width: 220px;
    }
    .profile_ads{
        width: 27%;
    }
}
@media only screen and (max-width: 650px) {
    .profile_img img{
        height: 140px;
        width: 180px;
    }
    .edit_profile span{
        font-size: 15px;
        margin-top: 3%;
        width: 50%;    
        
    }
    .profile_ads{
        width: 30%;
    }
}
@media only screen and (max-width: 600px) {
    .data_area_cont{
        width: 45%;
        }
    .time{
        display: none;
    }
}
@media only screen and (max-width: 550px) {
    .welcome_txt_a{
        font-size: 20px;
    }
    .welcome_txt_b{
        font-size: 20px;
    }
    .profile_socialmedia_main span{
        font-size: 30px;
    }
}
@media only screen and (max-width: 500px) {
    .profile_img img{
        height: 120px;
        width: 140px;
    }
    .usename{
        font-size: 20px;
    }
    .mobile_no{
        text-align: center;
        margin-top: 10px;
        font-size: 16px;
    }
    .edit_profile span{
        font-size: 13px;
        margin-top: 2%;
        width: 55%;
    }
    .profile_ads{
        width: 33%;
    }
    .profile_mystatus_main span{
        border-left: 1px solid var(--border);
        font-size: 30px;
    }
}
@media only screen and (max-width: 400px) {
    .profile_img img{
        height: 100px;
        width: 120px;
    }
    .usename{
        font-size: 18px;
    }
    .mobile_no{
        text-align: center;
        margin-top: 10px;
        font-size: 14px;
    }
    .edit_profile span{
        font-size: 11px;
        margin-top: 1%;
        width: 60%;
    }
    .profile_ads{
        width: 35%;
    }
    .cont_pic img{
        height: 180px;
        width: 100%;
    }
    .cont_heading{
        font-size: 13px;
    }
}
@media only screen and (max-width: 300px) {
    .profile_img img{
        height: 80px;
        width: 100px;
    }
}