.quotation-section {
    /* display: grid; */
    display: flex;
    flex-wrap: wrap;
    grid-gap: 2rem;
    padding: 1rem;
    /* max-width: 1024px; */
    margin: 0 auto;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

h1 {
    text-align: center;
}

#quotation-title {
    font-size: 36px;
    /* Adjust the font size as needed */
    font-weight: bold;
    text-align: center;
    color: #030303;
    /* Choose a color for the text */
    margin-bottom: 20px;
    /* Adjust spacing as needed */
    width: 100%;
}


.quotation-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 1rem;
    width: 300px;
    height: 500px;
    border-radius: 15px;
    margin: 0 auto;
    text-align: center;
    color: whitesmoke;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
        0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
        0 16px 16px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.quotation-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem;
    transition: transform var(--d) var(--e);
    z-index: 1;
}


.quotation-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: transform calc(var(--d) * 1.5) var(--e);
    pointer-events: none;
}

.quotation-card:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient(to bottom,
            hsla(0, 0%, 0%, 0) 0%,
            hsla(0, 0%, 0%, 0.009) 11.7%,
            hsla(0, 0%, 0%, 0.034) 22.1%,
            hsla(0, 0%, 0%, 0.072) 31.2%,
            hsla(0, 0%, 0%, 0.123) 39.4%,
            hsla(0, 0%, 0%, 0.182) 46.6%,
            hsla(0, 0%, 0%, 0.249) 53.1%,
            hsla(0, 0%, 0%, 0.32) 58.9%,
            hsla(0, 0%, 0%, 0.394) 64.3%,
            hsla(0, 0%, 0%, 0.468) 69.3%,
            hsla(0, 0%, 0%, 0.54) 74.1%,
            hsla(0, 0%, 0%, 0.607) 78.8%,
            hsla(0, 0%, 0%, 0.668) 83.6%,
            hsla(0, 0%, 0%, 0.721) 88.7%,
            hsla(0, 0%, 0%, 0.762) 94.1%,
            hsla(0, 0%, 0%, 0.79) 100%);
    transform: translateY(-50%);
    transition: transform calc(var(--d) * 2) var(--e);
}



.quotation-text {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 2;
    color: aliceblue;
    /* Increase line spacing */
}

.quotation-author {
    font-size: 1rem;
    color: aliceblue;
    margin-top: 40px;
}