@font-face {
    font-family: 'Acumin Variable Concept';
    src: url('AcuminVariableConcept.otf') format('opentype');
    font-weight: 1 1000;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Acumin Variable Concept', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 12pt;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    background-color: #acada8;
    padding: 40px;
}

.container {
    max-width: 1200px;
}

.company-info {
    margin-bottom: 15px;
}

.company-name {
    font-size: 12pt;
    margin-bottom: 2px;
    color: #000;
}

.locations {
    font-size: 12pt;
    color: #000;
}

.locations div {
    margin-bottom: 2px;
}

.product-info {
    margin-bottom: 32px;
}

.product-name {
    font-size: 12pt;
    margin-bottom: 2px;
    color: #000;
    position: relative;
    display: inline-block;
    cursor: text;
}

.product-name-text {
    display: inline-block;
}

.product-image {
    position: fixed;
    bottom: 100px;
    right: 100px;
    max-width: 300px;
    width: auto;
    height: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
}

.product-name:hover .product-image {
    opacity: 1;
    visibility: visible;
}

.product-type {
    font-size: 12pt;
    margin-bottom: 2px;
    color: #000;
}

.product-status {
    font-size: 12pt;
    color: #000;
}

.specifications {
    margin-bottom: 32px;
    max-width: 550px;
}

.spec-item {
    display: grid;
    grid-template-columns: auto max-content;
    grid-template-areas: "label value";
    align-items: end;
    gap: 0 0.25rem;
    font-size: 12pt;
    color: #000;
    margin-bottom: 16px;
}

.spec-label {
    grid-area: label;
    position: relative;
    overflow: hidden;
}

.spec-label::after {
    position: absolute;
    padding-left: 0.25ch;
    content: " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
    text-align: right;
}

.spec-value {
    grid-area: value;
}

.contact-info {
    font-size: 12pt;
    color: #000;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: blue;
    text-decoration: underline;
}

.contact-info a:hover {
    text-decoration: none;
}