.photos .photo__container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.photos .photo__item {
    position: relative;
}

.photos .photo__item:hover .foreground {
    opacity: 1;
}
.photos .foreground {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(221, 78, 57, 0.8);
    transition: all .2s;
    opacity: 0;
    border-radius: 7px;
}
.photos .photo-preview {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 25px;
}
.photos .photo-preview .photo-title {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.photos .photo-preview .photo-image {
    width: 100px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.photos .photo-preview .photo-date {
    position: absolute;
    bottom: 15px;
    color: #fff;
    font-size: 1.2rem;
}
.photos .photo-preview .photo-text {
    position: absolute;
    top: 15px;
    color: #fff;
    font-size: 1.5rem;
    width: 85%;
    line-height: 2rem;
    font-family: 'Circe Bold';
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    text-transform: uppercase;
}


.photos .owl-stage {
    display: flex;
    gap: 10px;
}

.photos .owl-item img {
    border-radius: 7px;
}

.photos .owl-2-style {
       padding: 0;
       max-width: unset;
   }

.photos .owl-carousel .owl-stage {
    display: flex;
}

.photos .owl-dots {
    text-align: center;
    position: relative;
    bottom: -30px;
    display: flex;
    flex-direction: row;
}

.photos .owl-dots .owl-dot {
    display: inline-block;
    width: 100%;
}

.photos .owl-dots .owl-dot span {
    display: inline-block;
    width: 100%;
    height: 3px;
    border-radius: 8px;
    background: #cccccc;
    -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    margin: 3px;
}
.photos .owl-dots .owl-dot.active span {
    background: #e84a36;
    color: transparent;
}

.photos .owl-dots .owl-dot:active, .owl-dots .owl-dot:focus {
    outline: none;
}