.ec-home {
    width: 90%;
    margin: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 18px;
    font-weight: 600;
    color: var(--wc-primary-text);
    background-color: transparent;
}
.ec-home-left {
    width: 30%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1em;
}
.ec-home-left-top {
    width: 100%;
    padding: 1em;
    border: none;
    border-radius: 2px;
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--wc-primary) 0%, var(--wc-secondary) 100%);
}
.ec-home-left-top-label {
    width: 100%;
}
.ec-home-left-top-input {
    width: 100%;
    font-weight: 400;
    color: #2A3D37;
    background: #FAFAFA;
    border: none;
    border-radius: 0px;
    padding: 24px;
    box-shadow: none;
    box-sizing: border-box;
}
.ec-home-left-top-input:focus {
    box-shadow: 0px 0px 0px 3px rgba(208, 230, 165, 0.4);
    border: none;
    outline: none;
}
.ec-home-left-bottom {
    width: 100%;
    padding: 1em;
    border: 1px solid var(--wc-primary);
    border-radius: 2px;
    background-color: var(--wc-secondary);
}
.ec-home-results {
    width: 65%;
}
.ec-home-results-title {
    color: var(--wc-primary-text);
    margin-bottom: 1em;
}
.ec-home-results-list {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1em;
    margin-bottom: 2em;
}
.ec-home-results-list-elt {
    cursor: pointer;
    width: 100%;
    color: var(--wc-primary-text);
    background-color: #000;
    border: 2px solid var(--wc-primary-text);
    border-radius: 0;
    padding: 8px 24px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    font-size: 1.2rem;
}
.ec-home-results-list-elt:hover {
    /* background-color: #66C2A4; */
    border-color: var(--wc-primary);
    color: var(--wc-primary-text);
    text-decoration: none;
}
.ec-home-results-list-elt-txt {
    text-align: left;
}
.ec-home-results-list-elt-txt-name {
    text-decoration: underline;
}
.ec-home-results-list-elt-txt-info {
    font-size: 0.9rem;
}
.ec-home-results-list-elt-btn {
    text-align: center;
    color: var(--wc-primary-text);
    background-color: #000;
    border: 2px solid var(--wc-primary-text);
    border-radius: 2px;
    padding: 2px 4px;
    font-weight: bold;
    /* text-transform: uppercase; */
    letter-spacing: -0.6px;
}
.ec-home-results-list-elt:hover .ec-home-results-list-elt-btn {
    background-color: var(--wc-primary);
    border-color: var(--wc-primary);
}
.ec-home-results-more {
    display: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    color: var(--wc-primary-text);
    background-color: #000;
    border: 2px solid var(--wc-primary-text);
    border-radius: 30px;
    padding: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -0.6px;
}
.ec-home-results-more:hover, .ec-home-results-more:focus {
    background-color: var(--wc-primary);
    border-color: var(--wc-primary);
}

#ec-search-notfound {
    margin: 2em 0;
}

@media only screen and (max-width:1000px) {
    .ec-home {
        flex-flow: column nowrap;
        justify-content: flex-start;
    }
    .ec-home-left, .ec-home-results { width: 100%; }
    .ec-home-left-bottom, .ec-home-results-title { display: none; }
}
@media only screen and (max-width:600px) {
    .ec-home-results-list-elt { display: block; }
    .ec-home-results-list-elt-btn { display: none; }
}


