
  .containers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between the two boxes */
    
}

.box {
    display: flex;
    width: 900px;
    height: 230px;
    border-radius:20px;
    border:2px solid black;
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border:2px solid black;
    border-radius:20px;
}

.image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.text {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2em;
    padding: 10px;
    border-radius:20px;
}

.blue-bg {
    background-color: blue;
}

/* Responsive styling for mobile (up to 768px wide) */
@media (max-width: 768px) {
    #newsroom .box {
        flex-direction: column;
        width: 100%;
        margin-bottom: 30px; /* Added margin for gap between boxes */
    }

    #newsroom .text, #newsroom .image {
        text-align: center;
        margin-bottom: 10px;
    }

    #newsroom .image img {
        width: 150px;
        height: auto;
    }

    #newsroom h3 {
        font-size: 18px;
    }

    #newsroom span {
        font-size: 14px;
    }
}

 
.red-bg {
    background-color: red;
    color: white;
}

.white-bg {
    background-color: white;
    color: black;
}

         
            #newsroom{
                position:static;
                
                
            }
               /* General Flexbox Layout */
.d-flex {
    display: flex;
    align-items: center;
   justify-content:space-evenly;
}

/* Styling for the News Box */
.newsBox {
    background-color: #1117A0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    width:700px;
    height:300px;
    justify-content:center;
}

/* Styling for the News Description */
.newsDesc {
    flex: 1;
    margin-right: 20px;
}

/* Headline Link */
.underlineHead h4 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top:-50px;
    
}

.underlineHead h4:hover {
    text-decoration: underline;
}

/* Publisher Info */
.newsDesc p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 35px;
}

/* "Read More" Link */
.newsLink {
    color: #007bff;
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    text-align:left;
}

.newsLink:hover {
    text-decoration: underline;
}

/* Icon next to "Read More" Link */
.readIcon {
    margin-left: 5px;
}

/* Image Styling */
.newsImg img {
    width: 350px;
    height: auto;
    border-radius: 8px;
    margin-top:-60px;
}