/* Container for the DJ list */
.tj-dj-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background-color: #f5f5f5;
}

/* Individual DJ item */
.tj-dj-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tj-dj-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* DJ image */
.tj-dj-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* DJ name */
.tj-dj-item h2 {
    font-size: 1.25em;
    margin: 15px 0;
    color: #333333;
}

/* DJ bio section for single post */
.tj-dj-bio {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tj-dj-bio h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333333;
}

.tj-dj-bio p {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}
