.full-width-block {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
}

.container {
    max-width: 1140px;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}

.shape svg {
    width: calc(300% + 1.3px);
    height: 50px;
    color: #fff;
}

.shape-fill {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

.top {
    top: -1px;
}

.bottom {
    bottom: -1px;
    transform: rotate(180deg);
}

.quote-heading {
    padding: 10vh;
    margin-top: 3vh;
    margin-bottom: 3vh;
}

.quote {
    color: #F7FAFE;
    font-family: "Quicksand", Sans-serif;
    font-size: 2rem;
}

.block-quote-content {
    font-size: 1.25rem;
    font-weight: 600;
}

.block-quote-author {
    margin-top: 2vh;
    margin-left: 2vw;
    font-size: 1.5rem;
    font-weight: 600;
}

.embed-wrapper {
    position: relative;
    width: 100%;
    padding-top: 25vh;
  }
  
.embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: rgb(238, 238, 238) 1px 1px 7px 1px;
    border-radius: 8px;
}

.una-link-grid {
    display: flex;
}

.una-link-grid-item {
    position: relative;
    width: 33.333%;
    margin: 3px;
    align-self: flex-start;
    transition-property: transform, opacity;
    transition-timing-function: ease-in-out;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: rgb(238, 238, 238) 1px 1px 7px 1px;
}

.una-link-grid .una-link-grid-item .post-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%; /* Ensure it covers full area of its parent */
    min-height: 200px; /* Ensure there's a minimum height */
}

.post-link-editor {
    min-height: 150px !important;
}

.thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%; /* Cover the entire area of post-link */
    height: 100%;
    z-index: 10;
}

.overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    transition: opacity 1s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0751D8;
    border-radius: 8px;
    width: 100%; /* Cover the entire area of post-link */
    height: 100%;
    z-index: 20;
}

.overlay-editor {
    padding: 0px !important;
}

.post-link:hover .overlay {
    opacity: 1;
    transition: opacity .5s;
}

.una-link-grid article {
    transform: translate3d(0px, 0px, 0px);
}

.post-title {
    font-family: "Quicksand", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1;
    z-index: 30;
    color: #fff;
}

.post-link:hover {
    color: #13aff0;
    text-decoration: none;
    transition: all .3s ease;
}

