    .heroRow {
    height: 92vh;
}
.backgroundImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.backgroundImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 130px;
}

.heroRow h1 {
    position: absolute;
    top: 30%;
    left: 50%;
    z-index: 10;
    font-family: 'Arapey';
    transform: translateX(-50%);
    color: white;
    font-size: 3.1em;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.7));
}


.allPosts {
    display: flex;
    flex-direction: row;
    padding: 7vh 10%;
    justify-content: space-between;
    flex-wrap: wrap;
}



.post>a {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: unset;
}



.postImage {
    height: 60%;
    overflow: clip;
    border-bottom: 4px solid #292246;
}

.postContent p {
    -webkit-line-clamp: 4;
    line-clamp: 4;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    font-family: 'Arapey';
    color: black;
    font-size: 1em;
    padding: 0 2%;
    text-align: center;
}

.post {
    width: 26%;
    height: 52vh;
    border-radius: 10px;
    border: 4px solid #292246;
    margin-bottom: 5%;
}

.post:hover .postContent::after {
    transform: translate(-50%,-50%) rotate(360deg);
}

.postContent {
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.postContent::after {
    content: '';
    background-image: url('/wp-content/uploads/2025/11/logo.png');
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.65s cubic-bezier(.18,.77,.16,.9);
}


.postContent h2 {
    margin: unset;
    padding: 0 4%;
    text-overflow: ellipsis;
    overflow: clip;
    text-align: center;
    color: #1f193f;
    font-family: 'Arapey';
    font-size: 1.4em;
}

.postImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    display: block;
    transform: scale(1.01);
}


.pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto;
    width:100%;
}

span.page-numbers.dots {
    background-color: unset;
    color: #1a1a1a;
    padding-bottom: 0;
    cursor:default;
}

.pagination>* {
    margin: 0 0.4em;
    font-family: 'Montserrat';
    background-color: #292246;
    color: white;
    border-radius: 1px;
    white-space: nowrap;
    cursor: pointer;
    padding: 0.4% 0.7%;
    text-decoration: unset;
    transition: all 0.25s ease-in-out;
    margin-bottom: 1.5em;
}

.pagination>*:hover {
    background-color: #CDCDCD;
    color:#292246;
}

span.page-numbers.current {
    background-color: #CDCDCD;
    color: #292246;
    cursor: no-drop;
}

@media only screen and (max-width:1600px){
    .post {
    width: 30%;
}

.post {
    width: 30%;
    height: 57vh;
}

.postContent {
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 3% 0;
}
.postContent p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}


}

@media only screen and (max-width:1100px){
    .heroRow h1 {
    font-size: 2em;
    width: 80%;
    text-align: center;
}

.backgroundImage img {
    object-position: 77% 0%;
}

   .post {
    width: 46%;
    height: fit-content;
}

.postContent {
    padding: 1.5em 0;
}


}



@media only screen and (max-width:500px){

.post {
    width: 96%;
    height: 70vh;
    border-radius: 10px;
    border: 4px solid #292246;
    margin-bottom: 5%;
}
.postContent h2 {
    font-size: 1.6em;
}

.postContent p {
    font-size: 0.9em;
}

.allPosts {
    padding: 7vh 3%;
}

}