.news-block {
    display: flex;            
    justify-content: space-between;
    align-items: center;      
    width: 100%;               
    padding: 10px 0;            
    color: white;             
}
.news-left {
    display: flex;             
    align-items: center;        
    gap: 3px;                
}
.news-indicator {
    display: inline-block;      
    width: 1px;             
    height: 15px;           
    background-image: linear-gradient(to bottom, white, white);
    background-size: 5px 4px; 
    background-repeat: repeat-y;
}
.news-date {
    font-size: 0.8em;  
}
.hero h1{
    text-align: start;
}
.hero p{
    text-align: start;
    color: white;
}
.hero-content {
    max-width: 65vw;
}
.hero {
    padding: 160px 0 0px;
}
@media (max-width: 768px) {
    .hero-content {
        max-width: 80vw;
    }
    .hero {
        padding: 120px 50px;
        padding-bottom: 0;
    }
}
@media (max-width: 768px) {
    .hero-content {
        max-width: 100vw;
    }
    .hero {
        padding: 100px 24px;
        padding-bottom: 0;
    }
    .background-container .hero .container {
        padding: 0;
    }
    .centered-block {       
        padding: 30px;
    }
}
@media (max-width: 425px) {
    .centered-block {       
        padding: 20px;
    }
}
@media (min-width: 1430px) {
    .news-block{
        margin-bottom: 12px;
        padding: 0;
    }
    .hero {
        padding: 210px 70px 27px;
    }
    .hero h1{
        font-size: 64px;
        margin-bottom: 36px;
    }
    .hero p{
        font-size: 32px;
        margin-bottom: 0;
    }
    .news-left {
        font-size: 14px;               
    }
    .news-date {
        font-size: 14px;  
    }
    .left-aligned-text {
        padding-top: 20px;
        font-size: 16px;
    }
}

.background-container {
    padding-bottom: 5vh;
}
.centered-block {    
    margin: 0 auto;   
    display: flex;   
    flex-direction: column; 
    align-items: center;  
    color: white;
    position: relative;
    z-index: 1;
    padding: 50px;
}
.full-width-image {
    width: 100%;  
    height: auto;     
    display: block;    
    border-radius: 8px;
    margin-bottom: 20px;
}
.white-line {
    border: none;  
    height: 0.1px; 
    background-color: rgb(220, 220, 220);
    margin: 20px 0;
    width: 100vw;
    padding: 0;
}
.left-aligned-text {
    text-align: left;    
    font-size: 16px;
    line-height: 20px;
    width: 60vw;
}
@media (max-width: 1024px) {
    .centered-block {       
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .full-width-image {
        border-radius: 6px;
        margin-bottom: 15px;
    }
    .left-aligned-text {
        font-size: 14px;
        width: 80vw;
    }
    .white-line {
        margin: 15px 0;
    }
    .centered-block {       
        padding: 30px;
    }
}
@media (max-width: 425px) {
    .hero {
        padding-top: 130px;
    }
    .news-block {
        font-size: 14px;
        padding: 0;
        margin-bottom: 9px;
    }
    .hero p {
        font-size: 20px;
    }
    .centered-block {       
        padding: 0px 24px;
    }
    .left-aligned-text {
        font-size: 14px;
        width: 100vw;
        padding: 0px 24px;
        line-height: 17px;
    }
    .white-line {
        margin: 36px 0;
    }
    .full-width-image {
        margin-bottom: 0px;
    }
}
@media (min-width: 1441px) {
    .centered-block {    
        padding: 70px;
    }.white-line {
        margin: 50px 0;
    }
    .left-aligned-text {   
        font-size: 16px;
        width: 80vw;
    }
}

/* graditnt-2 */
.background-container {
    position: relative;
    z-index: 0;
    background-color: black;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    padding-bottom: 70px;
}
.background-container::before {
    content: "";
    position: absolute;
    width: 50vw;
    height: 50vw; 
    border-radius: 50%;
    filter: blur(8vw); 
    opacity: 0.6;
    z-index: 0;
}
.background-container::after {
    content: "";
    position: absolute;
    width: 60vw; 
    height: 60vw; 
    border-radius: 50%;
    filter: blur(7vw);  
    opacity: 0.5;
    z-index: 0;
}
.background-container::before {
    background: linear-gradient(to right, #C9260C 5%, #FF8000 100%);
    top: 10%;   
    left: 1%; 
}
.background-container::after {
    background: linear-gradient(to right, 
        #C9260C 0%, 
        #FA9CEA 51%, 
        #7300FF 100%
    );
    top: 0%;     
    left: 40%;   
}
.background-container::before {
    width: 60vw;
    height: 60vw;
    filter: blur(13vw);
    top: 7%;
    left: -10%;
}
@media (max-width: 768px) {
    .background-container::before {
        width: 100vw;
        height: 100vw;
        filter: blur(15vw);
        top: 7%;
        left: -30%;
    }
    .background-container::after {
        width: 120vw;
        height: 120vw;
        filter: blur(17vw);
        top: 1%;
        left: 10%;
    }
}
@media (max-width: 425px) {
    .background-container {
        padding-bottom: 80px;
    }
}
