/* Container for job cards */
.job-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Individual job card */
.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

#job-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 10px;
}

.job-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    transition: transform 0.2s ease;
	cursor: default !Important;
}

@media (max-width: 768px) {
    .job-card {
        flex: 1 1 calc(50% - 20px);
    }
}
@media (max-width: 480px) {
    .job-card {
        flex: 1 1 100%;
    }
}

.job-date {
	font-size:12px;
    margin-bottom: 10px;
}

.job-card-date i {
    margin-right: 5px;
}

.job-card-title {
    font-weight: bold;
    font-size: 16px;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.job-card-description {
    font-size: 12px;
    color: #fff;
    margin-bottom: 15px;
}
.job-card-footer{
	display: flex;
    justify-content: end;
}


.job-view-more {
        padding: 6px 12px;
        background: #0073aa;
        color: white !important;
        border: none;
        border-radius: 4px;
        text-decoration: none !important;
        font-size: 14px;
 }
.job-view-more:hover {
        background: #005177;
 }

    

/* Headings */
.job-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.primary-skills-title,
.secondary-skills-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ffcc00;
}

/* Paragraphs */
.job-ctc,
.job-hiring-type,
.job-work-model,
.job-notice-period,
.job-attachment {
    margin-bottom: 12px;
    color: #e0e0e0;
}

/* Links */
.job-attachment a {
    color: #4fc3f7;
    text-decoration: underline;
}

.job-attachment a:hover {
    color: #81d4fa;
}

/* Skills Lists */
.primary-skills-list,
.secondary-skills-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 0;
    margin-bottom: 20px;
}

.primary-skill,
.secondary-skill {
    color: #cfd8dc;
    margin-bottom: 6px;
}
.gradient-text{
	background: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
   -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	text-decoration:underline;
}
