/* McKinsey-Inspired Portfolio Styling - WORKING VERSION */
/* Adds rounded corners and clean shadows without breaking layout */

/* Individual Project Cards - Add rounded corners and shadow */
.posts article {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    background: #ffffff !important;
}

.posts article:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
}

/* Keep the original flexbox layout - DO NOT change to grid */
/* The HTML5 UP template uses flexbox and it works well */

/* Background styling */
#main {
    background: #f5f5f5 !important;
}

/* Button styling - cleaner look */
.posts article .button {
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

/* Featured post rounded corners */
.post.featured {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}
