main{
    width: 100%;
}
.breadcramp-lists-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 100px;
}
.breadcramp-lists-box h1 {
    font-weight: 580;
}
.breadcramp-lists-box nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
}
.breadcramp-lists-box nav ul li:nth-child(2){
    color: var(--yellow);
}


section {
    width: 100%;
    padding: 30px 100px;
    background-color: var(--light-white);
    color: var(--black);
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit,minmax(min(100%,300px),1fr));
}
section .popular-radio-headline {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: start;
    gap: 15px;
}
.popular-radio-headline h2 {
    font-size: 2rem;
    font-weight: 550;
    line-height: 2.3rem;
}

section .hero {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
section .hero .app-logo {
    aspect-ratio: 16/9;
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid var(--light-white);
    background-color: var(--light-white);
    box-shadow: 0 10px 10px 0 var(---red);
}
section .hero .app-logo img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
section .hero .app-metadata {
    width: calc(100% - 130px);
    display: flex;
    align-self: flex-start;
    flex-direction: column;
    gap: 10px;
}
section .hero .app-metadata .app-name {
    font-size: 1.2rem;
    line-height:1.4rem;
    font-weight: 550;
}


section .hero .app-metadata .app-store-logos {
    width: 100%;
    display: grid;
    align-content: start;
    gap: 10px;
    grid-template-columns: repeat(auto-fit,minmax(min(100%,100px),1fr));
}
section .hero .app-metadata .app-store-logos img , section .hero .app-metadata .app-store-logos svg{
    width: 100%;
    height: 100%;
}



section .screenshots {
    width: 100%;
    height: fit-content;
    display: grid;
    gap: 10px;
}
section .screenshots .screenshots-images {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(min(100%,200px),1fr));
    gap: 10px;
    padding: 0 20px;
}
section .screenshots .screenshots-images div:has(img){
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
section .screenshots .screenshots-images img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

@media (min-width:769px) and (max-width:1024px) {
    section , .breadcramp-lists-box {
        padding: 20px 20px;
    }
}
@media (max-width:768px) {
    section , .breadcramp-lists-box {
        padding: 20px 20px;
    }
}
@media (max-width:400px) {
    section , .breadcramp-lists-box {
        padding: 10px 10px;
    }
}