/* Code to change page width START */
.zoneInner, .zoneWrap, .zoneInner >
.WaPlaceHolder { max-width: 100%; }
/* Code to change page width END */

<!-- Recent Events Section -->
<section class="recent-events-section">
    <style>
        /* General styling for the section */
        .recent-events-section {
            padding: 40px 20px;
            background-color: #f9f9f9;
            font-family: Arial, sans-serif;
        }

        .recent-events-section .section-title {
            text-align: center;
            font-size: 2.5em;
            font-weight: bold;
            color: #000080;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        /* Container for the cards with a grid layout */
        .events-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            justify-items: center;
        }

        /* Card styling */
        .event-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 100%;
            max-width: 400px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .card-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        /* Article title styling */
        .card-content h3 {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        /* Paragraph text styling */
        .card-content p {
            font-size: 1em;
            color: #666;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        /* Link and button styling */
        .card-content a {
            color: #0000ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .card-content a:hover {
            text-decoration: underline;
        }

        /* Button styling */
        .card-buttons {
            margin-top: auto;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .card-buttons .button {
            display: inline-block;
            padding: 12px 20px;
            border: 2px solid #000080;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
            transition: background-color 0.3s ease, color 0.3s ease;
            background-color: #000080;
            color: white;
        }

        .card-buttons .button:hover {
            background-color: #00005d;
        }

        /* Media queries for responsiveness */
        @media (max-width: 900px) {
            .events-cards-container {
                grid-template-columns: 1fr;
            }
        }
    </style>

    <h2 class="section-title">Recent Events</h2>

    <div class="events-cards-container">
        <!-- Event Card Template -->
        <div class="event-card">
            <img class="card-image" src="https://placehold.co/400x250/E0E0E0/333333?text=Event+Image" alt="Placeholder Event Image">
            <div class="card-content">
                <h3>Event Title Goes Here</h3>
                <p>
                    A brief description of the event. Mention the date, location, and a summary of what happened.
                </p>
                <p>
                    <a href="#">Read more about the event.</a>
                </p>
                <div class="card-buttons">
                    <a href="#" class="button">View Photos</a>
                    <a href="#" class="button">Watch Video</a>
                </div>
            </div>
        </div>
        
        <!-- You can copy and paste the .event-card div to add more events. -->
    </div>
</section>

