/* CLASS TITLE */
.dz-animal-class-title {
    position: relative;
    display: inline-block;
    padding: 12px 26px 12px 12px;
    font-family: "Lora", serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    color: #fff8e3;
    z-index: 1;
    margin: 0 0 24px;
    line-height: 1;
}

.dz-animal-class-title::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -18px;
    right: -18px;

    background-image: url('/wp-content/plugins/de-zonnegloed-integrations/assets/images/title-brush-ocher.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;

    z-index: -1;
}

/* LINE ON THE LEFT */
.dz-animal-class-container {
    position: relative;
    padding-left: 34px;
}

.dz-animal-class-container::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #b5903d;
    border-radius: 3px;
}

/* WHOLE ORDER CONTAINER */
.dz-animal-order {
    margin-bottom: 28px;
}

/* ORDER TITLE */
.dz-animal-order-title {
    margin-bottom: 14px;
}

/* SPECIES TITLE AND BUTTON*/
.dz-animal-order-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: "Lora", serif;
    font-size: 26px;
    font-weight: 700;
    color: #30411f;
    cursor: pointer;
}

.dz-animal-order-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: block;
    margin-top: 5px;

    background-image: url('/wp-content/plugins/de-zonnegloed-integrations/assets/icons/chevron-up.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.dz-animal-order:not(.is-open) .dz-animal-order-icon {
    background-image: url('/wp-content/plugins/de-zonnegloed-integrations/assets/icons/chevron-down.svg');
}

/* ANIMAL GRID */
.dz-animal-order:not(.is-open) .dz-animal-grid {
    display: none;
}

.dz-animal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 60px;
}

/* ANIMAL PICTURES */
.dz-animal-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;

    -webkit-mask-image: url('/wp-content/plugins/de-zonnegloed-integrations/assets/images/animal-frame.svg');
    mask-image: url('/wp-content/plugins/de-zonnegloed-integrations/assets/images/animal-frame.svg');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

/* ANIMAL LABELS */
.dz-animal-card-label {
    position: relative;
    isolation: isolate;
    z-index: 2;

    left: -10px;
    width: calc(100% + 20px);

    min-height: 54px;
    margin-top: -18px;
    padding: 8px 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    font-family: "Lora", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.dz-animal-card-label::before {
    content: "";
    position: absolute;
    inset: 0;

    background: #49593a;

    -webkit-mask-image: url('/wp-content/plugins/de-zonnegloed-integrations/assets/images/label-background-green.svg');
    mask-image: url('/wp-content/plugins/de-zonnegloed-integrations/assets/images/label-background-green.svg');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;

    z-index: -1;
}

/* LEAVES */
.dz-animal-leaves-img {
    width: 500px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.dz-animal-leaves-container {
    margin-left: 34px;
}

