/* Hero */
.rc-hero {
    background: #f6faff;
    border: none;
    padding: 80px 0 60px;
}

.rc-breadcrumb {
    color: #1e63e6;
    font-size: 13px;
    margin-bottom: 16px;
}

.rc-title {
    color: #1e63e6;
    font-weight: 800;
    font-size: 48px;
    margin: 0 0 24px;
}

.rc-sub {
    color: #1e63e6;
    max-width: 500px;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Toolbar */
.rc-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
}

.rc-search {
    display: flex;
    border: none;
    background-color: #F2F8FF;
    border-radius: 0px;
    overflow: hidden;
    width: 320px;
    max-width: 100%;
}

.rc-search input {
    border: 0;
    outline: 0;
    padding: 12px 18px;
    flex: 1;
    background: transparent;
    color: #1e63e6;
    font-size: 14px;
}

.rc-search input::placeholder {
    color: #1e63e6;
    opacity: 0.8;
}

.rc-search button {
    width: 50px;
    border: 0;
    background: transparent;
    color: #1e63e6;
    font-size: 16px;
}

.rc-select-wrapper {
    position: relative;
    width: 160px;
}

.rc-select-wrapper .rc-select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1e63e6;
    pointer-events: none;
    font-size: 14px;
}

.rc-select {
    background: #F2F8FF;
    border: none;
    color: #1e63e6;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 0px;
    box-shadow: none;
    appearance: none;
    /* Hide default dropdown arrow */
    cursor: pointer;
}

.rc-select:focus {
    box-shadow: none;
    background: #F2F8FF;
    border: none;
}

.rc-select-wrapper:nth-child(2) {
    margin-left: auto;
    margin-right: 18px;
}

/* Cards */
.rc-card {
    background: #fff;
    border: none;
    /* No outer border in mockup */
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rc-card-top {
    background: #F2F8FF;
    /* Solid light blue */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: none;
}

.rc-badge {
    position: absolute;
    right: 8px;
    top: 8px;
    background: #fff;
    color: #1e63e6;
    font-size: 11px;
    border-radius: 0;
    border: 1px solid #1e63e6;
    padding: 5px 10px;
    font-weight: 600;
}

.rc-pin {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #1e63e6;
    font-size: 16px;
}

.rc-card-body {
    padding: 24px 0;
    /* Padding mostly on top/bottom, let text align left with no side padding like mockup */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rc-name {
    color: #1e63e6;
    /* bright blue */
    font-weight: 800;
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 12px;
}

.rc-desc {
    color: #5b87d1;
    /* muted blue */
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    /* Pushes the 'Read More' link to the bottom */
}

.rc-link {
    color: #1e63e6;
    /* bright blue */
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}

.rc-link:hover {
    opacity: 0.8;
    color: #1e63e6;
}

@media (max-width: 992px) {
    .rc-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .rc-search {
        width: 100%;
    }

    .rc-select-wrapper {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .rc-title {
        font-size: 32px;
    }

    .rc-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
}