/* Estilo do contêiner do botão */
.cl-content {
    display: block;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    background-color: #f9f9f9;
    text-align: center;
    padding: 20px 0;
	margin-left: -30px;
	margin-right: -30px;
}

.cl-content::before {
    content: "";
    position: absolute;
    top: -32px;
    height: 32px;
    width: 100%;
    display: block;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fcfcfc 50%, #f9f9f9);
}

/* Estilo do link "Continuar Lendo" */
.cl-continuar-lendo-link {
    width: 268px;
    text-align: center;
    padding: 15px;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 0 #cecece;
    display: inline-block;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.cl-continuar-lendo-link:hover {
    background-color: #ebebeb;
    color: #000;
}

.cl-continuar-lendo-link .arrow-down {
    display: none; /* Opcional: esconde a seta se não for mais necessária */
}
