/* Match Form Submit button to the 'Home' button style */
.wp-block-jetpack-contact-form .wp-block-button__link {
    background-color: transparent !important;
    color: #222222 !important;
    border: 1.5px solid #222222 !important; /* Slightly thicker to match your image */
    border-radius: 4px !important;
    font-family: Georgia, serif !important;
    padding: 10px 22px !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    cursor: pointer;
}

/* Add a subtle hover effect */
.wp-block-jetpack-contact-form .wp-block-button__link:hover {
    background-color: #faf9f6 !important;
    opacity: 0.8;
}


/* 1. Make the container relative so we can stretch the link over it */
.wp-block-latest-comments__comment {
    position: relative;
    padding: 10px;
    transition: background 0.2s ease;
}

/* 2. Stretch the Page Link to cover the entire comment area */
.wp-block-latest-comments__comment-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

/* 3. Style the text to look like an inviting excerpt */
.wp-block-latest-comments__comment-meta {
    font-weight: 700;
    color: #1a1a1a;
}

.wp-block-latest-comments__comment-meta a {
    pointer-events: none; /* Disables the link on the Name specifically */
    text-decoration: none;
    color: inherit;
}

.wp-block-latest-comments__comment-excerpt p {
    font-family: Georgia, serif;
    font-style: italic;
    color: #9c1628 !important; /* Your brand red to signal it's a link */
}

/* 4. Hover effect so users know it's a giant button */
.wp-block-latest-comments__comment:hover {
    background-color: #f9f9f9;
    cursor: pointer;
}







/* ==================== FINAL CLEAN COMMENT LINK ==================== */

/* 1. Make the whole box a 'hot zone' */
.wp-block-latest-comments__comment {
    position: relative !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #eee;
}

/* 2. Stretch the link to cover EVERYTHING */
/* This ensures ANY click in this area goes to your /comments page */
.wp-block-latest-comments__comment-link::after {
    content: "" !important;
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10 !important;
}

/* 3. Style the Text (Black Name, Red Excerpt) */
.wp-block-latest-comments__comment-meta, 
.wp-block-latest-comments__comment-meta a {
    font-weight: 700 !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    pointer-events: none !important; /* Disables the small link so the big one works */
}

.wp-block-latest-comments__comment-excerpt p {
    font-family: Georgia, serif !important;
    font-style: italic !important;
    color: #9c1628 !important; /* Your brand red */
    margin-top: 5px !important;
}

/* 4. Visual cue for the reader */
.wp-block-latest-comments__comment:hover {
    background-color: #fcfaf7 !important;
    cursor: pointer !important;
}
