.ac-grid-container-e3c86805 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.ac-card-wrapper-e3c86805 {
    position: relative;
    display: flex;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    align-items: stretch;
}

.ac-card-wrapper-e3c86805:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.ac-card-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* Horizontal Layout */
.ac-layout-horizontal {
    flex-direction: row;
}

.ac-layout-horizontal .ac-image-wrap {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.ac-layout-horizontal .ac-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Vertical Layout */
.ac-layout-vertical {
    flex-direction: column;
}

.ac-layout-vertical .ac-image-wrap {
    width: 100%;
    height: 200px;
}

.ac-layout-vertical .ac-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ac-content-wrap {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.ac-layout-vertical .ac-content-wrap {
    flex-direction: row;
    align-items: center;
}

.ac-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.ac-small-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    width: 40px;
    height: 40px;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    color: #b8860b;
}

.ac-small-icon i,
.ac-small-icon svg {
    display: block;
}

.ac-title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
}

.ac-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b8860b;
    margin-left: 15px;
    transition: transform 0.3s ease;
    width: 24px; /* Ensure space for the arrow */
    height: 24px;
}

.ac-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ac-card-wrapper-e3c86805:hover .ac-arrow {
    transform: translateX(4px);
}
