.ihc2-grid-container-698 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

@media (max-width: 767px) {
    .ihc2-grid-container-698 {
        grid-template-columns: 1fr;
    }
}

.ihc2-card-wrapper-698 {
    width: 100%;
}

.ihc2-card-698 {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Base states */
.ihc2-overlay-698 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
    transition: opacity 0.8s ease;
}

/* Ensure flex column to stack icon ABOVE title */
.ihc2-normal-content-698 {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    transition: opacity 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ihc2-icon-698 {
    margin-bottom: 20px; /* Space between icon and title */
}

/* Correctly target the actual icon element to increase its physical size */
.ihc2-normal-icon-698 {
    color: #ffffff;
}

.ihc2-normal-icon-698 i {
    font-size: 150px;
    line-height: 1;
}

.ihc2-normal-icon-698 svg {
    fill: #ffffff;
    width: 150px;
    height: 150px;
    display: block;
}

.ihc2-title-698 {
    margin: 0;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

/* Hover Panel (White box with drop shadow sliding up) */
.ihc2-hover-panel-698 {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 16px; 
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transition: bottom 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
}

.ihc2-hover-content-698 {
    text-align: center;
    width: 100%;
}

.ihc2-hover-title-698 {
    margin: 0 0 10px 0;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.ihc2-desc-698 {
    margin: 0;
    color: #555555;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Hover States Actions */
.ihc2-card-698:hover .ihc2-hover-panel-698 {
    bottom: 0;
}

.ihc2-card-698:hover .ihc2-normal-content-698 {
    opacity: 0;
}

.ihc2-card-698:hover .ihc2-overlay-698 {
    opacity: 0.2;
}