/* ============================================
   Resume Templates Page Styles
   ============================================ */

/* Hero Section */
.templates-hero {
    background:
        radial-gradient(circle at 2px 2px, #e5e7eb 1px, transparent 1px);
    background-size: 24px 24px;
    background-color: #fafbfc;
    padding: 6rem 1.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.templates-hero::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(251, 191, 36, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.templates-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.templates-hero-content {
    max-width: 560px;
}

/* Breadcrumb */
.templates-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.templates-breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.templates-breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb-sep {
    color: var(--gray-400);
}

/* Hero Title */
.templates-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-highlight {
    background: #10b981;
    color: white;
    padding: 0.1em 0.3em;
    border-radius: 4px;
    display: inline-block;
}

.templates-hero-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

/* Hero CTAs */
.templates-hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: #10b981;
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.btn-hero-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: white;
    color: var(--gray-700);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: 1.5px solid var(--gray-300);
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

/* Trust Badge */
.templates-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.trust-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-star {
    width: 20px;
    height: 20px;
    background: #00b67a;
    padding: 3px;
    border-radius: 2px;
}

.trust-reviews {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Hero Visual */
.templates-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-resume-preview {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.hero-resume-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.resume-preview-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #10b981;
}

.preview-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
}

.preview-name-block {
    flex: 1;
}

.preview-name-line {
    width: 80%;
    height: 10px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 6px;
}

.preview-title-line {
    width: 50%;
    height: 6px;
    background: var(--gray-100);
    border-radius: 4px;
}

.resume-preview-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.preview-section-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-section-title-line {
    width: 30%;
    height: 6px;
    background: #10b981;
    border-radius: 2px;
    opacity: 0.8;
}

.preview-text-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.preview-text-line {
    width: 100%;
    height: 5px;
    background: var(--gray-100);
    border-radius: 2px;
}

.preview-text-line.short {
    width: 60%;
}

.preview-text-line.medium {
    width: 80%;
}

/* Floating Elements */
.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.floating-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-icon {
    font-size: 1rem;
}

.floating-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
}

.floating-name {
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    animation-delay: 0s;
}

.floating-name .floating-text {
    color: white;
}

.floating-section {
    top: 25%;
    left: -30px;
    animation-delay: 0.5s;
}

.floating-templates {
    bottom: 30%;
    left: -20px;
    animation-delay: 1s;
}

.floating-design {
    bottom: 10%;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Hero Glow */
.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(251, 191, 36, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    bottom: -20%;
    right: -10%;
    z-index: 1;
    pointer-events: none;
}

/* Filter Section */
.templates-filter-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tabs-row2 {
    margin-top: 0;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-tab svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.filter-tab.active svg {
    stroke: white;
}

.filter-badge-ats {
    background: var(--gray-100);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Template Card */
.template-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.template-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.template-preview-wrapper {
    position: relative;
    padding: 1.5rem 1.5rem 1rem;
    background: var(--gray-50);
}

.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.template-preview {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    aspect-ratio: 8.5 / 11;
    position: relative;
}

.preview-header {
    height: 16%;
    background: var(--primary);
}

.preview-content {
    padding: 8%;
}

.preview-name {
    width: 60%;
    height: 8px;
    background: var(--gray-300);
    border-radius: 2px;
    margin-bottom: 6px;
}

.preview-title {
    width: 40%;
    height: 5px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 12px;
}

.preview-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
    margin-bottom: 12px;
}

.preview-section {
    margin-bottom: 12px;
}

.preview-section-title {
    width: 35%;
    height: 5px;
    background: currentColor;
    border-radius: 2px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.preview-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-line {
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
}

.preview-line.short {
    width: 75%;
}

/* Color Options */
.template-color-options {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 1rem;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.color-dot:hover {
    transform: scale(1.15);
}

.color-dot.active {
    border-color: var(--gray-900);
    box-shadow: 0 0 0 2px var(--white);
}

.color-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.color-dot.active::after {
    border-color: var(--gray-400);
}

/* Template Info */
.template-info {
    padding: 1.25rem 1.5rem;
    flex: 1;
}

.template-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.template-description {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Template Use Button */
.template-use-btn {
    margin: 0 1.5rem 1.5rem;
    text-align: center;
    display: block;
}

/* CTA Section */
.templates-cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 4rem 1.5rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-content .btn-primary:hover {
    background: var(--gray-100);
}

/* Container */
.templates-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Templates Grid Section */
.templates-grid-section {
    padding: 3rem 0 4rem;
    background: var(--gray-50);
    min-height: 60vh;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .templates-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .templates-hero-content {
        max-width: 100%;
    }

    .templates-hero-cta {
        justify-content: center;
    }

    .templates-trust-badge {
        justify-content: center;
    }

    .templates-breadcrumb {
        justify-content: center;
    }

    .templates-hero-visual {
        order: -1;
    }

    .hero-resume-preview {
        max-width: 320px;
    }

    .floating-section,
    .floating-templates {
        left: 0;
    }

    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .templates-hero {
        padding: 5rem 1rem 2rem;
    }

    .templates-hero-title {
        font-size: 2.25rem;
    }

    .title-highlight {
        display: inline;
    }

    .templates-hero-subtitle {
        font-size: 0.9375rem;
    }

    .templates-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .templates-filter-wrapper {
        margin-top: 2rem;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tabs-row2 {
        display: none;
    }

    .hero-floating-card {
        display: none;
    }

    .templates-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .template-preview-wrapper {
        padding: 1rem 1rem 0.75rem;
    }

    .template-preview {
        max-width: 280px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.template-card {
    animation: fadeInUp 0.4s ease forwards;
}

.template-card:nth-child(1) {
    animation-delay: 0s;
}

.template-card:nth-child(2) {
    animation-delay: 0.05s;
}

.template-card:nth-child(3) {
    animation-delay: 0.1s;
}

.template-card:nth-child(4) {
    animation-delay: 0.15s;
}

.template-card:nth-child(5) {
    animation-delay: 0.2s;
}

.template-card:nth-child(6) {
    animation-delay: 0.25s;
}

.template-card:nth-child(7) {
    animation-delay: 0.3s;
}

.template-card:nth-child(8) {
    animation-delay: 0.35s;
}

.template-card:nth-child(9) {
    animation-delay: 0.4s;
}

/* ============================================
   Cover Letter Template Preview Styles
   Unique layouts for each template type
   ============================================ */

/* Shared line styles */
.tpl-line {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 4px;
}

.tpl-line.short {
    width: 65%;
}

.tpl-line.medium {
    width: 85%;
}

.tpl-line-gap {
    height: 8px;
}

.tpl-contact-line {
    height: 3px;
    width: 70%;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 3px;
}

.tpl-contact-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

/* Classic Template - Top header bar with name highlight */
.template-preview-classic {
    display: flex;
    flex-direction: column;
}

.tpl-classic-header {
    height: 8%;
}

.tpl-classic-content {
    padding: 8%;
    flex: 1;
}

.tpl-classic-name {
    width: 50%;
    height: 8px;
    border-radius: 2px;
    margin-bottom: 6px;
}

.tpl-classic-title {
    width: 35%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 4px;
}

.tpl-classic-date {
    width: 25%;
    height: 3px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 12px;
}

.tpl-classic-body {
    margin-bottom: 12px;
}

.tpl-classic-signature {
    width: 30%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-top: auto;
}

/* Modern Template - Left sidebar accent */
.template-preview-modern {
    display: flex;
}

.tpl-modern-sidebar {
    width: 6%;
    min-width: 6%;
}

.tpl-modern-content {
    flex: 1;
    padding: 8%;
}

.tpl-modern-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tpl-modern-name {
    width: 45%;
    height: 8px;
    background: var(--gray-300);
    border-radius: 2px;
}

.tpl-modern-contact {
    width: 30%;
}

.tpl-modern-date {
    width: 20%;
    height: 3px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 12px;
}

.tpl-modern-body {
    margin-bottom: 12px;
}

.tpl-modern-sig {
    width: 35%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 2px;
}

/* Professional Template - Initials circle header */
.template-preview-professional {
    padding: 8%;
    display: flex;
    flex-direction: column;
}

.tpl-prof-header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.tpl-prof-initials {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: white;
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tpl-prof-info {
    flex: 1;
}

.tpl-prof-name {
    width: 70%;
    height: 6px;
    background: var(--gray-300);
    border-radius: 2px;
    margin-bottom: 4px;
}

.tpl-prof-title {
    width: 50%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
}

.tpl-prof-divider {
    height: 2px;
    margin-bottom: 10px;
}

.tpl-prof-body {
    flex: 1;
}

/* Executive Template - Dark header bar */
.template-preview-executive {
    display: flex;
    flex-direction: column;
}

.tpl-exec-header {
    padding: 6% 8%;
}

.tpl-exec-name {
    width: 50%;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    margin-bottom: 4px;
}

.tpl-exec-contact {
    width: 60%;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.tpl-exec-body {
    padding: 8%;
    flex: 1;
}

.tpl-exec-recipient {
    margin-bottom: 10px;
}

.tpl-exec-content {
    margin-bottom: 12px;
}

.tpl-exec-sig {
    width: 30%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 2px;
}

/* Simple ATS Template - Ultra-clean minimal */
.template-preview-simple {
    background: white;
}

.tpl-simple-content {
    padding: 10%;
}

.tpl-simple-header {
    margin-bottom: 16px;
}

.tpl-simple-name {
    width: 55%;
    height: 8px;
    background: var(--gray-300);
    border-radius: 2px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid;
}

.tpl-simple-contact {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.tpl-simple-body {
    margin-top: 8px;
}

/* Minimal Template - Maximum whitespace elegant */
.template-preview-minimal {
    padding: 12%;
    display: flex;
    flex-direction: column;
}

.tpl-minimal-name {
    width: 40%;
    height: 10px;
    background: currentColor;
    opacity: 0.3;
    border-radius: 2px;
    margin-bottom: 6px;
}

.tpl-minimal-meta {
    width: 50%;
    height: 3px;
    background: var(--gray-200);
    border-radius: 2px;
}

.tpl-minimal-spacer {
    height: 16px;
}

.tpl-minimal-body {
    margin-bottom: 8px;
}

.tpl-minimal-sig {
    width: 30%;
    height: 6px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid;
}

/* Creative Bold Template - Gradient header */
.template-preview-creative {
    display: flex;
    flex-direction: column;
}

.tpl-creative-header {
    height: 25%;
    position: relative;
    padding: 6%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tpl-creative-shape {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.tpl-creative-name {
    width: 60%;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
}

.tpl-creative-body {
    padding: 8%;
    flex: 1;
}

.tpl-creative-date {
    width: 35%;
    height: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Tech Modern Template - Two column layout */
.template-preview-tech {
    display: flex;
}

.tpl-tech-sidebar {
    width: 30%;
    background: var(--gray-100);
    padding: 8%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tpl-tech-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    background: var(--gray-200);
    border: 2px solid;
}

.tpl-tech-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tpl-tech-label {
    width: 60%;
    height: 3px;
    border-radius: 2px;
    margin-top: 4px;
}

.tpl-tech-main {
    flex: 1;
    padding: 8%;
}

.tpl-tech-name {
    width: 70%;
    height: 8px;
    background: var(--gray-300);
    border-radius: 2px;
    margin-bottom: 4px;
}

.tpl-tech-title {
    width: 50%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 12px;
}

.tpl-tech-body {
    margin-top: 8px;
}

/* Corporate Premium Template - Elegant lines */
.template-preview-corporate {
    padding: 8%;
    display: flex;
    flex-direction: column;
}

.tpl-corp-header {
    margin-bottom: 12px;
}

.tpl-corp-name {
    width: 55%;
    height: 8px;
    background: var(--gray-300);
    border-radius: 2px;
    margin-bottom: 6px;
}

.tpl-corp-line {
    height: 2px;
    margin-bottom: 6px;
}

.tpl-corp-contact {
    display: flex;
    gap: 8px;
}

.tpl-corp-contact .tpl-contact-line {
    width: 25%;
}

.tpl-corp-body {
    flex: 1;
}

.tpl-corp-date {
    width: 20%;
    height: 3px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 10px;
}

.tpl-corp-sig {
    width: 35%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-top: auto;
}

/* Default Template - Accent bar header */
.template-preview-default {
    display: flex;
    flex-direction: column;
}

.tpl-default-header {
    display: flex;
    padding: 6% 8%;
    gap: 8px;
    align-items: flex-start;
}

.tpl-default-accent {
    width: 4px;
    height: 100%;
    min-height: 24px;
    border-radius: 2px;
}

.tpl-default-info {
    flex: 1;
}

.tpl-default-name {
    width: 60%;
    height: 7px;
    background: var(--gray-300);
    border-radius: 2px;
    margin-bottom: 4px;
}

.tpl-default-title {
    width: 45%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
}

.tpl-default-body {
    padding: 0 8% 8%;
    flex: 1;
}

.tpl-default-sig {
    width: 30%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-left: 8%;
    margin-bottom: 8%;
    padding-left: 8px;
    border-left: 3px solid;
}