.ipw-container {
    display: flex;
    gap: 25px;
}

/* LEFT BIG CARD */
.ipw-left {
    width: 50%;
}

.ipw-featured {
    position: relative;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* GRADIENT OVERLAY */
.ipw-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 100%);
}

/* CONTENT BOTTOM */
.ipw-featured-content {
    position: absolute;
    bottom: 0;
    padding: 25px;
    color: #fff;
}

.ipw-meta {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.ipw-title {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.ipw-readmore {
    color: #f4b400;
    text-decoration: none;
}

/* RIGHT SIDE */
.ipw-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* SMALL CARDS */
.ipw-card {
    display: flex;
    gap: 15px;
    background: #0f2a3c;
    padding: 15px;
    border-radius: 14px;
    align-items: center;
}

.ipw-card-img img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.ipw-card-content {
    color: #fff;
}

.ipw-card-date {
    font-size: 12px;
    opacity: 0.7;
}

.ipw-card-content h4 {
    font-size: 15px;
    margin: 5px 0;
}

.ipw-card-content a {
    font-size: 13px;
    color: #f4b400;
    text-decoration: none;
}