/* ===========================
   Page
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f3f7fb;
}

.container{
    width:75%;
    margin:130px auto 50px;
}

/* ===========================
   Hero
=========================== */

.hero{
    margin-top:80px;
    background:linear-gradient(135deg,#0f766e,#22c1bb);
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.hero h1{
    font-size:46px;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ===========================
   Post Form
=========================== */

.post-box{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:45px;
}

.post-box h2{
    color:#222;
    margin-bottom:25px;
}

.post-box input,
.post-box textarea{
    width:100%;
    padding:15px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:16px;
    transition:.3s;
}

.post-box input:focus,
.post-box textarea:focus{
    border-color:#22c1bb;
}

.post-box textarea{
    height:160px;
    resize:none;
}

.post-box button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    background:#22c1bb;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.post-box button:hover{
    background:#11998e;
}

/* ===========================
   Feed Heading
=========================== */

.feed-title{
    margin:30px 0;
    color:#222;
    font-size:32px;
}

/* ===========================
   Posts Grid
=========================== */

#posts{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* ===========================
   Experience Card
=========================== */

.experience-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.experience-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

/* ===========================
   Card Header
=========================== */

.experience-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #eee;
}

.profile{
    display:flex;
    align-items:center;
    gap:15px;
}

.profile-circle{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#22c1bb;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:22px;
    font-weight:bold;
}

.profile h3{
    color:#222;
    margin-bottom:5px;
}

.profile p{
    color:#666;
    font-size:14px;
}

.post-date{
    color:#888;
    font-size:14px;
}

/* ===========================
   Image
=========================== */

.experience-image{
    width:100%;
    height:250px;
    object-fit:cover;
}

/* ===========================
   Content
=========================== */

.experience-content{
    padding:20px;
}

.experience-content h2{
    margin-bottom:12px;
    color:#222;
    font-size:24px;
}

.experience-content p{
    color:#555;
    line-height:1.7;
    font-size:15px;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

    .container{
        width:90%;
    }

    #posts{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:34px;
    }

    .feed-title{
        font-size:28px;
    }

    .experience-image{
        height:220px;
    }

    .experience-header{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
}

/* ===========================
   Header
=========================== */

.header{
    background:#374151 !important;
}