#portfolio {
    background-color: #282299;
    color: #f8f7f2;
    padding: 20px 0px;

    .section-content {
        align-items: stretch;
    }

    .section-title {
        text-align: center;
    }

    .introduction {
        max-width: 100%;
        /* text-align: left; */
        font-family: 'Sorts Mill Goudy';
        color: #f8f7f2;
        max-height: 50%;
        margin-bottom: 20px;
        /* margin-left: 10%; */
    }
    
    .introduction span{
        font-weight: 500;
        text-size-adjust: 100%;
        max-width: 100%; /* Ensures text doesn't overflow its container */
        font-size: 1.6em; /* Initial font size based on viewport width */
        margin-bottom: 20px;
        margin-top: 10px;
    }
    
    .left-align-text {
        text-align: left;
        line-height: 1.8em;
        padding-bottom: 20px;
    }

    
    .wave-text {
        display: inline-block;
        position: relative;
    }
    
    .wave-text::after {
        content: '';
        position: absolute;
        right: 0;
        width: calc(25%); /* Adjust to control space before the wave starts */
        height: 2em; /* Adjust height to your wave height */
        /* background: url('../../assets/wave.svg') no-repeat; */
        background: var(--wave-bg1) no-repeat;
        transform: translate3d(-50%, 1.6em, 0);
        background-size: contain;
        pointer-events: none;
    }

    @media (max-width: 480px) {
        .wave-text::after {
            background: var(--wave-bg2) no-repeat;
            background-size: contain;
        }
    }

    @media (max-width: 480px) {
        .wave-text::after {
            width: calc(50%); /* Adjust to control space before the wave starts */
            bottom: 0;
            height: 2em; /* Adjust height to your wave height */
            background-size: contain;
            pointer-events: none;
        }
        
    }
    
}