.result-grid-container {
    padding: 30px 0;
}

.result-card {
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    background-color: #fdfaf2;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.rc-image-wrap {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-image {
    max-width: 100%;
    max-height: 200px;
    object-fit: cover;
}

.rc-separator-container {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.rc-separator {
    border-top: 2px dashed #ffc107;
    width: 100%;
    margin: 0;
}

.rc-tag {
    position: absolute;
    right: 20px;
    top: -24px;
    background-color: #0d2861;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.rc-body {
    padding: 35px 25px 25px;
    flex-grow: 1;
    text-align: left;
}

.rc-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rc-location {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.rc-footer {
    background-color: #0d2861;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.rc-footer:hover {
    background-color: #091a45;
    color: #ffffff;
}

.rc-footer-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.rc-icon {
    background-color: #ffc107;
    color: #000000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.rc-footer:hover .rc-icon {
    transform: translateX(5px);
}
