.container{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding:40px 0;
    }
    
    /* HEADER */
    
    .header{
    text-align:center;
    padding:60px 20px;
    background:white;
    margin-bottom:40px;
    }
    
    .header h1{
    font-size:42px;
    margin-bottom:15px;
    }
    
    .header p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.6;
    color:#000;
    }
    
    /* ENTREVISTA */
    
    .entrevista{
    background:white;
    padding:40px;
    margin-bottom:50px;
    border-radius:8px;
    }
    
    .entrevista h2{
    font-size:28px;
    margin-bottom:15px;
    }
    
    .entrevista p{
    font-size:17px;
    line-height:1.6;
    margin-bottom:25px;
    color:#000;
    }
    
    .video{
    position:relative;
    padding-bottom:56.25%;
    height:0;
    overflow:hidden;
    }
    
    .video iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border-radius:6px;
    }
    
    /* PODCAST */
    
    .podcast-section{
    text-align:center;
    margin-top:50px;
    }
    
    .podcast-section h2{
    font-size:30px;
    margin-bottom:30px;
    }
    
    .podcast-grid{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
    }
    
    .podcast-card{
    background:white;
    padding:30px;
    width:280px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
    }
    
    .podcast-card:hover{
    transform:translateY(-5px);
    }
    
    .podcast-card h3{
    font-size:20px;
    margin-bottom:10px;
    }
    
    .podcast-card p{
    font-size:15px;
    color:#666;
    margin-bottom:20px;
    }
    
    .podcast-card a{
    display:inline-block;
    padding:10px 18px;
    background:#b51818;
    color:white;
    text-decoration:none;
    border-radius:5px;
    font-size:14px;
    }
    
    .podcast-card a:hover{
    background:#000;
    }