.wp-post-image {
    width: 100%;
    aspect-ratio: 1!important;
    border-radius: 5%;
}

.quizList {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.quizCard {
    background: fff;
    color: black;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 300px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.quizCard h3 {
    font-size: 1.5em;
    margin: 0;
    padding: 16px;
    text-align: center;
    color: black;
}

.quizCard .innerContent {
    color: black;
}

.quizCard:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.innerContent {
    padding: 16px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
}

.quizImage {
    width: 100%;
    height: auto;
    border: solid 2px #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
}

.quizTitle {
    font-size: large!important;
    font-weight: bold;
    margin: 0 0 8px 0;
    text-align: center;
    color: black;
}

.quizExcerpt {
    font-size: 0.95em;
    color: black;
    margin: 0 0 12px 0;
    text-align: center;
    line-height: 1.5;
    flex: 1 1 auto;
}

.playButton {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 1em;
    cursor: pointer;
    margin: 16px;
    transition: background 0.2s;
}

.playButton:hover {
    background: #0056b3;
}

.quizCard a {
    text-align: center;
    text-decoration: none;
}

.quizList2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 32px auto;
    max-width: 1200px;
    justify-content: center;
}

.quizTitle2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 260px;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quizTitle2:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.quizTitle2 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.quizTitle2 h3 {
    margin: 16px 0;
    font-size: 1.2rem;
    color: #222;
    text-align: center;
}

.quizTitle2 a {
    font-size: medium;
    text-decoration: none !important;
    color: inherit;
    display: block;
    width: 90%;
    height: 100%;
}
.letterHeading
{
    list-style: none! important;
    padding: 0 !important;
}
/**mobile**/
@media only screen and (max-width: 600px) {
    .quizTitle {
        width: 100%;
    }

    .quizList {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));

    }

    .quizTitle {
        width: 100%;
    }

    .quizTitle img {
        width: 100%;
    }

    .quizTitle h3 {
        font-size: 1rem !important;
    }

    .quizList2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}