@media only screen and (min-width: 1000px) {
    .p-section1 {
        width: calc(100% - 100px);
        margin: 50px;
        margin-top: 225px;
        color: white;
    }
    
    .p-section1-text1 {
        font-size: 50px;
        line-height: 50px;
        height: 50px;
        font-weight: 600;
    }
    
    .p-section2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 25px;
        margin: 50px;
    }
    
    .p-section2-item {
        height: auto;
    }
    
    .p-section2-item-image {
        width: 100%;
        aspect-ratio: 16/9;
        background-size: cover;
        background-position: center;
        border-radius: 5px;
    }
    
    .p-section2-item-text {
        font-size: 28px;
        line-height: 33px;
        font-weight: 600;
        color: white;
        margin-top: 25px;
    }
    
    .p-section2-item-date {
        font-size: 18px;
        line-height: 18px;
        color: white;
        margin-top: 18.75px;
        letter-spacing: 1px;
    }
    
    .p-section2-item-age {
        display: inline-block;
        height: 20px;
        color: white;
        margin-top: 12.5px;
    }
}

@media only screen and (max-width: 1000px) {
    .p-section1 {
        width: calc(100% - 50px);
        margin: 25px;
        margin-top: 150px;
        color: white;
    }
    
    .p-section1-text1 {
        font-size: 30px;
        line-height: 30px;
        font-weight: 600;
        width: 100%;
        text-align: left;
    }
    
    .p-section2 {
        display: block;
        margin: 25px;
    }
    
    .p-section2-item {
        height: auto;
        margin-top: 25px;
    }
    
    .p-section2-item-image {
        width: 100%;
        aspect-ratio: 16/9;
        background-size: cover;
        background-position: center;
        border-radius: 5px;
    }
    
    .p-section2-item-text {
        font-size: 25px;
        line-height: 30px;
        font-weight: 600;
        color: white;
        margin-top: 18.75px;
    }
    
    .p-section2-item-date {
        font-size: 18px;
        line-height: 18px;
        color: white;
        margin-top: 12.5px;
        letter-spacing: 1px;
    }
    
    .p-section2-item-age {
        display: inline-block;
        height: 20px;
        color: white;
        margin-top: 12.5px;
    }
}