.cv-0111b045-grid {
    display: grid;
    gap: 0; /* Cards touch each other in the reference */
    width: 100%;
}

.cv-0111b045-card {
    position: relative;
    padding: 40px 30px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.cv-0111b045-grid .cv-0111b045-card:last-child {
    border-right: none;
}

/* Animated Bottom Border Accent */
.cv-0111b045-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #ffdd00;
    transition: width 0.4s ease;
    z-index: 2;
}

.cv-0111b045-card:hover::before {
    width: 100%;
}

/* Background Letter */
.cv-0111b045-letter {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 200px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 221, 0, 0.1);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    transition: color 0.4s ease, transform 0.4s ease;
    font-family: sans-serif;
}

.cv-0111b045-card:hover .cv-0111b045-letter {
    transform: scale(1.05) translate(-10px, 10px);
}

/* Content Container */
.cv-0111b045-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Icon Box */
.cv-0111b045-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ffdd00;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.cv-0111b045-icon-box svg {
    fill: #1a1a1a;
}
.cv-0111b045-icon-box i {
    color: #1a1a1a;
}

.cv-0111b045-card:hover .cv-0111b045-icon-box {
    transform: translateY(-5px);
}

/* Title */
.cv-0111b045-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.cv-0111b045-card:hover .cv-0111b045-title {
    transform: translateY(-3px);
}

/* Description */
.cv-0111b045-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .cv-0111b045-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .cv-0111b045-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 767px) {
    .cv-0111b045-grid {
        grid-template-columns: 1fr !important;
    }
    .cv-0111b045-card {
        border-right: none;
    }
}
