Haitian authors telling our stories to know this Women’s History Month

Haitian authors telling our stories to know this Women’s History Month

Haitian Women Authors | Literary Showcase

/* Premium Editorial Theme */
:root {
–brand-blue: #003893;
–brand-red: #d21034;
–text-main: #2b2b2b;
–text-muted: #555555;
–bg-main: #f4f5f7;
–bg-card: #ffffff;
}

body {
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Helvetica, Arial, sans-serif;
line-height: 1.7;
color: var(–text-main);
background-color: var(–bg-main);
margin: 0;
padding: 60px 4%;
box-sizing: border-box;
}

/* 3-COLUMN CONTAINER */
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
}

/* Editorial Header Styling */
.header-section {
margin: 0 auto 70px auto;
max-width: 900px;
text-align: center;
background: transparent;
padding: 0 20px;
}

.header-section h2 {
font-family: “Georgia”, “Times New Roman”, serif;
font-size: 2.8rem;
font-weight: 400;
color: #111;
margin-top: 0;
margin-bottom: 1rem;
line-height: 1.2;
letter-spacing: -0.5px;
}

/* Red decorative line */
.header-section::after {
content: ”;
display: block;
width: 80px;
height: 3px;
background-color: var(–brand-red);
margin: 30px auto;
border-radius: 2px;
}

.header-section p {
font-size: 1.15rem;
color: var(–text-muted);
text-align: left;
}

.intro-meta {
text-transform: uppercase;
font-weight: 700;
color: var(–brand-blue);
font-size: 0.9rem;
letter-spacing: 1px;
}

/* 3-COLUMN GRID LAYOUT */
.author-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 45px;
}

/* Load-in Animation */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}

/* Individual Author Card */
.author-card {
background: var(–bg-card);
padding: 0;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.04);
display: flex;
flex-direction: column;
overflow: hidden;
transition: transform 0.4s ease, box-shadow 0.4s ease;
position: relative;
animation: fadeUp 0.8s ease-out backwards;
}

.author-card:nth-child(3n+1) { animation-delay: 0.1s; }
.author-card:nth-child(3n+2) { animation-delay: 0.2s; }
.author-card:nth-child(3n) { animation-delay: 0.3s; }

/* Top border accent on hover */
.author-card::before {
content: ”;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(–brand-blue);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
z-index: 2;
}

.author-card:hover::before {
transform: scaleX(1);
background: var(–brand-red);
}

.author-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.author-card figure {
margin: 0;
padding: 0;
width: 100%;
overflow: hidden;
position: relative;
}

.author-card img {
width: 100%;
aspect-ratio: 3 / 4;
object-fit: cover;
display: block;
transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.author-card:hover img {
transform: scale(1.05);
}

.card-content {
padding: 30px;
flex-grow: 1;
display: flex;
flex-direction: column;
}

/* ONLY TARGET FIGCAPTIONS INSIDE AUTHOR CARDS */
.author-card figcaption {
font-size: 0.75rem;
color: #fff;
background: rgba(0,0,0,0.6);
position: absolute;
bottom: 15px;
right: 15px;
padding: 4px 10px;
border-radius: 4px;
backdrop-filter: blur(4px);
text-transform: uppercase;
letter-spacing: 0.5px;
z-index: 5;
}

.author-card h3 {
font-family: “Georgia”, “Times New Roman”, serif;
font-size: 1.6rem;
font-weight: 400;
color: var(–brand-blue);
margin: 0 0 15px 0;
line-height: 1.2;
}

.author-card p {
font-size: 0.95rem;
color: var(–text-muted);
margin-bottom: 1.5rem;
flex-grow: 1;
}

.author-card a {
color: var(–brand-blue);
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
display: inline-block;
border-bottom: 1px solid transparent;
transition: border-color 0.2s ease, color 0.2s ease;
}

.author-card a:hover {
color: var(–brand-red);
border-bottom: 1px solid var(–brand-red);
}

/* ———————————-
LIBRARY SLIDER SECTION
———————————- */
.book-slider-wrapper {
grid-column: 1 / -1;
background: #111111;
border-radius: 12px;
padding: 60px 0;
margin: 20px 0;
overflow: hidden;
position: relative;
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.slider-title {
text-align: center;
font-family: “Georgia”, “Times New Roman”, serif;
font-size: 2rem;
color: #ffffff;
margin: 0 0 40px 0;
font-weight: 400;
}

.slider-title::after {
content: ”;
display: block;
width: 60px;
height: 2px;
background-color: var(–brand-red);
margin: 15px auto 0;
}

.marquee {
display: flex;
overflow: hidden;
white-space: nowrap;
position: relative;
}

.marquee::before, .marquee::after {
position: absolute;
top: 0;
width: 150px;
height: 100%;
content: “”;
z-index: 2;
pointer-events: none;
}
.marquee::before {
left: 0;
background: linear-gradient(to right, #111111 0%, transparent 100%);
}
.marquee::after {
right: 0;
background: linear-gradient(to left, #111111 0%, transparent 100%);
}

.marquee-content {
display: flex;
animation: scrollBooks 35s linear infinite;
}

.marquee-content.reverse {
animation: scrollBooksReverse 35s linear infinite;
}

.marquee:hover .marquee-content {
animation-play-state: paused;
}

.book-item {
width: 180px;
height: 270px;
margin: 0 25px;
border-radius: 4px;
box-shadow: 0 10px 20px rgba(0,0,0,0.4);
object-fit: cover;
transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
cursor: pointer;
background-color: #222;
}

.book-item:hover {
transform: translateY(-12px) scale(1.05);
box-shadow: 0 20px 30px rgba(0,0,0,0.6);
}

@keyframes scrollBooks {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

@keyframes scrollBooksReverse {
0% { transform: translateX(-50%); }
100% { transform: translateX(0); }
}

.library-cta-container {
text-align: center;
margin-top: 50px;
position: relative;
z-index: 3;
}

.library-cta {
display: inline-block;
padding: 14px 35px;
background-color: var(–brand-red);
color: #ffffff;
text-transform: uppercase;
font-weight: 700;
font-size: 0.9rem;
letter-spacing: 1.5px;
border-radius: 30px;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.library-cta:hover {
background-color: #b00d2b;
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(210, 16, 52, 0.4);
color: #ffffff;
}

/* ———————————-
BONUS BOOKS SHOWCASE (2×2 Grid with Year Badges)
———————————- */
.bonus-books-showcase {
grid-column: span 2;
background: var(–bg-card);
border-radius: 12px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0,0,0,0.04);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
animation: fadeUp 0.8s ease-out backwards;
animation-delay: 0.4s;
}

.bonus-books-showcase h3 {
font-family: “Georgia”, “Times New Roman”, serif;
font-size: 1.8rem;
color: var(–brand-blue);
margin: 0 0 35px 0;
font-weight: 400;
text-align: center;
}

.bonus-books-flex {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
width: 100%;
max-width: 380px;
margin: 0 auto;
}

.bonus-book-wrapper {
position: relative;
width: 100%;
border-radius: 4px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
}

.bonus-book-wrapper:hover {
transform: translateY(-8px);
box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

.bonus-book-wrapper img {
width: 100%;
aspect-ratio: 2 / 3;
object-fit: cover;
border-radius: 4px;
display: block;
box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* Sleek badge overlay to categorize by year */
.year-badge {
position: absolute;
top: 8px;
right: 8px;
background: var(–brand-blue);
color: #ffffff;
font-size: 0.75rem;
font-weight: 700;
padding: 4px 8px;
border-radius: 4px;
z-index: 10;
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
letter-spacing: 0.5px;
}

/* Highlight the 2025 badge in Red to make it pop */
.year-badge.upcoming {
background: var(–brand-red);
}

/* Responsive Design Adjustments */
@media (max-width: 950px) {
.author-grid {
grid-template-columns: repeat(2, 1fr);
}
.bonus-books-showcase {
grid-column: span 1;
padding: 25px;
}
}
@media (max-width: 600px) {
.author-grid {
grid-template-columns: 1fr;
}
.bonus-books-showcase {
grid-column: span 1;
}
}

.footer-note {
margin-top: 80px;
text-align: center;
padding: 40px 0;
font-size: 1.05rem;
color: var(–text-muted);
border-top: 1px solid #e0e0e0;
}

.footer-note a {
color: var(–brand-blue);
text-decoration: none;
font-weight: 600;
}

New York — From historians and poets to novelists and young-adult authors, Haitian women writers are continuing a strong tradition of storytelling across Haiti and the diaspora. Publishing works between 2024 and 2026 that explore Haitian history, migration, identity and everyday life, the books appear in classrooms, bookstores and literary festivals in Haiti, the United States, Canada and France — helping bring Haitian stories to a wider audience.

Here’s a selection of authors, both emerging and enduring voices, with their recent works noted.

Via ErinEAdams.com

Erin E. Adams

Erin E. Adams — an author, playwright, and actor who grew up in a small Pennsylvania town — frequently blends supernatural folklore with sharp social commentary, particularly regarding race and identity. Adams gained widespread attention for exploring race, history and community in her debut novel, “Jackal.” Her upcoming book, “One of You,” is expected to be released in April.

Via Author’s Facebook

Marie-Célie Agnant

The Haitian Canadian writer and poet continues to publish poetry and fiction on migration and memory. She is featured along with Evelyne Trouillot and Magguy De Coster in the recent poetry collections and literary anthology, “Blue Flare: Three Haitian Poets,” published in 2024.

Via Author’s Facebook

Gina Boyer

Gina Boyer is a Haitian author who recently released Au-delà des brumes et des mystères, a book that explores Haitian beliefs and imagination through eleven chapters described as “mysteries,” blending storytelling with explanations and reflections.

Via Author’s Website

Myriam Chancy

Haitian Canadian author Myriam Chancy has been dazzling readers for years, and she continues that streak with her 2024 release of Village Weavers. The literary world took notice, and bestowed an array of honors, including the 2025 OCM Bocas Award.

Photo by Steven Harewood

Edwidge Danticat

Since her debut novels hit shelves in the 1990s, Edwidge Danticat has continued to publish books and essays and literary works centered around Haitian diasporans. Her most recent publication is “Watch Out For Falling Iguanas.”

Read the interview →

Photo by Bill Farrington

Marlène L. Daut

A Yale University professor and historian, Marlène Daut published “The First and Last King of Haiti: The Rise and Fall of Henry Christophe” in 2025 to much acclaim. The meticulously-researched book examines the life of the revolutionary leader.

2024 Featured Releases

More stories

Via Author’s Facebook

Maggy De Coster

Poet and essayist Maggy De Coster has published numerous books of poetry and essays over the past two decades. Recently, she contributed to recent poetry collections “Blue Flare: Three Haitian Poets” published in 2024.

Via Author’s Facebook

Fabienne Josaphat

Haitian American novelist Fabienne Josaphat released “Kingdom of No Tomorrow” (2024). The novel follows a Haitian immigrant woman who becomes involved in the Black Panther movement in Oakland, Calif. during the 1960s.

Via Haitian Ministry

Yanick Lahens

Award-winning Haitian writer Yanick Lahens continues to publish essays and fiction reflecting on Haitian society and history. Her latest book is the novel “Passagères de nuit” (Nighttime Passengers), published in August 2025.

Learn more →

Via Author’s Facebook

Evelyne Laurent-Perrault

Haitian Canadian writer Evelyne Laurent-Perrault recently published “La fille de la mer de sable” (2024). The novel explores family memory and migration between Haiti and Canada.

Via Bohio Ayiti

Kettly Mars

Novelist, poet and short story writer Kettly Mars continues to publish works that explore Haitian society, history and politics. In 2024, the Academy of American Poets published her poem, “Entre minuit et l’éternité.”

Via Author’s Website

Maika & Maritza Moulite

Sisters Maritza Moulite and Maika Moulite co-write young adult novels that explore Haitian American identity. Reviewers describe their latest release, “The Summer I Ate the Rich,” as a biting modern-day fable blending Haitian folklore.

2025 Featured Releases

More stories

Via Author’s Website

Nadine Pinede

Poet and author Nadine Pinede published “When the Mapou Sings,” a young-adult novel written in verse in 2024. Set in rural Haiti during the 1930s, the story follows a girl searching for the truth about her family and community.

Recent & Upcoming Additions

2024

2024

2024

2025

Via Author’s X

Emmelie Prophète

Writer and former Haitian culture minister Emmelie Prophète often focuses on social realities in Haiti and the voices of young women. In 2024, she published “Cécé,” which follows a young woman navigating life in a violent neighborhood in Port-au-Prince.

Via Le Nouvelliste

Évelyne Trouillot

Évelyne Trouillot, a respected Haitian novelist and poet, continues publishing poetry and essays in recent literary collections. Her writing reflects on language, social life and cultural memory in Haiti.

Via Author’s Website

Ibi Zoboi

Ibi Zoboi’s books for young adults often explore Haitian identity in the United States, focusing on immigration, family history and cultural pride. Her latest work, S)Kin, is a contemporary fantasy based on Caribbean folklore.

Think we missed someone? Leave a comment or email submissions@haitiantimes.com with their information.

The post Haitian authors telling our stories to know this Women’s History Month appeared first on The Haitian Times.

Leave a Reply

Your email address will not be published. Required fields are marked *