/* Seção Principal */
.sm-nextp-news-section {
    position: relative;
    padding: 64px 0;
    /* py-16 */
    background-color: #1d4ed8;
    /* bg-blue-700 */
}

/* Container */
.sm-nextp-container {
    max-width: 896px;
    /* max-w-4xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    /* px-6 */
    padding-right: 1.5rem;
}

/* Cabeçalho da Seção */
.sm-nextp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    /* mb-8 */
}

.sm-nextp-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 800;
    /* font-extrabold */
    color: #ffffff;
    margin: 0;
}

/* Lista e Itens */
.sm-nextp-list>*+* {
    margin-top: 1.5rem;
    /* space-y-6 */
}

.sm-nextp-item {
    display: flex;
    flex-direction: column;
}

.sm-nextp-item-title {
    color: #ffffff;
    font-weight: 700;
    /* font-bold */
    font-size: 1.25rem;
    /* text-xl */
    margin-bottom: 0.5rem;
}

.sm-nextp-item-excerpt {
    color: rgba(255, 255, 255, 0.8);
    /* text-white/80 */
    margin-bottom: 0.5rem;
}

/* Botões */
.sm-nextp-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    /* px-4 py-2 */
    background-color: rgba(59, 130, 246, 0.9);
    /* bg-blue-500/90 */
    color: #ffffff;
    font-weight: 600;
    border-radius: 9999px;
    /* rounded-full */
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    /* shadow-lg */
    transition: background-color 0.2s, transform 0.2s;
}

.sm-nextp-btn:hover {
    background-color: rgba(96, 165, 250, 0.9);
    /* hover:bg-blue-400/90 */
}

.sm-nextp-btn-small {
    align-self: flex-start;
    /* self-start */
}

/* Divisor */
.sm-nextp-divider {
    color: #ffffff;
    margin-top: 1rem;
    display: block;
    opacity: 0.5;
}