/* =========================================================== */
/* 00. Widget: Social Icons
/* =========================================================== */
.dplf-social-icons-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.dplf-social-icons-widget .dplf-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dplf-social-icons--simple .dplf-social-icon {
    background-color: transparent;
}

.dplf-social-icons--simple .dplf-social-icon:hover {
    background-color: transparent !important;
}

.dplf-social-icons--text .dplf-social-icon {
    width: auto !important;
    min-width: 40px;
    padding: 8px 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dplf-social-icons--text .dplf-social-text {
    white-space: nowrap;
}

/*Round Style*/
.dplf-social-icons--round .dplf-social-icon {
    border-radius: 5px;
}

/*Square Style*/
.dplf-social-icons--square .dplf-social-icon {
    border-radius: 0;
}

/*Circle Style*/
.dplf-social-icons--circle .dplf-social-icon {
    border-radius: 100%;
}

/* Branded Colors */
.dplf-social-icons-widget.dplf-social-icons--branded .dplf-social-icon {
    color: #ffffff !important;
}

.dplf-social-icons--branded .dplf-facebook { background-color: #1877f2 !important; }
.dplf-social-icons--branded .dplf-instagram { background-color: #e4405f !important; }
.dplf-social-icons--branded .dplf-twitter { background-color: #1da1f2 !important; }
.dplf-social-icons--branded .dplf-tiktok { background-color: #000000 !important; }
.dplf-social-icons--branded .dplf-youtube { background-color: #ff0000 !important; }
.dplf-social-icons--branded .dplf-linkedin { background-color: #0077b5 !important; }
.dplf-social-icons--branded .dplf-pinterest { background-color: #e60023 !important; }
.dplf-social-icons--branded .dplf-whatsapp { background-color: #25d366 !important; }
.dplf-social-icons--branded .dplf-telegram { background-color: #0088cc !important; }
.dplf-social-icons--branded .dplf-snapchat { background-color: #fffc00 !important; }
.dplf-social-icons--branded .dplf-discord { background-color: #5865f2 !important; }
.dplf-social-icons--branded .dplf-twitch { background-color: #9146ff !important; }
.dplf-social-icons--branded .dplf-reddit { background-color: #ff4500 !important; }
.dplf-social-icons--branded .dplf-vimeo { background-color: #1ab7ea !important; }
.dplf-social-icons--branded .dplf-dribbble { background-color: #ea4c89 !important; }
.dplf-social-icons--branded .dplf-behance { background-color: #1769ff !important; }
.dplf-social-icons--branded .dplf-github { background-color: #333333 !important; }
.dplf-social-icons--branded .dplf-medium { background-color: #000000 !important; }
.dplf-social-icons--branded .dplf-flickr { background-color: #ff0084 !important; }
.dplf-social-icons--branded .dplf-tumblr { background-color: #35465c !important; }
.dplf-social-icons--branded .dplf-weibo { background-color: #e6162d !important; }
.dplf-social-icons--branded .dplf-wechat { background-color: #07c160 !important; }
.dplf-social-icons--branded .dplf-qq { background-color: #12b7f5 !important; }

.dplf-social-icons-widget .dplf-social-icon:hover {
    transform: translateY(-2px);
}

/* Icons Separator */
.dplf-social-icons--separator .dplf-social-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: normal;
    opacity: 0.7;
    user-select: none;
    pointer-events: none;
    line-height: 1;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.dplf-social-icons--simple .dplf-social-separator {
    height: auto;
    align-self: center;
    margin-top: 0;
}

.dplf-social-icons--round .dplf-social-separator,
.dplf-social-icons--square .dplf-social-separator,
.dplf-social-icons--circle .dplf-social-separator {
    align-self: center;
}

.dplf-social-icons--text .dplf-social-separator {
    align-self: center;
    height: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .dplf-social-icons-widget {
        justify-content: flex-start;
    }
}

/* =========================================================== */
/* 00. Widget: Posts
/* =========================================================== */
.dplf-posts-widget {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dplf-post-widget-item {
    position: relative;
}

.dplf-posts-widget--cards .dplf-post-widget-item {
    display: flex;
    flex-direction: column;
}

.dplf-posts-widget--list .dplf-post-widget-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.dplf-posts-widget-thumb {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.dplf-posts-widget-thumb img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  transform: scale(1.001);
  transform-origin: center top;
  --qode-hover-scale: 1.03;
  transition: transform .5s cubic-bezier(.27,.71,.43,.98);
}

.dplf-posts-widget-thumb:hover img {
  transform: scale(1.03);
}

.dplf-posts-widget--list .dplf-posts-widget-thumb img {
    max-width: 110px;
}

.dplf-posts-widget-content {
    flex: 1;
}

.dplf-posts-widget-title {
    margin: 0 0 .5rem;
    font-size: 20px;
}

.dplf-posts-widget-title a {
    text-decoration: none;
}

.dplf-posts-widget-meta {
  margin-bottom: .6rem;
  font-size: 15px;
  text-transform: uppercase;
}

.dplf-posts-widget-category a {
    margin-bottom: 0;
}

.dplf-posts-widget-meta > * + *::before {
    content: "-";
    margin: 0 .25rem;
}

@media (max-width: 480px) {
    .dplf-posts-widget--list .dplf-post-widget-item {
        flex-direction: column;
    }
    .dplf-posts-widget--list .dplf-posts-widget-thumb img {
        max-width: 100%;
    }
}