/*
Theme Name: Tech Leagues
Theme URI: https://techleagues.com/
Author: Raghavendra
Author URI: https://yourwebsite.com/
Description: A custom WordPress theme for showcasing technology services.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techleagues
Tags: custom, tech, services, professional, clean
*/

.post-technology {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 30px;
}

.post-technology li a {
    color: var(--title-color);
    font-family: var(--font-unbounded);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid var(--border-color3);
    border-radius: 50px;
    padding: 6px 16px;
}

.case-study-details .post-thumb {
    max-height: 450px;
    overflow: hidden;
    position: relative;
}

.case-study-details .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-card .case-study-img {
    max-height: 420px;
    position: relative;
    overflow: hidden;
}

.case-study-card .case-study-img img,
.single-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-thumb {
    height: 450px;
    position: relative;
    overflow: hidden;
}

/*---------------------*/
.sub-title h6 {
    font-weight: 400 !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px;
}

.sub-title h6 {
    position: relative;
    display: inline-block;
    padding-right: 90px;
    /* enough space for line + arrow */
    font-weight: normal;
    /* or bold if needed */
    margin: 0;
    /* optional, remove extra margin if any */
}

.sub-title h6::after {
    content: "";
    position: absolute;
    right: -5px;
    /* position line before arrow */
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    /* fixed length for the line */
    height: 2px;
    background: #f99bc6;
}

.sub-title h6::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #f99bc6;
    border-right: 2px solid #f99bc6;
    background: transparent;
}