/*
Theme Name: WMD Theme
*/

/*html :where(img){height:inherit;max-width:none;}*/

/*
Theme Name: WMD Theme
*/

/*html :where(img){height:inherit;max-width:none;}*/

.train-artouste-author-container {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 9px 9px 7px;
    background: #9400210f;
    border-radius: 20px;
    border: 1px solid #940021;
    position: relative;
    box-shadow: 0 0 20px rgb(148 0 33 / 19%);
    overflow: hidden;
    margin: 12px 0;
}

/* Hologram grid background */
.train-artouste-author-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #4bb43117 1px, transparent 1px), linear-gradient(#4bb43117 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.author-img-con img {
    width: 82px;
    height: 81px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #940021;
    box-shadow: 0 0 15px rgb(148 0 33);
    transition: 0.4s ease;
    position: relative;
    z-index: 9;
}
.author-img-con img:hover {
    transform: scale(1.1) rotate(2deg);
}
.date-container {
    color: #000000;
    margin-top: 7px;
}
.date-author-cl a {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}
.author-paragraph {
    margin-top: 5px;
    color: #000000;
    font-weight: 600;
    font-size: 18px;
}
.date-author-cl span {
    font-size: 18px;
    font-weight: 600;
}

/* WRAP WHOLE AUTHOR BOX IN CYBERPUNK STYLE */
.profile-tab-content {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #940021;
    position: relative;
    overflow: hidden;
    color: #000000;
    margin: 20px 0;
}

/* Hologram animated frame */
.profile-tab-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, #94002124, rgb(76 182 49 / 0%), #94002114);
    background-size: 250% 250%;
    animation: holoBorder 6s linear infinite;
    pointer-events: none;
}

@keyframes holoBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* HEADER AREA */
.profile-header-container {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    position: relative;
}

/* Avatar hologram glow */
.header-avatar-container img {
    width: 84px;
    height: 84px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgb(148 0 33);
    transition: 0.4s ease;
}

.header-avatar-container img:hover {
    transform: scale(1.08) rotate(3deg);
        box-shadow: 0 0 40px rgb(141 190 223);
}

/* NAME STYLE */
.header-profile-details h2 {
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/* SECTION TITLE */
.group-title {
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #940021;
}

/* FIELD TABLE */
.profile-fields-table {
    background: rgb(148 0 33 / 21%);
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid rgb(148 0 33);
    font-size: 18px;
}

/* EACH FIELD ROW */
.author-f-name,
.author-field {
    display: flex;
    padding: 4px 0;
    border-bottom: 1px dashed rgb(0 98 152);
}

.author-f-name:last-child {
    border-bottom: none;
}

/* Labels */
.label strong {
    color: #000000;
}

/* Data value */
.data {
    font-weight: 600;
    color: #000000;
    padding-left: 4px;
}

/* CYBERPUNK SCANNER LINE ANIMATION */
.profile-tab-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -100%;
    height: 51px;
    background: linear-gradient(to bottom, rgb(139 195 74 / 8%) 0%, rgb(76 175 80 / 6%) 50%, rgb(76 175 80 / 6%) 100%);
    animation: scanner 5s infinite;
}

@keyframes scanner {
    0% { top: -100%; }
    50% { top: 120%; }
    100% { top: -100%; }
}
