/* ============================
   YEAR SLIDER
============================ */
.ptm-years {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 25px;
    scroll-behavior: smooth;
}

.ptm-years::-webkit-scrollbar {
    height: 6px;
}

.ptm-years::-webkit-scrollbar-thumb {
    background: #ff7a00;
    border-radius: 10px;
}

.ptm-year-btn {
    flex: 0 0 auto;
    padding: 10px 18px;
    background: #ff7a00;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

.ptm-year-btn.active {
    background: #2bb673;
    transform: scale(1.05);
}

/* ============================
   YEAR PANEL
============================ */
.ptm-year-panel {
    display: none;
}

.ptm-year-panel.active {
    display: block;
}

/* ============================
   CARD
============================ */
.ptm-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

/* ============================
   TITLE
============================ */
.ptm-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.ptm-toggle {
    font-size: 22px;
    color: #ff7a00;
}

/* ============================
   BODY
============================ */
.ptm-body {
    display: none;
    margin-top: 15px;
}

.ptm-body.open {
    display: block;
}

/* ============================
   TEXT
============================ */
.ptm-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 6px;
}

.ptm-short {
    font-style: italic;
    margin-bottom: 8px;
}

.ptm-text {
    line-height: 1.6;
}

/* ============================
   ACTION BUTTONS (SIDE BY SIDE)
============================ */
.ptm-doc,
.ptm-video {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
}

.ptm-doc a,
.ptm-video a {
    padding: 10px 18px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease;
}

.ptm-doc a {
    background: #2bb673;
}

.ptm-video a {
    background: #ff7a00;
}

.ptm-video a:hover {
	color: #ff7a00;
	background: white;
	border: 1px solid #ff7a00;
}

.ptm-doc a:hover {
	color: #2bb673 !important;
	background: white;
	border: 1px solid #2bb673;
}

.ptm-doc a:hover,
.ptm-video a:hover {
    transform: translateY(-2px);
}

/* ============================
   IMAGE
============================ */
.ptm-doc img {
    max-width: 100%;
    border-radius: 6px;
    margin-top: 10px;
}

/*=========================
TOP TOOLBAR
=========================*/

.ptm-toolbar{

display:flex;

align-items:center;

justify-content:space-between;

gap:15px;

margin-bottom:20px;

flex-wrap:wrap;

}


/*=========================
SEARCH
=========================*/

.ptm-search{

flex:1;

}

.ptm-search input{

width:100%;

height:48px;

border:1px solid #ddd;

border-radius:30px;

padding:0 20px;

font-size:15px;

outline:none;

transition:.3s;

}

.ptm-search input:focus{

border-color:#2bb673;

box-shadow:0 0 8px rgba(43,182,115,.2);

}


/*=========================
YEAR BAR
=========================*/

.ptm-years{

display:flex;

overflow-x:auto;

scroll-behavior:smooth;

gap:12px;

padding-bottom:10px;

}

.ptm-years::-webkit-scrollbar{

display:none;

}


/*=========================
BUTTON
=========================*/

.ptm-year-btn{

min-width:90px;

height:48px;

border-radius:40px;

font-weight:600;

transition:.3s;

box-shadow:0 3px 10px rgba(0,0,0,.08);

}

.ptm-year-btn:hover{

transform:translateY(-3px);

}

.ptm-year-btn.active{

background:#2bb673;

color:#fff;

}


/*=========================
SCROLL BUTTON
=========================*/

.ptm-scroll-btn{

width:42px;

height:42px;

display:flex;

align-items:center;

justify-content:center;

background:#ff7a00;

color:#fff;

cursor:pointer;

border-radius:50%;

font-size:18px;

transition:.3s;

}

.ptm-scroll-btn:hover{

background:#2bb673;

}


/*=========================
CARD
=========================*/

.ptm-card{

transition:.3s;

}

.ptm-card:hover{

transform:translateY(-3px);

box-shadow:0 8px 20px rgba(0,0,0,.08);

}

/*=========================
SEARCH BAR
==========================*/

.ptm-search-wrap{

    margin:20px 0;

}

.ptm-search{

    width:100%;

    max-width:450px;

    height:48px;

    padding:0 18px;

    border:2px solid #2bb673;

    border-radius:30px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.ptm-search:focus{

    border-color:#ff7a00;

    box-shadow:0 0 10px rgba(255,122,0,.2);

}


/* Mobile */

@media(max-width:768px){

.ptm-search{

width:100%;
max-width:100%;

}

}