/* ================= BLOG LAYOUT AUTO FLOW ================= */

.ite-blog-founder-style {
    padding: 120px 20px;
    background: #ffffff;
}

.ite-blog-founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: block; /* IMPORTANT */
}

/* IMAGE FLOAT LEFT */

.ite-blog-left {
    float: left;
    width: 480px;
    margin-right: 60px;
    margin-bottom: 40px;
}

.ite-blog-profile-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 30px;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.08),
        0 20px 40px rgba(0,0,0,0.05);
}

.ite-blog-profile-card img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: contain;
}

/* RIGHT CONTENT AUTO FLOW */

.ite-blog-right {
    overflow: hidden; /* important */
}

.ite-blog-mini {
    color: #f97316;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 20px;
}

.ite-blog-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.ite-blog-date {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 30px;
}

.ite-blog-content {
    font-size: 18px;
    line-height: 1;
    color: #475569;
}
.blog-readmore{
    padding:0 0 0 50% !important;
}

/* Clear float after section */

.ite-blog-founder-style::after {
    content: "";
    display: block;
    clear: both;
}

/* ================= SINGLE BLOG ================= */

.single-blog-section {
    padding: 120px 20px;
    background: #ffffff;
}

.single-blog-container {
    max-width: 900px;
    margin: 0 auto;
}

.single-blog-mini {
    text-align: center;
    color: #f97316;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 20px;
}

.single-blog-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.single-blog-date {
    text-align: center;
    color: #6b7280;
    margin-bottom: 50px;
}

.single-blog-image {
    margin-bottom: 50px;
}

.single-blog-image img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.single-blog-content p {
    text-align: justify;
    text-justify: inter-word;
}

.single-blog-content h2,
.single-blog-content h3 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.single-blog-content p {
    margin-bottom: 20px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .ite-blog-left {
        float: none;
        width: 100%;
        margin-right: 0;
    }

}