
.tekiner-acik-pozisyon-single-page {
    padding-bottom: 3rem;
}

.tekiner-acik-pozisyon-single-page .container {
    padding: 1.5rem 3cm 0;
}

@media (max-width: 992px) {
    .tekiner-acik-pozisyon-single-page .container {
        padding: 1.5rem 2cm 0;
    }
}

@media (max-width: 767px) {
    .tekiner-acik-pozisyon-single-page .container {
        padding: 1.5rem 1cm 0;
    }
}

@media (max-width: 480px) {
    .tekiner-acik-pozisyon-single-page .container {
        padding: 1.25rem 1rem 0;
    }
}

.tekiner-acik-pozisyon-single-page .breadcrumb {
    margin-bottom: 0;
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.tekiner-acik-pozisyon-single-page .breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
}

.tekiner-acik-pozisyon-single-page .breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-secondary, #666);
    font-size: 15px;
    font-weight: 400;
}

.tekiner-acik-pozisyon-single-page .breadcrumb-item a {
    color: var(--text-secondary, #666);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
    font-weight: 400;
}

.tekiner-acik-pozisyon-single-page .breadcrumb-item a:hover {
    color: var(--primary-color, #08428e);
}

.tekiner-acik-pozisyon-single-page .breadcrumb-item.active {
    color: #002741;
    font-weight: 700;
    font-size: 15px;
}

.tekiner-acik-pozisyon-single-page .breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    margin-right: 2px;
    color: var(--text-muted, #999);
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-toolbar {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
    margin-bottom: 0;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-toolbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-toolbar .toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    flex-wrap: wrap;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-toolbar .toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-search-box {
    position: relative;
    flex: 1;
    min-width: 180px;
    max-width: 320px;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-search-box .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted, #999);
    pointer-events: none;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-search-box .search-input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 0;
    font-size: 14px;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
    background: #fff;
    color: var(--text-primary, #484848);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-search-box .search-input::placeholder {
    color: #666;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-search-box .search-input:focus {
    outline: none;
    border-color: var(--primary-color, #08428e);
    box-shadow: 0 0 0 2px rgba(8, 66, 142, 0.1);
}

.tekiner-acik-pozisyon-single-page .toolbar-left {
    overflow: visible;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-toolbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 15px !important;
    font-weight: 400;
    color: #fff;
    background: var(--primary-color, #08428e);
    border: none;
    box-shadow: 0 2px 6px rgba(8, 66, 142, 0.35);
    border-radius: 0;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-toolbar-cta::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color, #08428e);
    border-radius: 0;
    opacity: 0.5;
    z-index: -1;
    animation: acik-pozisyon-single-cta-pulse 2s ease-out infinite;
}

@keyframes acik-pozisyon-single-cta-pulse {
    0%   { transform: scale(1); opacity: 0.6; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-toolbar-cta:hover {
    background: var(--primary-dark, #073670);
    color: #fff;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-back.product-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color, #08428e);
    background: transparent;
    border: 2px solid var(--primary-color, #08428e);
    border-radius: 0;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: visible;
    animation: acik-pozisyon-single-pulse-border 2s ease-out infinite;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-back.product-count svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--primary-color, #08428e);
}

@keyframes acik-pozisyon-single-pulse-border {
    0%   { box-shadow: 0 0 0 0 rgba(8, 66, 142, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(8, 66, 142, 0); }
    100% { box-shadow: 0 0 0 0 rgba(8, 66, 142, 0); }
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-back.product-count:hover {
    background: var(--primary-color, #08428e);
    color: #fff;
    transform: scale(1.05);
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-back.product-count:hover svg {
    color: #fff;
}

.ap-popup {
    --ap-popup-border: #e2e8f0;
    --ap-popup-muted: #64748b;
    --ap-popup-text: #0f172a;
    --ap-popup-primary: #08428e;
    --ap-popup-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);

    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.ap-popup.ap-popup-open {
    opacity: 1;
    visibility: visible;
}

.ap-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.ap-popup-box {
    position: relative;
    background: #fff;
    border-radius: 0;
    box-shadow: var(--ap-popup-shadow);
    max-width: 1020px;
    width: 96%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.ap-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--ap-popup-border);
}

.ap-popup-title {
    margin: 0;
    font-size: 23px !important;
    font-weight: 600;
    color: var(--ap-popup-primary);
}

.ap-popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--ap-popup-muted);
    padding: 0.25rem;
}

.ap-popup-close:hover {
    color: var(--ap-popup-primary);
}

.ap-popup-body {
    padding: 0.5rem 1rem 1rem;
    overflow-y: auto;
    flex: 1;
}

.ap-popup-table-wrap {
    overflow-x: auto;
}

.ap-popup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    table-layout: fixed;
}

.ap-popup-table thead th {
    text-align: left;
    padding: 0.4rem 0.5rem;
    font-weight: 600;
    font-size: 15px;
    color: var(--ap-popup-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--ap-popup-border);
    background: #fff;
}

.ap-popup-th-ilan { width: 45%; }
.ap-popup-th-departman { width: 28%; }
.ap-popup-th-lokasyon { width: 27%; }

.ap-popup-list tr {
    border-bottom: 1px solid var(--ap-popup-border);
    cursor: pointer;
}

.ap-popup-list tr:last-child {
    border-bottom: none;
}

.ap-popup-list tr:hover {
    background: rgba(15, 43, 70, 0.04);
}

.ap-popup-list td {
    padding: 0.35rem 0.5rem;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--ap-popup-text);
    font-size: 16px;
}

.ap-popup-list td:first-child {
    font-weight: 500;
    color: var(--ap-popup-primary);
}

.ap-popup-empty {
    padding: 1rem;
    text-align: center;
    color: var(--ap-popup-muted);
    font-size: 0.85rem;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single {
    margin-top: 1.75rem;
    text-align: left;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-badge-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    position: relative;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    border-radius: 8px;
    background: #22c55e;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.35);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-dot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 26px;
    margin-left: -13px;
    margin-top: -13px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    opacity: 0.5;
    z-index: -1;
    animation: acik-pozisyon-single-badge-pulse 2s ease-out infinite;
}

@keyframes acik-pozisyon-single-badge-pulse {
    0%   { transform: scale(0.8); opacity: 0.6; }
    70%  { transform: scale(1.8); opacity: 0; }
    100% { transform: scale(1.8); opacity: 0; }
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-sure {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1 1 auto;
    min-width: 0;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color, #08428e);
    line-height: 1.3;
    text-align: left;
    min-width: 0;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 1.25rem;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-meta-item {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #555;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-meta-sep {
    font-size: 16px;
    color: #555;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content {
    font-size: 15px !important;
    line-height: 1.65;
    color: var(--text-primary, #333);
    text-align: left;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content h2,
.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content h3 {
    margin: 1.75rem 0 0.75rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #002741;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content h2:first-child,
.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content h3:first-child {
    margin-top: 0;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content p,
.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content li {
    font-size: 15px !important;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content p {
    margin: 0 0 1rem;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content p:last-child {
    margin-bottom: 0;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content ul,
.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content li {
    margin-bottom: 0.35rem;
}

@media (max-width: 768px) {
    .tekiner-acik-pozisyon-single-page {
        padding-bottom: 2.5rem;
    }
    .tekiner-acik-pozisyon-single-page .breadcrumb {
        padding: 12px 0;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-toolbar .acik-pozisyonlar-search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-toolbar .toolbar-left {
        flex-direction: column;
        align-items: stretch;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-toolbar .toolbar-right {
        width: 100%;
        justify-content: flex-end;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-search-box {
        max-width: none;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-toolbar-cta {
        width: 100%;
        font-size: 15px !important;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-back.product-count {
        font-size: 12px;
    }
    .tekiner-acik-pozisyon-single-page .breadcrumb-list {
        font-size: 13px;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single {
        margin-top: 1.25rem;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-title {
        font-size: 1.4rem;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content h2,
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-content h3 {
        margin-top: 1.5rem;
        font-size: 1.1rem;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-meta {
        gap: 0.75rem 1rem;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-meta-item {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-title {
        font-size: 1.25rem;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-dot {
        width: 14px;
        height: 14px;
        min-width: 14px;
        min-height: 14px;
        border-radius: 7px;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-dot::after {
        width: 22px;
        height: 22px;
        margin-left: -11px;
        margin-top: -11px;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-sure {
        font-size: 0.85rem;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-toolbar .toolbar-right {
        justify-content: stretch;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-back.product-count {
        justify-content: center;
        padding: 6px 10px;
        font-size: 11px;
    }
    .tekiner-acik-pozisyon-single-page .acik-pozisyon-single-back.product-count svg {
        width: 12px;
        height: 12px;
    }
}
